diff --git a/LANGUAGE.md b/LANGUAGE.md index a15ddcb..ea9fcc0 100644 --- a/LANGUAGE.md +++ b/LANGUAGE.md @@ -15,7 +15,8 @@ roadmap and milestone history. - file-local relative imports, import aliases, and qualified member access - transparent declaration aliases with `Name :: alias package.Member`; functions/type factories, named types, and globals retain their original declaration or storage identity -- native top-level declarations beginning with `_` are visible only within their source file; locals, fields, parameters, and C declarations are unaffected +- `hide` makes any named top-level declaration file-local; declarations are public by default, + leading underscores are ordinary identifier characters, and imports are always file-local - relative `.h` imports as synthetic C header package namespaces - root `main` validation with trap executable recovery for missing or unusable entry points diff --git a/README.md b/README.md index e39d3e0..e5a79bb 100644 --- a/README.md +++ b/README.md @@ -177,6 +177,15 @@ mem :: import "@std/mem" value :: math.sum(other_math.value, 1) ``` +Top-level declarations are public by default. Prefix a declaration with `hide` +to keep it local to its source file; leading underscores have no visibility +meaning. Imports are always file-local and cannot be hidden or re-exported: + +```bro +hide helper func() i32 { return 42 } +hide State :: struct { value i32 } +``` + Current prototype features: - Newline-terminated, multiline statements; `}` may terminate a block's final statement diff --git a/TODO.md b/TODO.md index 073eb15..10fc0ae 100644 --- a/TODO.md +++ b/TODO.md @@ -810,7 +810,7 @@ 33. explicit I/O provider (implemented) - `main` may take one canonical `@std/io Io`; parameterless entry points remain valid - - the compiler supplies a file-hidden macOS provider through an external no-argument C wrapper + - the compiler supplies a `hide system` macOS provider through an external no-argument C wrapper - readers and writers pair an explicit provider with `stdin`, `stdout`, or `stderr` - `read` and `write` validate provider counts; `write_all` handles partial writes and no progress - the system provider uses unbuffered libc `read`/`write`, retries interruption, and allocates nothing @@ -819,8 +819,8 @@ - bare qualified aliases use `Name :: alias package.Member` without adding a keyword - functions/type factories, named types, and globals transparently retain the target identity; mutable global aliases therefore share the original storage - - aliases resolve transitively at load time, consume their file-local import, preserve leading- - underscore visibility, and diagnose missing, hidden, unavailable, ambiguous, cyclic, or + - aliases resolve transitively at load time, consume their file-local import, preserve explicit + `hide` visibility, and diagnose missing, hidden, unavailable, ambiguous, cyclic, or conflicting targets - root `std` re-exports only `ArrayList(T)` for now; operations remain under `std/arraylist` @@ -828,7 +828,24 @@ - pointer sigils are highlighted as operators - type-factory calls in type positions and struct literals are highlighted as functions -36. is it currently possible to access a subpackage from a parent package? if not, maybe it should be +36. transitive package namespaces (spike completed; no language change) + - imports remain file-local implementation details, including explicitly named imports such as + `rl :: import "@vendor/raylib"`; naming an import only chooses its local qualifier + - packages expose declarations, not their imports, so imported namespaces never become public or + transitively reachable package members + - callers import each package they use directly; subdirectory layout does not create namespaces + - this keeps package lookup shallow and deterministic and avoids overloading import aliases with + declaration visibility + +36.5. explicit `hide` file-local declarations (implemented) + - `hide name ...` gives any named top-level function, global, native/C record, union, enum, + opaque/distinct type, or declaration/type alias the existing file-local semantics + - declarations remain public by default; a leading underscore is an ordinary identifier and `_` + remains the write-only sink + - hidden native and C declarations with the same name may coexist in separate files, while public + collisions are still diagnosed + - `hide` is reserved for named top-level declarations and is rejected on imports, locals, + parameters, fields, and anonymous declarations 37. add a debug package in `std` that provides debugging utilities - add `debug.print` function making use of `std/io` to print values to the console diff --git a/compiler/checker/checker.odin b/compiler/checker/checker.odin index 5a3f9a3..efb8a52 100644 --- a/compiler/checker/checker.odin +++ b/compiler/checker/checker.odin @@ -966,7 +966,7 @@ configure_io_main :: proc(checker: ^Checker) { return } - provider_name := symbol.intern(checker.symbols, "_system") + provider_name := symbol.intern(checker.symbols, "system") provider := ast.INVALID_FUNCTION for function, function_id in checker.ast_module.functions { if function.pkg != io_package || function.name != provider_name { @@ -986,7 +986,7 @@ configure_io_main :: proc(checker: ^Checker) { checker.template_diagnostics[main_template] = source.add( checker.diagnostics, main.span, - "@std/io does not provide the required '_system func() Io' startup implementation", + "@std/io does not provide the required 'hide system func() Io' startup implementation", ) return } diff --git a/compiler/lexer/lexer.odin b/compiler/lexer/lexer.odin index c2f67e2..4f81d0a 100644 --- a/compiler/lexer/lexer.odin +++ b/compiler/lexer/lexer.odin @@ -24,6 +24,7 @@ keyword_kind :: proc(text: string) -> token.Kind { case "distinct": return .Keyword_Distinct case "alias": return .Keyword_Alias case "import": return .Keyword_Import + case "hide": return .Keyword_Hide case "return": return .Keyword_Return case "try": return .Keyword_Try case "catch": return .Keyword_Catch diff --git a/compiler/parser/parser.odin b/compiler/parser/parser.odin index a98d79d..f2fe737 100644 --- a/compiler/parser/parser.odin +++ b/compiler/parser/parser.odin @@ -26,6 +26,7 @@ Parser :: struct { // struct literal. Nested `(`/`[`/call-arg contexts (delimiter_depth > 0) still // allow struct literals. no_struct_literal: bool, + hidden_names: [dynamic]symbol.Id, } MAX_EXPRESSION_NESTING :: 256 @@ -37,9 +38,31 @@ token_text :: proc(parser: ^Parser, tok: token.Token) -> string { return parser.source_file.text[int(tok.span.start):int(tok.span.end)] } -file_hidden_name :: proc(parser: ^Parser, tok: token.Token) -> bool { - name := token_text(parser, tok) - return len(name) > 1 && name[0] == '_' +file_hidden_name :: proc(parser: ^Parser, name: symbol.Id) -> bool { + for hidden in parser.hidden_names { + if hidden == name { + return true + } + } + return false +} + +collect_hidden_names :: proc(parser: ^Parser) { + depth := 0 + for item, index in parser.tokens.items { + #partial switch item.kind { + case .Left_Brace: + depth += 1 + case .Right_Brace: + depth = max(depth-1, 0) + case .Keyword_Hide: + if depth == 0 && index+1 < len(parser.tokens.items) && + parser.tokens.items[index+1].kind == .Identifier { + append(&parser.hidden_names, parser.tokens.items[index+1].symbol) + } + case: + } + } } span_from :: proc(first, last: source.Span) -> source.Span { @@ -396,7 +419,7 @@ parse_type_atom :: proc(parser: ^Parser) -> ast.Type_Syntax { u32(name.symbol), u32(qualifier), u32(parser.file), - !symbol.is_valid(qualifier) && file_hidden_name(parser, name), + !symbol.is_valid(qualifier) && file_hidden_name(parser, name.symbol), ) if current(parser).kind == .Left_Paren { call := parse_call(parser, qualifier, first, name, 0, false) @@ -2192,7 +2215,7 @@ parse_while :: proc(parser: ^Parser) -> ast.Stmt_Id { return id } -parse_function :: proc(parser: ^Parser, name: token.Token, c_abi: bool) { +parse_function :: proc(parser: ^Parser, name: token.Token, c_abi, file_hidden: bool) { advance(parser) if _, ok := allow(parser, .Left_Paren); !ok { source.add(parser.diagnostics, current(parser).span, "expected '(' after 'func'") @@ -2223,7 +2246,7 @@ parse_function :: proc(parser: ^Parser, name: token.Token, c_abi: bool) { pkg=parser.pkg, file=parser.file, c_abi=c_abi, - file_hidden=!c_abi && file_hidden_name(parser, name), + file_hidden=file_hidden, has_body=false, variadic=variadic, params=params, @@ -2242,7 +2265,7 @@ parse_function :: proc(parser: ^Parser, name: token.Token, c_abi: bool) { pkg=parser.pkg, file=parser.file, c_abi=c_abi, - file_hidden=!c_abi && file_hidden_name(parser, name), + file_hidden=file_hidden, has_body=true, variadic=variadic, params=params, @@ -2388,9 +2411,9 @@ parse_inline_union_type :: proc(parser: ^Parser) -> types.Type { return types.union_anonymous(&parser.module.type_store, fields[:], tag) } -parse_struct :: proc(parser: ^Parser, name: token.Token, c_layout: bool, is_union := false) { +parse_struct :: proc(parser: ^Parser, name: token.Token, c_layout, file_hidden: bool, is_union := false) { start := advance(parser) - id := types.named(&parser.module.type_store, u32(parser.pkg), u32(name.symbol), file=u32(parser.file), file_hidden=!c_layout && file_hidden_name(parser, name)) + id := types.named(&parser.module.type_store, u32(parser.pkg), u32(name.symbol), file=u32(parser.file), file_hidden=file_hidden) // A tagged union spells its discriminant in parens: `union(Enum)` reuses an existing // enum; `union(enum)` synthesizes one from the variant names after the body is parsed. tag := types.INVALID @@ -2452,9 +2475,9 @@ parse_struct :: proc(parser: ^Parser, name: token.Token, c_layout: bool, is_unio _ = finish_statement(parser) } -parse_opaque :: proc(parser: ^Parser, name: token.Token) { +parse_opaque :: proc(parser: ^Parser, name: token.Token, file_hidden: bool) { start := advance(parser) - id := types.named(&parser.module.type_store, u32(parser.pkg), u32(name.symbol), file=u32(parser.file), file_hidden=file_hidden_name(parser, name)) + id := types.named(&parser.module.type_store, u32(parser.pkg), u32(name.symbol), file=u32(parser.file), file_hidden=file_hidden) if !types.define_record(&parser.module.type_store, id, nil, false, true, false) { source.addf(parser.diagnostics, name.span, "duplicate type declaration '%s'", token_text(parser, name)) } @@ -2480,10 +2503,10 @@ synthesize_union_tag :: proc(parser: ^Parser, fields: []types.Field) -> types.Ty return types.enum_anonymous(&parser.module.type_store, members, types.U16) } -parse_distinct :: proc(parser: ^Parser, name: token.Token) { +parse_distinct :: proc(parser: ^Parser, name: token.Token, file_hidden: bool) { start := advance(parser) child := parse_type(parser) - id := types.named(&parser.module.type_store, u32(parser.pkg), u32(name.symbol), file=u32(parser.file), file_hidden=file_hidden_name(parser, name)) + id := types.named(&parser.module.type_store, u32(parser.pkg), u32(name.symbol), file=u32(parser.file), file_hidden=file_hidden) if !types.define_distinct(&parser.module.type_store, id, child) { source.addf(parser.diagnostics, name.span, "duplicate type declaration '%s'", token_text(parser, name)) } @@ -2493,7 +2516,7 @@ parse_distinct :: proc(parser: ^Parser, name: token.Token) { _ = finish_statement(parser) } -parse_alias :: proc(parser: ^Parser, name: token.Token) { +parse_alias :: proc(parser: ^Parser, name: token.Token, file_hidden: bool) { start := advance(parser) saved := parser.cursor if current(parser).kind == .Identifier && peek(parser).kind == .Dot { @@ -2510,7 +2533,7 @@ parse_alias :: proc(parser: ^Parser, name: token.Token) { pkg=parser.pkg, file=parser.file, target_pkg=ast.INVALID_PACKAGE, - file_hidden=file_hidden_name(parser, name), + file_hidden=file_hidden, valid=true, diagnostic=source.INVALID_DIAGNOSTIC, }) @@ -2521,7 +2544,7 @@ parse_alias :: proc(parser: ^Parser, name: token.Token) { } parser.cursor = saved child := parse_type(parser) - id := types.named(&parser.module.type_store, u32(parser.pkg), u32(name.symbol), file=u32(parser.file), file_hidden=file_hidden_name(parser, name)) + id := types.named(&parser.module.type_store, u32(parser.pkg), u32(name.symbol), file=u32(parser.file), file_hidden=file_hidden) if !types.define_alias(&parser.module.type_store, id, child) { source.addf(parser.diagnostics, name.span, "duplicate type declaration '%s'", token_text(parser, name)) } @@ -2650,7 +2673,7 @@ parse_inline_enum_type :: proc(parser: ^Parser) -> types.Type { return types.enum_anonymous(&parser.module.type_store, members[:], backing) } -parse_enum :: proc(parser: ^Parser, name: token.Token) { +parse_enum :: proc(parser: ^Parser, name: token.Token, file_hidden: bool) { start := advance(parser) explicit_backing := false backing := types.INVALID @@ -2668,7 +2691,7 @@ parse_enum :: proc(parser: ^Parser, name: token.Token) { _ = finish_statement(parser) return } - id := types.named(&parser.module.type_store, u32(parser.pkg), u32(name.symbol), file=u32(parser.file), file_hidden=file_hidden_name(parser, name)) + id := types.named(&parser.module.type_store, u32(parser.pkg), u32(name.symbol), file=u32(parser.file), file_hidden=file_hidden) if !types.define_enum(&parser.module.type_store, id, backing, members[:], explicit_backing) { source.addf(parser.diagnostics, name.span, "duplicate type declaration '%s'", token_text(parser, name)) } @@ -2764,13 +2787,18 @@ parse_import :: proc(parser: ^Parser, alias: token.Token, start: token.Token) { } parse_top_level :: proc(parser: ^Parser) { + hide_token, file_hidden := allow(parser, .Keyword_Hide) if current(parser).kind == .Keyword_Import { + if file_hidden { + source.add(parser.diagnostics, hide_token.span, "imports are already file-local and cannot use 'hide'") + } start := advance(parser) parse_import(parser, token.Token{}, start) return } if current(parser).kind != .Identifier { - source.add(parser.diagnostics, current(parser).span, "expected a top-level declaration") + message := "expected a declaration name after 'hide'" if file_hidden else "expected a top-level declaration" + source.add(parser.diagnostics, current(parser).span, message) for current(parser).kind != .Newline && current(parser).kind != .Eof { advance(parser) } @@ -2783,6 +2811,9 @@ parse_top_level :: proc(parser: ^Parser) { advance(parser) skip_newlines(parser) if current(parser).kind == .Keyword_Import { + if file_hidden { + source.add(parser.diagnostics, hide_token.span, "imports are already file-local and cannot use 'hide'") + } start := advance(parser) parse_import(parser, name, start) return @@ -2791,7 +2822,7 @@ parse_top_level :: proc(parser: ^Parser) { } if current(parser).kind == .Keyword_Func || current(parser).kind == .Keyword_C_Func { c_abi := current(parser).kind == .Keyword_C_Func - parse_function(parser, name, c_abi) + parse_function(parser, name, c_abi, file_hidden) return } type_syntax := types.INVALID @@ -2812,32 +2843,32 @@ parse_top_level :: proc(parser: ^Parser) { source.add(parser.diagnostics, span_from(name.span, current(parser).span), "function declarations do not use '::'; write 'name func(...)' or 'name c_func(...)'") c_abi := current(parser).kind == .Keyword_C_Func - parse_function(parser, name, c_abi) + parse_function(parser, name, c_abi, file_hidden) return } if operator.kind == .Colon_Colon && (current(parser).kind == .Keyword_Struct || current(parser).kind == .Keyword_C_Struct) { - parse_struct(parser, name, current(parser).kind == .Keyword_C_Struct) + parse_struct(parser, name, current(parser).kind == .Keyword_C_Struct, file_hidden) return } if operator.kind == .Colon_Colon && current(parser).kind == .Keyword_Opaque { - parse_opaque(parser, name) + parse_opaque(parser, name, file_hidden) return } if operator.kind == .Colon_Colon && current(parser).kind == .Keyword_Union { - parse_struct(parser, name, false, is_union=true) + parse_struct(parser, name, false, file_hidden, is_union=true) return } if operator.kind == .Colon_Colon && current(parser).kind == .Keyword_Enum { - parse_enum(parser, name) + parse_enum(parser, name, file_hidden) return } if operator.kind == .Colon_Colon && current(parser).kind == .Keyword_Distinct { - parse_distinct(parser, name) + parse_distinct(parser, name, file_hidden) return } if operator.kind == .Colon_Colon && current(parser).kind == .Keyword_Alias { - parse_alias(parser, name) + parse_alias(parser, name, file_hidden) return } @@ -2848,7 +2879,7 @@ parse_top_level :: proc(parser: ^Parser) { name=name.symbol, pkg=parser.pkg, file=parser.file, - file_hidden=file_hidden_name(parser, name), + file_hidden=file_hidden, type=type_syntax, immutable=operator.kind == .Colon_Colon, expr=expr, @@ -2869,6 +2900,9 @@ parse :: proc( diagnostics=diagnostics, module=ast.init_module(allocator), } + parser.hidden_names.allocator = allocator + defer delete(parser.hidden_names) + collect_hidden_names(&parser) skip_newlines(&parser) for current(&parser).kind != .Eof { parse_top_level(&parser) @@ -2893,6 +2927,9 @@ parse_into :: proc( pkg=pkg, file=file, } + parser.hidden_names.allocator = module.allocator + defer delete(parser.hidden_names) + collect_hidden_names(&parser) skip_newlines(&parser) for current(&parser).kind != .Eof { parse_top_level(&parser) diff --git a/compiler/token/token.odin b/compiler/token/token.odin index 9ef6208..d28bd66 100644 --- a/compiler/token/token.odin +++ b/compiler/token/token.odin @@ -60,6 +60,7 @@ Kind :: enum u8 { Keyword_Distinct, Keyword_Alias, Keyword_Import, + Keyword_Hide, Keyword_Return, Keyword_Try, Keyword_Catch, diff --git a/compiler_tests.odin b/compiler_tests.odin index d2b50d1..8bc673e 100644 --- a/compiler_tests.odin +++ b/compiler_tests.odin @@ -7353,13 +7353,38 @@ imports_are_file_local :: proc(t: ^testing.T) { } @(test) -leading_underscore_declarations_are_file_hidden :: proc(t: ^testing.T) { +hide_is_rejected_outside_named_top_level_declarations :: proc(t: ^testing.T) { + cases := [?]string{ + `hide import "../dep"`, + `hide dep :: import "../dep"`, + `hide func() void {}`, + `main func(hide value i32) void {}`, + `Box :: struct { hide i32 }`, + `main func() void { hide value i32 = 1 }`, + } + for text in cases { + 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) + + testing.expect(t, len(diagnostics.items) > 0) + } +} + +@(test) +hide_declarations_are_file_hidden :: proc(t: ^testing.T) { output := "/tmp/brolang-test-hidden-declarations" defer _ = os.remove(output) status := compiler_core.compile_package("examples/packages/hidden_valid/app", output) testing.expect_value(t, status, 0) state := run_executable(output) - testing.expect_value(t, state.exit_code, 7) + testing.expect_value(t, state.exit_code, 9) } @(test) @@ -7382,11 +7407,11 @@ file_hidden_declarations_are_not_package_members :: proc(t: ^testing.T) { found_import := false found_collision := false for diagnostic in diagnostics.items { - found_sibling = found_sibling || strings.contains(diagnostic.message, "unresolved function '_sibling'") - found_sibling_value = found_sibling_value || strings.contains(diagnostic.message, "unresolved global '_sibling_value'") - found_sibling_type = found_sibling_type || strings.contains(diagnostic.message, "unknown or opaque record type '_Sibling'") - found_import = found_import || strings.contains(diagnostic.message, "package 'dep' has no member '_secret'") - found_collision = found_collision || strings.contains(diagnostic.message, "duplicate function '_collision'") + found_sibling = found_sibling || strings.contains(diagnostic.message, "unresolved function 'sibling'") + found_sibling_value = found_sibling_value || strings.contains(diagnostic.message, "unresolved global 'sibling_value'") + found_sibling_type = found_sibling_type || strings.contains(diagnostic.message, "unknown or opaque record type 'Sibling'") + found_import = found_import || strings.contains(diagnostic.message, "package 'dep' has no member 'secret'") + found_collision = found_collision || strings.contains(diagnostic.message, "duplicate function 'collision'") } testing.expect(t, found_sibling) testing.expect(t, found_sibling_value) @@ -7513,8 +7538,8 @@ RenamedBox :: alias dep.Box RenamedPoint :: alias dep.Point counter :: alias dep.counter answer :: alias dep.answer -_local_answer :: alias dep.answer -local_answer func() i32 { return _local_answer() } +hide local_answer_alias :: alias dep.answer +local_answer func() i32 { return local_answer_alias() } Scalar :: alias i32 MaybePoint :: alias ?@dep.Point Concrete :: alias dep.Box(i32) @@ -7567,14 +7592,14 @@ declaration_aliases_diagnose_invalid_targets :: proc(t: ^testing.T) { testing.expect(t, os.make_directory(directory) == nil) } dep_text := `visible func() i32 { return 1 } -_hidden func() i32 { return 2 } +hide hidden_target func() i32 { return 2 } ambiguous func() i32 { return 3 } ambiguous i32 :: 4 ` facade_text := `dep :: import "../dep" gone :: import "../gone" missing :: alias dep.missing -hidden :: alias dep._hidden +hidden :: alias dep.hidden_target unknown :: alias nope.visible unavailable :: alias gone.visible ambiguous :: alias dep.ambiguous @@ -10589,6 +10614,7 @@ main func() i32 { @(test) keywords_are_valid_enum_members_and_tagged_union_variants :: proc(t: ^testing.T) { testing.expect(t, token.is_keyword(.Keyword_Func)) + testing.expect(t, token.is_keyword(.Keyword_Hide)) testing.expect(t, token.is_keyword(.Keyword_C_Longdouble)) testing.expect(t, !token.is_keyword(.Identifier)) testing.expect(t, !token.is_keyword(.Underscore)) diff --git a/examples/packages/hidden_invalid/app/a.bro b/examples/packages/hidden_invalid/app/a.bro index e76a2ee..3aa02fe 100644 --- a/examples/packages/hidden_invalid/app/a.bro +++ b/examples/packages/hidden_invalid/app/a.bro @@ -1,13 +1,13 @@ -_sibling func() i32 { +hide sibling func() i32 { return 1 } -_Sibling :: struct { +hide Sibling :: struct { value i32 } -_sibling_value :: 1 +hide sibling_value :: 1 -_collision c_func() i32 { +collision c_func() i32 { return 1 } diff --git a/examples/packages/hidden_invalid/app/b.bro b/examples/packages/hidden_invalid/app/b.bro index 82fe995..5e527a2 100644 --- a/examples/packages/hidden_invalid/app/b.bro +++ b/examples/packages/hidden_invalid/app/b.bro @@ -1,17 +1,17 @@ import "../dep" -_collision func() i32 { +hide collision func() i32 { return 2 } -read_sibling func(value _Sibling) i32 { - return value.value + _sibling_value +read_sibling func(value Sibling) i32 { + return value.value + sibling_value } read_sibling_value func() i32 { - return _sibling_value + return sibling_value } main func() i32 { - return _sibling() + dep._secret() + read_sibling(_Sibling { value = 1 }) + read_sibling_value() + return sibling() + dep.secret() + read_sibling(Sibling { value = 1 }) + read_sibling_value() } diff --git a/examples/packages/hidden_invalid/dep/dep.bro b/examples/packages/hidden_invalid/dep/dep.bro index cda4f81..6c976bd 100644 --- a/examples/packages/hidden_invalid/dep/dep.bro +++ b/examples/packages/hidden_invalid/dep/dep.bro @@ -1,3 +1,3 @@ -_secret func() i32 { +hide secret c_func() i32 { return 1 } diff --git a/examples/packages/hidden_valid/app/a.bro b/examples/packages/hidden_valid/app/a.bro index 79801bd..cdeeda2 100644 --- a/examples/packages/hidden_valid/app/a.bro +++ b/examples/packages/hidden_valid/app/a.bro @@ -1,14 +1,27 @@ -_Thing :: struct { +hide helper func() i32 { + thing Thing = Thing { value = value } + return thing.value +} + +hide Thing :: struct { value i32 } -_value :: 1 - -_helper func() i32 { - thing _Thing = _Thing { value = _value } - return thing.value +hide Local_Union :: union { + value i32 } +hide Local_Enum :: enum { + value +} + +hide Local_Opaque :: opaque +hide Local_Distinct :: distinct i32 +hide Local_Alias :: alias i32 + +hide value :: 1 +hide mutable_value i32 = 1 + _foreign c_func() i32 { return 1 } @@ -17,6 +30,15 @@ _C_Record :: c_struct { value c_int } -from_a func() i32 { - return _helper() +hide local_foreign c_func() i32 { + return 1 +} + +hide Local_C_Record :: c_struct { + value c_int +} + +from_a func() i32 { + record Local_C_Record = Local_C_Record { value = 0 } + return helper() + local_foreign() + i32(record.value) } diff --git a/examples/packages/hidden_valid/app/b.bro b/examples/packages/hidden_valid/app/b.bro index 34cb621..d45da22 100644 --- a/examples/packages/hidden_valid/app/b.bro +++ b/examples/packages/hidden_valid/app/b.bro @@ -1,14 +1,37 @@ -_Thing :: struct { +import "../dep" + +hide Thing :: struct { value i32 } -_value :: 2 +hide Local_Union :: union { + value i32 +} -_helper func() i32 { - thing _Thing = _Thing { value = _value } +hide Local_Enum :: enum { + value +} + +hide Local_Opaque :: opaque +hide Local_Distinct :: distinct i32 +hide Local_Alias :: alias i32 + +hide value :: 2 +hide mutable_value i32 = 2 + +hide helper func() i32 { + thing Thing = Thing { value = value } return thing.value } +hide local_foreign c_func() i32 { + return 1 +} + +hide Local_C_Record :: c_struct { + value c_int +} + Box :: struct { _value i32 } @@ -16,5 +39,5 @@ Box :: struct { from_b func(_input i32) i32 { _local Box = Box { _value = _input } record _C_Record = _C_Record { value = 0 } - return _helper() + _local._value + _foreign() + i32(record.value) + return helper() + _local._value + _foreign() + i32(record.value) + dep._visible() } diff --git a/examples/packages/hidden_valid/dep/dep.bro b/examples/packages/hidden_valid/dep/dep.bro new file mode 100644 index 0000000..949594e --- /dev/null +++ b/examples/packages/hidden_valid/dep/dep.bro @@ -0,0 +1,3 @@ +_visible func() i32 { + return 1 +} diff --git a/examples/programs/arraylist/main.bro b/examples/programs/arraylist/main.bro index 8c6a668..e58c7d1 100644 --- a/examples/programs/arraylist/main.bro +++ b/examples/programs/arraylist/main.bro @@ -2,25 +2,25 @@ arraylist :: import "@std/arraylist" mem :: import "@std/mem" std :: import "@std" -_fail_alloc func(_ ?*mut anyopaque, _ usize, _ usize) ?*mut u8 { +hide fail_alloc func(_ ?*mut anyopaque, _ usize, _ usize) ?*mut u8 { return none } -_fail_realloc func(_ ?*mut anyopaque, _ ?*mut u8, _ usize, _ usize, _ usize) ?*mut u8 { +hide fail_realloc func(_ ?*mut anyopaque, _ ?*mut u8, _ usize, _ usize, _ usize) ?*mut u8 { return none } -_fail_free func(_ ?*mut anyopaque, _ ?*mut u8, _ usize, _ usize) void {} +hide fail_free func(_ ?*mut anyopaque, _ ?*mut u8, _ usize, _ usize) void {} -_fail_vtable mem.AllocatorVTable :: mem.AllocatorVTable { - alloc = _fail_alloc, - realloc = _fail_realloc, - free = _fail_free, +hide fail_vtable mem.AllocatorVTable :: mem.AllocatorVTable { + alloc = fail_alloc, + realloc = fail_realloc, + free = fail_free, } -_fail_allocator mem.Allocator :: mem.Allocator { +hide fail_allocator mem.Allocator :: mem.Allocator { context = none, - vtable = &_fail_vtable, + vtable = &fail_vtable, } run func() i32 ! mem.AllocError { @@ -59,7 +59,7 @@ run func() i32 ! mem.AllocError { } if (empty_values.items.len != 1) return 8 - failed arraylist.ArrayList(i32) = arraylist.init(i32, _fail_allocator) + failed arraylist.ArrayList(i32) = arraylist.init(i32, fail_allocator) failed_as_expected bool = false arraylist.append(&failed, 1) catch |_| { failed_as_expected = true diff --git a/examples/programs/io/main.bro b/examples/programs/io/main.bro index 6d7071d..631db2d 100644 --- a/examples/programs/io/main.bro +++ b/examples/programs/io/main.bro @@ -1,6 +1,6 @@ io :: import "@std/io" -_read_ok func(_ ?*mut anyopaque, _ io.ReadStream, buffer []mut u8) usize ! io.ReadError { +hide read_ok func(_ ?*mut anyopaque, _ io.ReadStream, buffer []mut u8) usize ! io.ReadError { if buffer.len == 0 { return 0 } @@ -12,52 +12,52 @@ _read_ok func(_ ?*mut anyopaque, _ io.ReadStream, buffer []mut u8) usize ! io.Re return 2 } -_read_too_much func(_ ?*mut anyopaque, _ io.ReadStream, buffer []mut u8) usize ! io.ReadError { +hide read_too_much func(_ ?*mut anyopaque, _ io.ReadStream, buffer []mut u8) usize ! io.ReadError { return buffer.len + 1 } -_read_eof func(_ ?*mut anyopaque, _ io.ReadStream, _ []mut u8) usize ! io.ReadError { +hide read_eof func(_ ?*mut anyopaque, _ io.ReadStream, _ []mut u8) usize ! io.ReadError { return 0 } -_write_short func(_ ?*mut anyopaque, _ io.WriteStream, bytes []u8) usize ! io.WriteError { +hide write_short func(_ ?*mut anyopaque, _ io.WriteStream, bytes []u8) usize ! io.WriteError { if bytes.len > 2 { return 2 } return bytes.len } -_write_none func(_ ?*mut anyopaque, _ io.WriteStream, _ []u8) usize ! io.WriteError { +hide write_none func(_ ?*mut anyopaque, _ io.WriteStream, _ []u8) usize ! io.WriteError { return 0 } -_write_too_much func(_ ?*mut anyopaque, _ io.WriteStream, bytes []u8) usize ! io.WriteError { +hide write_too_much func(_ ?*mut anyopaque, _ io.WriteStream, bytes []u8) usize ! io.WriteError { return bytes.len + 1 } -_ok_vtable io.IoVTable :: io.IoVTable { - read = _read_ok, - write = _write_short, +hide ok_vtable io.IoVTable :: io.IoVTable { + read = read_ok, + write = write_short, } -_read_bad_vtable io.IoVTable :: io.IoVTable { - read = _read_too_much, - write = _write_short, +hide read_bad_vtable io.IoVTable :: io.IoVTable { + read = read_too_much, + write = write_short, } -_eof_vtable io.IoVTable :: io.IoVTable { - read = _read_eof, - write = _write_short, +hide eof_vtable io.IoVTable :: io.IoVTable { + read = read_eof, + write = write_short, } -_write_none_vtable io.IoVTable :: io.IoVTable { - read = _read_ok, - write = _write_none, +hide write_none_vtable io.IoVTable :: io.IoVTable { + read = read_ok, + write = write_none, } -_write_bad_vtable io.IoVTable :: io.IoVTable { - read = _read_ok, - write = _write_too_much, +hide write_bad_vtable io.IoVTable :: io.IoVTable { + read = read_ok, + write = write_too_much, } reader_for func(vtable @io.IoVTable) io.Reader { @@ -76,39 +76,39 @@ writer_for func(vtable @io.IoVTable) io.Writer { rejects_bad_read func() bool { buffer [1]mut u8 = [0] - _ = io.read(reader_for(&_read_bad_vtable), buffer[..]) catch |err| { + _ = io.read(reader_for(&read_bad_vtable), buffer[..]) catch |err| { return err == .read_failed } return false } rejects_no_progress func() bool { - io.write_all(writer_for(&_write_none_vtable), "x") catch |err| { + io.write_all(writer_for(&write_none_vtable), "x") catch |err| { return err == .no_progress } return false } rejects_bad_write func() bool { - _ = io.write(writer_for(&_write_bad_vtable), "x") catch |err| { + _ = io.write(writer_for(&write_bad_vtable), "x") catch |err| { return err == .write_failed } return false } -main func(system io.Io) i32 { +main func(system std.Io) i32 { buffer [2]mut u8 = [0, 0] - count usize :: io.read(reader_for(&_ok_vtable), buffer[..]) catch 0 + count usize :: io.read(reader_for(&ok_vtable), buffer[..]) catch 0 if count != 2 or buffer[0] != 'o' or buffer[1] != 'k' { return 1 } - eof usize :: io.read(reader_for(&_eof_vtable), buffer[..]) catch 1 - empty_read usize :: io.read(reader_for(&_read_bad_vtable), buffer[0..0]) catch 1 - empty_write usize :: io.write(writer_for(&_write_bad_vtable), "") catch 1 + eof usize :: io.read(reader_for(&eof_vtable), buffer[..]) catch 1 + empty_read usize :: io.read(reader_for(&read_bad_vtable), buffer[0..0]) catch 1 + empty_write usize :: io.write(writer_for(&write_bad_vtable), "") catch 1 if eof != 0 or empty_read != 0 or empty_write != 0 { return 5 } - io.write_all(writer_for(&_ok_vtable), "partial") catch |_| { + io.write_all(writer_for(&ok_vtable), "partial") catch |_| { return 2 } if !rejects_bad_read() or !rejects_no_progress() or !rejects_bad_write() { diff --git a/examples/programs/mem_allocator/typed_alloc.bro b/examples/programs/mem_allocator/typed_alloc.bro index 53f0774..fb15b03 100644 --- a/examples/programs/mem_allocator/typed_alloc.bro +++ b/examples/programs/mem_allocator/typed_alloc.bro @@ -1,30 +1,30 @@ mem :: import "@std/mem" -_probe_count func(context ?*mut anyopaque) void { +hide probe_count func(context ?*mut anyopaque) void { if context |raw| { counts *mut usize :: ptrcast!(usize, raw) counts[0] += 1 } } -_probe_alloc func(context ?*mut anyopaque, _ usize, _ usize) ?*mut u8 { - _probe_count(context) +hide probe_alloc func(context ?*mut anyopaque, _ usize, _ usize) ?*mut u8 { + probe_count(context) return none } -_probe_realloc func(context ?*mut anyopaque, _ ?*mut u8, _ usize, _ usize, _ usize) ?*mut u8 { - _probe_count(context) +hide probe_realloc func(context ?*mut anyopaque, _ ?*mut u8, _ usize, _ usize, _ usize) ?*mut u8 { + probe_count(context) return none } -_probe_free func(context ?*mut anyopaque, _ ?*mut u8, _ usize, _ usize) void { - _probe_count(context) +hide probe_free func(context ?*mut anyopaque, _ ?*mut u8, _ usize, _ usize) void { + probe_count(context) } -_probe_vtable mem.AllocatorVTable :: mem.AllocatorVTable { - alloc = _probe_alloc, - realloc = _probe_realloc, - free = _probe_free, +hide probe_vtable mem.AllocatorVTable :: mem.AllocatorVTable { + alloc = probe_alloc, + realloc = probe_realloc, + free = probe_free, } typed_allocator_test func() i32 { @@ -34,11 +34,11 @@ typed_allocator_test func() i32 { second_calls [1]mut usize = [0] first_allocator mem.Allocator :: mem.Allocator { context = (&first_calls).ptr, - vtable = &_probe_vtable, + vtable = &probe_vtable, } second_allocator mem.Allocator :: mem.Allocator { context = (&second_calls).ptr, - vtable = &_probe_vtable, + vtable = &probe_vtable, } _ = mem.raw_alloc(first_allocator, 1, 1) diff --git a/std/io/io.bro b/std/io/io.bro index 3cc4125..e858039 100644 --- a/std/io/io.bro +++ b/std/io/io.bro @@ -74,7 +74,7 @@ write_all func(writer Writer, bytes []u8) void ! WriteError { return } -_system_read func(_ ?*mut anyopaque, stream ReadStream, buffer []mut u8) usize ! ReadError { +hide system_read func(_ ?*mut anyopaque, stream ReadStream, buffer []mut u8) usize ! ReadError { request usize = buffer.len maximum usize :: usize(maxval!(c_long)) if request > maximum { @@ -91,7 +91,7 @@ _system_read func(_ ?*mut anyopaque, stream ReadStream, buffer []mut u8) usize ! } } -_system_write func(_ ?*mut anyopaque, stream WriteStream, bytes []u8) usize ! WriteError { +hide system_write func(_ ?*mut anyopaque, stream WriteStream, bytes []u8) usize ! WriteError { fd c_int :: c_int(stream) request usize = bytes.len maximum usize :: usize(maxval!(c_long)) @@ -109,14 +109,14 @@ _system_write func(_ ?*mut anyopaque, stream WriteStream, bytes []u8) usize ! Wr } } -_system_vtable IoVTable :: IoVTable { - read = _system_read, - write = _system_write, +hide system_vtable IoVTable :: IoVTable { + read = system_read, + write = system_write, } -_system func() Io { +hide system func() Io { return Io { context = none, - vtable = &_system_vtable, + vtable = &system_vtable, } } diff --git a/std/mem/mem.bro b/std/mem/mem.bro index cd9bca4..310486d 100644 --- a/std/mem/mem.bro +++ b/std/mem/mem.bro @@ -41,25 +41,25 @@ eql func($T type, left, right []T) bool { return true } -_empty_storage [1]mut u64 = [0] +hide empty_storage [1]mut u64 = [0] -_empty_slice func($T type, count usize) []mut T { - pointer *mut T :: ptrcast!(T, (&_empty_storage).ptr) +hide empty_slice func($T type, count usize) []mut T { + pointer *mut T :: ptrcast!(T, (&empty_storage).ptr) return pointer[..count] } empty func($T type) []mut T { - return _empty_slice(T, 0) + return empty_slice(T, 0) } alloc func($T type, allocator Allocator, count usize) []mut T ! AllocError { if count == 0 { - return _empty_slice(T, 0) + return empty_slice(T, 0) } element_size usize :: sizeof!(T) if element_size == 0 { - return _empty_slice(T, count) + return empty_slice(T, count) } if count > divtrunc!(maxval!(usize), element_size) { return .out_of_memory @@ -79,12 +79,12 @@ realloc func($T type, allocator Allocator, memory []mut T, new_count usize) []mu } if new_count == 0 { free(allocator, memory) - return _empty_slice(T, 0) + return empty_slice(T, 0) } element_size usize :: sizeof!(T) if element_size == 0 { - return _empty_slice(T, new_count) + return empty_slice(T, new_count) } if new_count > divtrunc!(maxval!(usize), element_size) { return .out_of_memory @@ -116,9 +116,9 @@ free func($T type, allocator Allocator, memory []mut T) void { } } -_malloc_alignment usize :: 16 # ponytail: aarch64-macos libc malloc alignment assumption. +hide malloc_alignment usize :: 16 # ponytail: aarch64-macos libc malloc alignment assumption. -_power_of_two func(value usize) bool { +hide power_of_two func(value usize) bool { if value == 0 { return false } @@ -135,12 +135,12 @@ _power_of_two func(value usize) bool { return true } -_c_alloc func(_ ?*mut anyopaque, size usize, alignment usize) ?*mut u8 { - if _power_of_two(alignment) == false { +hide c_alloc func(_ ?*mut anyopaque, size usize, alignment usize) ?*mut u8 { + if power_of_two(alignment) == false { return none } - if alignment <= _malloc_alignment { + if alignment <= malloc_alignment { return ptrcast!(u8, c.malloc(c_ulong(size))) } @@ -153,8 +153,8 @@ _c_alloc func(_ ?*mut anyopaque, size usize, alignment usize) ?*mut u8 { return ptrcast!(u8, memory[0]) } -_c_realloc func(_ ?*mut anyopaque, memory ?*mut u8, old_size usize, new_size usize, alignment usize) ?*mut u8 { - if _power_of_two(alignment) == false { +hide c_realloc func(_ ?*mut anyopaque, memory ?*mut u8, old_size usize, new_size usize, alignment usize) ?*mut u8 { + if power_of_two(alignment) == false { return none } @@ -164,11 +164,11 @@ _c_realloc func(_ ?*mut anyopaque, memory ?*mut u8, old_size usize, new_size usi } if memory |old_memory| { - if alignment <= _malloc_alignment { + if alignment <= malloc_alignment { return ptrcast!(u8, c.realloc(old_memory, c_ulong(new_size))) } - new_memory ?*mut u8 = _c_alloc(none, new_size, alignment) + new_memory ?*mut u8 = c_alloc(none, new_size, alignment) if new_memory |new_bytes| { copy_size usize = old_size if new_size < copy_size { @@ -183,20 +183,20 @@ _c_realloc func(_ ?*mut anyopaque, memory ?*mut u8, old_size usize, new_size usi return new_memory } - return _c_alloc(none, new_size, alignment) + return c_alloc(none, new_size, alignment) } -_c_free func(_ ?*mut anyopaque, memory ?*mut u8, _ usize, _ usize) void { +hide c_free func(_ ?*mut anyopaque, memory ?*mut u8, _ usize, _ usize) void { c.free(memory) } -_c_vtable AllocatorVTable :: AllocatorVTable { - alloc = _c_alloc, - realloc = _c_realloc, - free = _c_free, +hide c_vtable AllocatorVTable :: AllocatorVTable { + alloc = c_alloc, + realloc = c_realloc, + free = c_free, } c_allocator Allocator :: Allocator { context = none, - vtable = &_c_vtable, + vtable = &c_vtable, } diff --git a/std/std.bro b/std/std.bro index 2e49663..d4697ad 100644 --- a/std/std.bro +++ b/std/std.bro @@ -1,3 +1,5 @@ +import "io" import "arraylist" +Io :: alias io.Io ArrayList :: alias arraylist.ArrayList diff --git a/testbed/lexer/main.bro b/testbed/lexer/main.bro index ba46179..8a4da60 100644 --- a/testbed/lexer/main.bro +++ b/testbed/lexer/main.bro @@ -20,17 +20,17 @@ Token :: struct { kind Kind } -_is_alpha func(value u8) bool { +hide is_alpha func(value u8) bool { return value == '_' or value >= 'a' and value <= 'z' or value >= 'A' and value <= 'Z' } -_is_digit func(value u8) bool { +hide is_digit func(value u8) bool { return value >= '0' and value <= '9' } -_word_kind func(word []u8) Kind { +hide word_kind func(word []u8) Kind { # ponytail: enough keywords for the demo; add the full language set when a parser needs it. if mem.eql(word, "func") or mem.eql(word, "void") { return .keyword @@ -38,7 +38,7 @@ _word_kind func(word []u8) Kind { return .identifier } -_append func(tokens @mut std.ArrayList(Token), kind Kind, start, end usize) void ! mem.AllocError { +hide append_token func(tokens @mut std.ArrayList(Token), kind Kind, start, end usize) void ! mem.AllocError { try arraylist.append(tokens, Token { start = start, length = end - start, @@ -54,19 +54,19 @@ lex func(source []u8, tokens @mut std.ArrayList(Token)) void ! mem.AllocError { if value == ' ' or value == '\t' or value == '\r' { cursor += 1 } else if value == '\n' { - try _append(tokens, .newline, cursor, cursor + 1) + try append_token(tokens, .newline, cursor, cursor + 1) cursor += 1 } else if value == '#' { while cursor < source.len and source[cursor] != '\n' : cursor += 1 {} - } else if _is_alpha(value) { + } else if is_alpha(value) { start usize :: cursor cursor += 1 - while cursor < source.len and (_is_alpha(source[cursor]) or _is_digit(source[cursor])) : cursor += 1 {} - try _append(tokens, _word_kind(source[start..cursor]), start, cursor) - } else if _is_digit(value) { + while cursor < source.len and (is_alpha(source[cursor]) or is_digit(source[cursor])) : cursor += 1 {} + try append_token(tokens, word_kind(source[start..cursor]), start, cursor) + } else if is_digit(value) { start usize :: cursor - while cursor < source.len and _is_digit(source[cursor]) : cursor += 1 {} - try _append(tokens, .integer, start, cursor) + while cursor < source.len and is_digit(source[cursor]) : cursor += 1 {} + try append_token(tokens, .integer, start, cursor) } else if value == '"' { start usize :: cursor cursor += 1 @@ -78,9 +78,9 @@ lex func(source []u8, tokens @mut std.ArrayList(Token)) void ! mem.AllocError { } if cursor < source.len and source[cursor] == '"' { cursor += 1 - try _append(tokens, .string, start, cursor) + try append_token(tokens, .string, start, cursor) } else { - try _append(tokens, .invalid, start, cursor) + try append_token(tokens, .invalid, start, cursor) } } else { start usize :: cursor @@ -88,14 +88,14 @@ lex func(source []u8, tokens @mut std.ArrayList(Token)) void ! mem.AllocError { if value == ':' and cursor < source.len and source[cursor] == ':' { cursor += 1 } - try _append(tokens, .punctuation, start, cursor) + try append_token(tokens, .punctuation, start, cursor) } } - try _append(tokens, .eof, cursor, cursor) + try append_token(tokens, .eof, cursor, cursor) return } -_kind_name func(kind Kind) *c_char { +hide kind_name func(kind Kind) *c_char { return match kind { .invalid: "invalid" .eof: "eof" @@ -108,8 +108,8 @@ _kind_name func(kind Kind) *c_char { } } -_print_token func(source []u8, token Token) void { - _ = c.printf("%-11s", _kind_name(token.kind)) +hide print_token func(source []u8, token Token) void { + _ = c.printf("%-11s", kind_name(token.kind)) if token.length != 0 { _ = c.printf(" `") i usize = 0 @@ -149,7 +149,7 @@ main func() i32 { } for tokens.items |token| { - _print_token(source, token) + print_token(source, token) } return 0 } diff --git a/testbed/lexer/std/io/io.bro b/testbed/lexer/std/io/io.bro index 3cc4125..e858039 100644 --- a/testbed/lexer/std/io/io.bro +++ b/testbed/lexer/std/io/io.bro @@ -74,7 +74,7 @@ write_all func(writer Writer, bytes []u8) void ! WriteError { return } -_system_read func(_ ?*mut anyopaque, stream ReadStream, buffer []mut u8) usize ! ReadError { +hide system_read func(_ ?*mut anyopaque, stream ReadStream, buffer []mut u8) usize ! ReadError { request usize = buffer.len maximum usize :: usize(maxval!(c_long)) if request > maximum { @@ -91,7 +91,7 @@ _system_read func(_ ?*mut anyopaque, stream ReadStream, buffer []mut u8) usize ! } } -_system_write func(_ ?*mut anyopaque, stream WriteStream, bytes []u8) usize ! WriteError { +hide system_write func(_ ?*mut anyopaque, stream WriteStream, bytes []u8) usize ! WriteError { fd c_int :: c_int(stream) request usize = bytes.len maximum usize :: usize(maxval!(c_long)) @@ -109,14 +109,14 @@ _system_write func(_ ?*mut anyopaque, stream WriteStream, bytes []u8) usize ! Wr } } -_system_vtable IoVTable :: IoVTable { - read = _system_read, - write = _system_write, +hide system_vtable IoVTable :: IoVTable { + read = system_read, + write = system_write, } -_system func() Io { +hide system func() Io { return Io { context = none, - vtable = &_system_vtable, + vtable = &system_vtable, } } diff --git a/testbed/lexer/std/mem/mem.bro b/testbed/lexer/std/mem/mem.bro index cd9bca4..310486d 100644 --- a/testbed/lexer/std/mem/mem.bro +++ b/testbed/lexer/std/mem/mem.bro @@ -41,25 +41,25 @@ eql func($T type, left, right []T) bool { return true } -_empty_storage [1]mut u64 = [0] +hide empty_storage [1]mut u64 = [0] -_empty_slice func($T type, count usize) []mut T { - pointer *mut T :: ptrcast!(T, (&_empty_storage).ptr) +hide empty_slice func($T type, count usize) []mut T { + pointer *mut T :: ptrcast!(T, (&empty_storage).ptr) return pointer[..count] } empty func($T type) []mut T { - return _empty_slice(T, 0) + return empty_slice(T, 0) } alloc func($T type, allocator Allocator, count usize) []mut T ! AllocError { if count == 0 { - return _empty_slice(T, 0) + return empty_slice(T, 0) } element_size usize :: sizeof!(T) if element_size == 0 { - return _empty_slice(T, count) + return empty_slice(T, count) } if count > divtrunc!(maxval!(usize), element_size) { return .out_of_memory @@ -79,12 +79,12 @@ realloc func($T type, allocator Allocator, memory []mut T, new_count usize) []mu } if new_count == 0 { free(allocator, memory) - return _empty_slice(T, 0) + return empty_slice(T, 0) } element_size usize :: sizeof!(T) if element_size == 0 { - return _empty_slice(T, new_count) + return empty_slice(T, new_count) } if new_count > divtrunc!(maxval!(usize), element_size) { return .out_of_memory @@ -116,9 +116,9 @@ free func($T type, allocator Allocator, memory []mut T) void { } } -_malloc_alignment usize :: 16 # ponytail: aarch64-macos libc malloc alignment assumption. +hide malloc_alignment usize :: 16 # ponytail: aarch64-macos libc malloc alignment assumption. -_power_of_two func(value usize) bool { +hide power_of_two func(value usize) bool { if value == 0 { return false } @@ -135,12 +135,12 @@ _power_of_two func(value usize) bool { return true } -_c_alloc func(_ ?*mut anyopaque, size usize, alignment usize) ?*mut u8 { - if _power_of_two(alignment) == false { +hide c_alloc func(_ ?*mut anyopaque, size usize, alignment usize) ?*mut u8 { + if power_of_two(alignment) == false { return none } - if alignment <= _malloc_alignment { + if alignment <= malloc_alignment { return ptrcast!(u8, c.malloc(c_ulong(size))) } @@ -153,8 +153,8 @@ _c_alloc func(_ ?*mut anyopaque, size usize, alignment usize) ?*mut u8 { return ptrcast!(u8, memory[0]) } -_c_realloc func(_ ?*mut anyopaque, memory ?*mut u8, old_size usize, new_size usize, alignment usize) ?*mut u8 { - if _power_of_two(alignment) == false { +hide c_realloc func(_ ?*mut anyopaque, memory ?*mut u8, old_size usize, new_size usize, alignment usize) ?*mut u8 { + if power_of_two(alignment) == false { return none } @@ -164,11 +164,11 @@ _c_realloc func(_ ?*mut anyopaque, memory ?*mut u8, old_size usize, new_size usi } if memory |old_memory| { - if alignment <= _malloc_alignment { + if alignment <= malloc_alignment { return ptrcast!(u8, c.realloc(old_memory, c_ulong(new_size))) } - new_memory ?*mut u8 = _c_alloc(none, new_size, alignment) + new_memory ?*mut u8 = c_alloc(none, new_size, alignment) if new_memory |new_bytes| { copy_size usize = old_size if new_size < copy_size { @@ -183,20 +183,20 @@ _c_realloc func(_ ?*mut anyopaque, memory ?*mut u8, old_size usize, new_size usi return new_memory } - return _c_alloc(none, new_size, alignment) + return c_alloc(none, new_size, alignment) } -_c_free func(_ ?*mut anyopaque, memory ?*mut u8, _ usize, _ usize) void { +hide c_free func(_ ?*mut anyopaque, memory ?*mut u8, _ usize, _ usize) void { c.free(memory) } -_c_vtable AllocatorVTable :: AllocatorVTable { - alloc = _c_alloc, - realloc = _c_realloc, - free = _c_free, +hide c_vtable AllocatorVTable :: AllocatorVTable { + alloc = c_alloc, + realloc = c_realloc, + free = c_free, } c_allocator Allocator :: Allocator { context = none, - vtable = &_c_vtable, + vtable = &c_vtable, } diff --git a/testbed/mem_alloc/std/mem/mem.bro b/testbed/mem_alloc/std/mem/mem.bro index f48ce91..7bc07b6 100644 --- a/testbed/mem_alloc/std/mem/mem.bro +++ b/testbed/mem_alloc/std/mem/mem.bro @@ -27,21 +27,21 @@ raw_free func(allocator Allocator, memory ?*mut u8, size usize, alignment usize) allocator.vtable.free(allocator.context, memory, size, alignment) } -_empty_storage [1]mut u64 = [0] +hide empty_storage [1]mut u64 = [0] -_empty_slice func($T type, count usize) []mut T { - pointer *mut T :: ptrcast!(T, (&_empty_storage).ptr) +hide empty_slice func($T type, count usize) []mut T { + pointer *mut T :: ptrcast!(T, (&empty_storage).ptr) return pointer[..count] } alloc func($T type, allocator Allocator, count usize) []mut T ! AllocError { if count == 0 { - return _empty_slice(T, 0) + return empty_slice(T, 0) } element_size usize :: sizeof!(T) if element_size == 0 { - return _empty_slice(T, count) + return empty_slice(T, count) } if count > maxval!(usize) / element_size { return .out_of_memory @@ -61,9 +61,9 @@ free func($T type, allocator Allocator, memory []mut T) void { } } -_malloc_alignment usize :: 16 # ponytail: aarch64-macos libc malloc alignment assumption. +hide malloc_alignment usize :: 16 # ponytail: aarch64-macos libc malloc alignment assumption. -_power_of_two func(value usize) bool { +hide power_of_two func(value usize) bool { if value == 0 { return false } @@ -80,12 +80,12 @@ _power_of_two func(value usize) bool { return true } -_c_alloc func(_ ?*mut anyopaque, size usize, alignment usize) ?*mut u8 { - if _power_of_two(alignment) == false { +hide c_alloc func(_ ?*mut anyopaque, size usize, alignment usize) ?*mut u8 { + if power_of_two(alignment) == false { return none } - if alignment <= _malloc_alignment { + if alignment <= malloc_alignment { return ptrcast!(u8, c.malloc(c_ulong(size))) } @@ -98,8 +98,8 @@ _c_alloc func(_ ?*mut anyopaque, size usize, alignment usize) ?*mut u8 { return ptrcast!(u8, memory[0]) } -_c_realloc func(_ ?*mut anyopaque, memory ?*mut u8, old_size usize, new_size usize, alignment usize) ?*mut u8 { - if _power_of_two(alignment) == false { +hide c_realloc func(_ ?*mut anyopaque, memory ?*mut u8, old_size usize, new_size usize, alignment usize) ?*mut u8 { + if power_of_two(alignment) == false { return none } @@ -109,11 +109,11 @@ _c_realloc func(_ ?*mut anyopaque, memory ?*mut u8, old_size usize, new_size usi } if memory |old_memory| { - if alignment <= _malloc_alignment { + if alignment <= malloc_alignment { return ptrcast!(u8, c.realloc(old_memory, c_ulong(new_size))) } - new_memory ?*mut u8 = _c_alloc(none, new_size, alignment) + new_memory ?*mut u8 = c_alloc(none, new_size, alignment) if new_memory |new_bytes| { copy_size usize = old_size if new_size < copy_size { @@ -128,20 +128,20 @@ _c_realloc func(_ ?*mut anyopaque, memory ?*mut u8, old_size usize, new_size usi return new_memory } - return _c_alloc(none, new_size, alignment) + return c_alloc(none, new_size, alignment) } -_c_free func(_ ?*mut anyopaque, memory ?*mut u8, _ usize, _ usize) void { +hide c_free func(_ ?*mut anyopaque, memory ?*mut u8, _ usize, _ usize) void { c.free(memory) } -_c_vtable AllocatorVTable :: AllocatorVTable { - alloc = _c_alloc, - realloc = _c_realloc, - free = _c_free, +hide c_vtable AllocatorVTable :: AllocatorVTable { + alloc = c_alloc, + realloc = c_realloc, + free = c_free, } c_allocator Allocator :: Allocator { context = none, - vtable = &_c_vtable, + vtable = &c_vtable, } diff --git a/tree-sitter-brolang/grammar.js b/tree-sitter-brolang/grammar.js index f7d5928..c6b0bab 100644 --- a/tree-sitter-brolang/grammar.js +++ b/tree-sitter-brolang/grammar.js @@ -51,6 +51,7 @@ module.exports = grammar({ ), function_declaration: $ => seq( + optional('hide'), field('name', $.identifier), field('kind', choice('func', 'c_func')), field('parameters', $.parameter_list), @@ -64,6 +65,7 @@ module.exports = grammar({ ), type_declaration: $ => prec(1, seq( + optional('hide'), field('name', $.identifier), '::', repeat($._newline), @@ -79,6 +81,7 @@ module.exports = grammar({ )), global_constant_declaration: $ => seq( + optional('hide'), field('name', $.identifier), optional(field('type', $.type)), '::', @@ -87,6 +90,7 @@ module.exports = grammar({ ), global_variable_declaration: $ => seq( + optional('hide'), field('name', $.identifier), optional(field('type', $.type)), '=', diff --git a/tree-sitter-brolang/queries/highlights.scm b/tree-sitter-brolang/queries/highlights.scm index c2464d9..86ac1d3 100644 --- a/tree-sitter-brolang/queries/highlights.scm +++ b/tree-sitter-brolang/queries/highlights.scm @@ -60,6 +60,7 @@ "distinct" "alias" "import" + "hide" "return" "try" "catch" diff --git a/tree-sitter-brolang/src/grammar.json b/tree-sitter-brolang/src/grammar.json index e27c249..5d0b75f 100644 --- a/tree-sitter-brolang/src/grammar.json +++ b/tree-sitter-brolang/src/grammar.json @@ -103,6 +103,18 @@ "function_declaration": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "hide" + }, + { + "type": "BLANK" + } + ] + }, { "type": "FIELD", "name": "name", @@ -225,6 +237,18 @@ "content": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "hide" + }, + { + "type": "BLANK" + } + ] + }, { "type": "FIELD", "name": "name", @@ -287,6 +311,18 @@ "global_constant_declaration": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "hide" + }, + { + "type": "BLANK" + } + ] + }, { "type": "FIELD", "name": "name", @@ -335,6 +371,18 @@ "global_variable_declaration": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "hide" + }, + { + "type": "BLANK" + } + ] + }, { "type": "FIELD", "name": "name", diff --git a/tree-sitter-brolang/src/node-types.json b/tree-sitter-brolang/src/node-types.json index 3f61e5a..2eba3e5 100644 --- a/tree-sitter-brolang/src/node-types.json +++ b/tree-sitter-brolang/src/node-types.json @@ -2576,6 +2576,10 @@ "type": "func", "named": false }, + { + "type": "hide", + "named": false + }, { "type": "i16", "named": false diff --git a/tree-sitter-brolang/src/parser.c b/tree-sitter-brolang/src/parser.c index a8d9de6..055cbb5 100644 --- a/tree-sitter-brolang/src/parser.c +++ b/tree-sitter-brolang/src/parser.c @@ -7,218 +7,219 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 2192 -#define LARGE_STATE_COUNT 1252 -#define SYMBOL_COUNT 200 +#define STATE_COUNT 2236 +#define LARGE_STATE_COUNT 1260 +#define SYMBOL_COUNT 201 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 111 +#define TOKEN_COUNT 112 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 38 #define MAX_ALIAS_SEQUENCE_LENGTH 15 #define MAX_RESERVED_WORD_SET_SIZE 0 -#define PRODUCTION_ID_COUNT 318 +#define PRODUCTION_ID_COUNT 334 #define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { sym_identifier = 1, anon_sym_COLON_COLON = 2, anon_sym_import = 3, - anon_sym_func = 4, - anon_sym_c_func = 5, - anon_sym_BANG = 6, - anon_sym_EQ = 7, - anon_sym_struct = 8, - anon_sym_c_struct = 9, - sym_opaque_type = 10, - anon_sym_distinct = 11, - anon_sym_alias = 12, - anon_sym_union = 13, - anon_sym_LPAREN = 14, - anon_sym_enum = 15, - anon_sym_RPAREN = 16, - anon_sym_LBRACE = 17, - anon_sym_COMMA = 18, - anon_sym_RBRACE = 19, - anon_sym_DASH = 20, - anon_sym_DOT_DOT_DOT = 21, - anon_sym_DOLLAR = 22, - anon_sym_PIPE = 23, - anon_sym_QMARK = 24, - anon_sym_AT = 25, - anon_sym_STAR = 26, - anon_sym_mut = 27, - anon_sym_LBRACK = 28, - anon_sym_SEMI = 29, - anon_sym_RBRACK = 30, - anon_sym_void = 31, - anon_sym_anyopaque = 32, - anon_sym_bool = 33, - anon_sym_int = 34, - anon_sym_float = 35, - anon_sym_range = 36, - anon_sym_i8 = 37, - anon_sym_i16 = 38, - anon_sym_i32 = 39, - anon_sym_i64 = 40, - anon_sym_u8 = 41, - anon_sym_u16 = 42, - anon_sym_u32 = 43, - anon_sym_u64 = 44, - anon_sym_isize = 45, - anon_sym_usize = 46, - anon_sym_f32 = 47, - anon_sym_f64 = 48, - anon_sym_c_char = 49, - anon_sym_c_schar = 50, - anon_sym_c_uchar = 51, - anon_sym_c_short = 52, - anon_sym_c_ushort = 53, - anon_sym_c_int = 54, - anon_sym_c_uint = 55, - anon_sym_c_long = 56, - anon_sym_c_ulong = 57, - anon_sym_c_longlong = 58, - anon_sym_c_ulonglong = 59, - anon_sym_c_float = 60, - anon_sym_c_double = 61, - anon_sym_c_longdouble = 62, - anon_sym_PLUS_EQ = 63, - anon_sym_DASH_EQ = 64, - anon_sym_STAR_EQ = 65, - anon_sym_SLASH_EQ = 66, - anon_sym_return = 67, - anon_sym_yield = 68, - anon_sym_COLON = 69, - anon_sym_break = 70, - anon_sym_continue = 71, - anon_sym_defer = 72, - anon_sym_errdefer = 73, - anon_sym_if = 74, - anon_sym_else = 75, - anon_sym_while = 76, - anon_sym_for = 77, - anon_sym_match = 78, - anon_sym_DOT_DOT = 79, - anon_sym_DOT_DOT_EQ = 80, - anon_sym_orelse = 81, - anon_sym_catch = 82, - anon_sym_or = 83, - anon_sym_and = 84, - anon_sym_EQ_EQ = 85, - anon_sym_BANG_EQ = 86, - anon_sym_LT = 87, - anon_sym_LT_EQ = 88, - anon_sym_GT = 89, - anon_sym_GT_EQ = 90, - anon_sym_PLUS = 91, - anon_sym_SLASH = 92, - anon_sym_AMP = 93, - anon_sym_try = 94, - anon_sym_DOT = 95, - anon_sym_CARET = 96, - anon_sym_true = 97, - anon_sym_false = 98, - sym_none = 99, - sym_undefined = 100, - sym_sink = 101, - sym_integer = 102, - sym_float = 103, - anon_sym_DQUOTE = 104, - sym_string_content = 105, - sym_escape_sequence = 106, - sym_multiline_string = 107, - sym_character = 108, - sym_comment = 109, - sym__newline = 110, - sym_source_file = 111, - sym__top_level_declaration = 112, - sym_import_declaration = 113, - sym_function_declaration = 114, - sym_type_declaration = 115, - sym_global_constant_declaration = 116, - sym_global_variable_declaration = 117, - sym_struct_type = 118, - sym_c_struct_type = 119, - sym_distinct_type = 120, - sym_alias_type = 121, - sym_union_type = 122, - sym_enum_type = 123, - sym_record_body = 124, - sym_record_field = 125, - sym_enum_body = 126, - sym_enum_member = 127, - sym_parameter_list = 128, - sym_parameter = 129, - sym_type = 130, - sym__type_atom = 131, - sym_named_type = 132, - sym_optional_type = 133, - sym_pointer_type = 134, - sym_array_type = 135, - sym_function_type = 136, - sym__error_type = 137, - sym__type_constant = 138, - sym_builtin_type = 139, - sym_block = 140, - sym_statement = 141, - sym_constant_declaration = 142, - sym_variable_declaration = 143, - sym_assignment_statement = 144, - sym_expression_statement = 145, - sym_return_statement = 146, - sym_yield_statement = 147, - sym_break_statement = 148, - sym_continue_statement = 149, - sym_defer_statement = 150, - sym_error_capture = 151, - sym_labeled_block = 152, - sym_if_statement = 153, - sym_capture_list = 154, - sym_while_statement = 155, - sym_for_statement = 156, - sym_match_statement = 157, - sym_match_arm = 158, - sym_match_capture = 159, - sym__branch_body = 160, - sym__value = 161, - sym_expression = 162, - sym_binary_expression = 163, - sym_catch_expression = 164, - sym_unary_expression = 165, - sym_field_expression = 166, - 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, + anon_sym_hide = 4, + anon_sym_func = 5, + anon_sym_c_func = 6, + anon_sym_BANG = 7, + anon_sym_EQ = 8, + anon_sym_struct = 9, + anon_sym_c_struct = 10, + sym_opaque_type = 11, + anon_sym_distinct = 12, + anon_sym_alias = 13, + anon_sym_union = 14, + anon_sym_LPAREN = 15, + anon_sym_enum = 16, + anon_sym_RPAREN = 17, + anon_sym_LBRACE = 18, + anon_sym_COMMA = 19, + anon_sym_RBRACE = 20, + anon_sym_DASH = 21, + anon_sym_DOT_DOT_DOT = 22, + anon_sym_DOLLAR = 23, + anon_sym_PIPE = 24, + anon_sym_QMARK = 25, + anon_sym_AT = 26, + anon_sym_STAR = 27, + anon_sym_mut = 28, + anon_sym_LBRACK = 29, + anon_sym_SEMI = 30, + anon_sym_RBRACK = 31, + anon_sym_void = 32, + anon_sym_anyopaque = 33, + anon_sym_bool = 34, + anon_sym_int = 35, + anon_sym_float = 36, + anon_sym_range = 37, + anon_sym_i8 = 38, + anon_sym_i16 = 39, + anon_sym_i32 = 40, + anon_sym_i64 = 41, + anon_sym_u8 = 42, + anon_sym_u16 = 43, + anon_sym_u32 = 44, + anon_sym_u64 = 45, + anon_sym_isize = 46, + anon_sym_usize = 47, + anon_sym_f32 = 48, + anon_sym_f64 = 49, + anon_sym_c_char = 50, + anon_sym_c_schar = 51, + anon_sym_c_uchar = 52, + anon_sym_c_short = 53, + anon_sym_c_ushort = 54, + anon_sym_c_int = 55, + anon_sym_c_uint = 56, + anon_sym_c_long = 57, + anon_sym_c_ulong = 58, + anon_sym_c_longlong = 59, + anon_sym_c_ulonglong = 60, + anon_sym_c_float = 61, + anon_sym_c_double = 62, + anon_sym_c_longdouble = 63, + anon_sym_PLUS_EQ = 64, + anon_sym_DASH_EQ = 65, + anon_sym_STAR_EQ = 66, + anon_sym_SLASH_EQ = 67, + anon_sym_return = 68, + anon_sym_yield = 69, + anon_sym_COLON = 70, + anon_sym_break = 71, + anon_sym_continue = 72, + anon_sym_defer = 73, + anon_sym_errdefer = 74, + anon_sym_if = 75, + anon_sym_else = 76, + anon_sym_while = 77, + anon_sym_for = 78, + anon_sym_match = 79, + anon_sym_DOT_DOT = 80, + anon_sym_DOT_DOT_EQ = 81, + anon_sym_orelse = 82, + anon_sym_catch = 83, + anon_sym_or = 84, + anon_sym_and = 85, + anon_sym_EQ_EQ = 86, + anon_sym_BANG_EQ = 87, + anon_sym_LT = 88, + anon_sym_LT_EQ = 89, + anon_sym_GT = 90, + anon_sym_GT_EQ = 91, + anon_sym_PLUS = 92, + anon_sym_SLASH = 93, + anon_sym_AMP = 94, + anon_sym_try = 95, + anon_sym_DOT = 96, + anon_sym_CARET = 97, + anon_sym_true = 98, + anon_sym_false = 99, + sym_none = 100, + sym_undefined = 101, + sym_sink = 102, + sym_integer = 103, + sym_float = 104, + anon_sym_DQUOTE = 105, + sym_string_content = 106, + sym_escape_sequence = 107, + sym_multiline_string = 108, + sym_character = 109, + sym_comment = 110, + sym__newline = 111, + sym_source_file = 112, + sym__top_level_declaration = 113, + sym_import_declaration = 114, + sym_function_declaration = 115, + sym_type_declaration = 116, + sym_global_constant_declaration = 117, + sym_global_variable_declaration = 118, + sym_struct_type = 119, + sym_c_struct_type = 120, + sym_distinct_type = 121, + sym_alias_type = 122, + sym_union_type = 123, + sym_enum_type = 124, + sym_record_body = 125, + sym_record_field = 126, + sym_enum_body = 127, + sym_enum_member = 128, + sym_parameter_list = 129, + sym_parameter = 130, + sym_type = 131, + sym__type_atom = 132, + sym_named_type = 133, + sym_optional_type = 134, + sym_pointer_type = 135, + sym_array_type = 136, + sym_function_type = 137, + sym__error_type = 138, + sym__type_constant = 139, + sym_builtin_type = 140, + sym_block = 141, + sym_statement = 142, + sym_constant_declaration = 143, + sym_variable_declaration = 144, + sym_assignment_statement = 145, + sym_expression_statement = 146, + sym_return_statement = 147, + sym_yield_statement = 148, + sym_break_statement = 149, + sym_continue_statement = 150, + sym_defer_statement = 151, + sym_error_capture = 152, + sym_labeled_block = 153, + sym_if_statement = 154, + sym_capture_list = 155, + sym_while_statement = 156, + sym_for_statement = 157, + sym_match_statement = 158, + sym_match_arm = 159, + sym_match_capture = 160, + sym__branch_body = 161, + sym__value = 162, + sym_expression = 163, + sym_binary_expression = 164, + sym_catch_expression = 165, + sym_unary_expression = 166, + sym_field_expression = 167, + sym_intrinsic_call_expression = 168, + sym_call_expression = 169, + sym_argument_list = 170, + sym_index_expression = 171, + sym_slice_expression = 172, + sym_postfix_expression = 173, + sym_struct_literal = 174, + sym_initializer_list = 175, + sym_field_initializer = 176, + sym_enum_literal = 177, + sym_variant_payload = 178, + sym_keyed_field_initializer = 179, + sym_array_literal = 180, + sym_parenthesized_expression = 181, + sym_comptime_block = 182, + sym_function_literal = 183, + sym_qualified_identifier = 184, + sym_boolean = 185, + sym_string = 186, + aux_sym_source_file_repeat1 = 187, + aux_sym_import_declaration_repeat1 = 188, + aux_sym_record_body_repeat1 = 189, + aux_sym_enum_body_repeat1 = 190, + aux_sym_parameter_list_repeat1 = 191, + aux_sym_parameter_repeat1 = 192, + aux_sym_type_repeat1 = 193, + aux_sym_block_repeat1 = 194, + aux_sym_capture_list_repeat1 = 195, + aux_sym_match_statement_repeat1 = 196, + aux_sym_match_arm_repeat1 = 197, + aux_sym_initializer_list_repeat1 = 198, + aux_sym_variant_payload_repeat1 = 199, + aux_sym_string_repeat1 = 200, }; static const char * const ts_symbol_names[] = { @@ -226,6 +227,7 @@ static const char * const ts_symbol_names[] = { [sym_identifier] = "identifier", [anon_sym_COLON_COLON] = "::", [anon_sym_import] = "import", + [anon_sym_hide] = "hide", [anon_sym_func] = "func", [anon_sym_c_func] = "c_func", [anon_sym_BANG] = "!", @@ -429,6 +431,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_identifier] = sym_identifier, [anon_sym_COLON_COLON] = anon_sym_COLON_COLON, [anon_sym_import] = anon_sym_import, + [anon_sym_hide] = anon_sym_hide, [anon_sym_func] = anon_sym_func, [anon_sym_c_func] = anon_sym_c_func, [anon_sym_BANG] = anon_sym_BANG, @@ -644,6 +647,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_hide] = { + .visible = true, + .named = false, + }, [anon_sym_func] = { .visible = true, .named = false, @@ -1520,317 +1527,333 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [4] = {.index = 3, .length = 2}, [5] = {.index = 5, .length = 2}, [6] = {.index = 7, .length = 2}, - [7] = {.index = 9, .length = 1}, - [8] = {.index = 10, .length = 1}, - [9] = {.index = 11, .length = 2}, + [7] = {.index = 9, .length = 2}, + [8] = {.index = 11, .length = 1}, + [9] = {.index = 12, .length = 1}, [10] = {.index = 13, .length = 2}, [11] = {.index = 15, .length = 2}, [12] = {.index = 17, .length = 2}, - [13] = {.index = 19, .length = 1}, - [14] = {.index = 20, .length = 4}, - [15] = {.index = 24, .length = 1}, - [16] = {.index = 25, .length = 2}, - [17] = {.index = 27, .length = 3}, - [18] = {.index = 30, .length = 2}, + [13] = {.index = 19, .length = 2}, + [14] = {.index = 21, .length = 1}, + [15] = {.index = 22, .length = 4}, + [16] = {.index = 26, .length = 1}, + [17] = {.index = 27, .length = 2}, + [18] = {.index = 29, .length = 3}, [19] = {.index = 32, .length = 2}, - [20] = {.index = 34, .length = 1}, - [21] = {.index = 35, .length = 1}, - [22] = {.index = 36, .length = 1}, - [23] = {.index = 37, .length = 2}, - [24] = {.index = 39, .length = 2}, - [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 = 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 = 3}, - [96] = {.index = 208, .length = 2}, - [97] = {.index = 210, .length = 3}, - [98] = {.index = 213, .length = 3}, - [99] = {.index = 216, .length = 3}, - [100] = {.index = 219, .length = 3}, - [101] = {.index = 222, .length = 3}, - [102] = {.index = 225, .length = 3}, - [103] = {.index = 228, .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 = 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 = 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}, - [131] = {.index = 312, .length = 3}, - [132] = {.index = 315, .length = 3}, - [133] = {.index = 318, .length = 3}, - [134] = {.index = 321, .length = 3}, - [135] = {.index = 324, .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 = 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 = 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 = 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 = 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 = 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 = 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 = 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 = 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}, + [20] = {.index = 34, .length = 4}, + [21] = {.index = 38, .length = 3}, + [22] = {.index = 41, .length = 2}, + [23] = {.index = 43, .length = 2}, + [24] = {.index = 45, .length = 1}, + [25] = {.index = 46, .length = 1}, + [26] = {.index = 47, .length = 1}, + [27] = {.index = 48, .length = 2}, + [28] = {.index = 50, .length = 2}, + [29] = {.index = 52, .length = 3}, + [30] = {.index = 55, .length = 1}, + [31] = {.index = 56, .length = 3}, + [32] = {.index = 59, .length = 2}, + [33] = {.index = 61, .length = 2}, + [34] = {.index = 63, .length = 2}, + [35] = {.index = 65, .length = 2}, + [36] = {.index = 67, .length = 5}, + [37] = {.index = 72, .length = 1}, + [38] = {.index = 73, .length = 4}, + [39] = {.index = 77, .length = 1}, + [40] = {.index = 78, .length = 2}, + [41] = {.index = 80, .length = 3}, + [42] = {.index = 83, .length = 5}, + [43] = {.index = 88, .length = 4}, + [44] = {.index = 92, .length = 3}, + [45] = {.index = 95, .length = 2}, + [46] = {.index = 97, .length = 1}, + [47] = {.index = 98, .length = 1}, + [48] = {.index = 99, .length = 2}, + [49] = {.index = 101, .length = 2}, + [50] = {.index = 103, .length = 2}, + [51] = {.index = 105, .length = 2}, + [52] = {.index = 107, .length = 2}, + [53] = {.index = 109, .length = 1}, + [54] = {.index = 110, .length = 3}, + [55] = {.index = 113, .length = 1}, + [56] = {.index = 114, .length = 2}, + [57] = {.index = 116, .length = 2}, + [58] = {.index = 118, .length = 2}, + [59] = {.index = 120, .length = 2}, + [60] = {.index = 122, .length = 3}, + [61] = {.index = 125, .length = 2}, + [62] = {.index = 127, .length = 2}, + [63] = {.index = 129, .length = 5}, + [64] = {.index = 134, .length = 5}, + [65] = {.index = 139, .length = 5}, + [66] = {.index = 144, .length = 2}, + [67] = {.index = 146, .length = 2}, + [68] = {.index = 148, .length = 1}, + [69] = {.index = 149, .length = 2}, + [70] = {.index = 151, .length = 5}, + [71] = {.index = 156, .length = 5}, + [72] = {.index = 161, .length = 5}, + [73] = {.index = 166, .length = 2}, + [74] = {.index = 168, .length = 2}, + [75] = {.index = 170, .length = 1}, + [76] = {.index = 171, .length = 2}, + [77] = {.index = 173, .length = 2}, + [78] = {.index = 175, .length = 2}, + [79] = {.index = 177, .length = 2}, + [80] = {.index = 179, .length = 3}, + [81] = {.index = 182, .length = 2}, + [82] = {.index = 184, .length = 3}, + [83] = {.index = 187, .length = 3}, + [84] = {.index = 190, .length = 2}, + [85] = {.index = 192, .length = 1}, + [86] = {.index = 193, .length = 2}, + [87] = {.index = 195, .length = 2}, + [88] = {.index = 197, .length = 2}, + [89] = {.index = 199, .length = 3}, + [90] = {.index = 202, .length = 1}, + [91] = {.index = 203, .length = 6}, + [92] = {.index = 209, .length = 2}, + [93] = {.index = 211, .length = 5}, + [94] = {.index = 216, .length = 5}, + [95] = {.index = 221, .length = 2}, + [96] = {.index = 223, .length = 2}, + [97] = {.index = 225, .length = 3}, + [98] = {.index = 228, .length = 2}, + [99] = {.index = 230, .length = 2}, + [100] = {.index = 232, .length = 1}, + [101] = {.index = 233, .length = 6}, + [102] = {.index = 239, .length = 5}, + [103] = {.index = 244, .length = 5}, + [104] = {.index = 249, .length = 3}, + [105] = {.index = 252, .length = 2}, + [106] = {.index = 254, .length = 2}, + [107] = {.index = 256, .length = 3}, + [108] = {.index = 259, .length = 3}, + [109] = {.index = 262, .length = 2}, + [110] = {.index = 264, .length = 3}, + [111] = {.index = 267, .length = 3}, + [112] = {.index = 270, .length = 3}, + [113] = {.index = 273, .length = 3}, + [114] = {.index = 276, .length = 3}, + [115] = {.index = 279, .length = 3}, + [116] = {.index = 282, .length = 3}, + [117] = {.index = 285, .length = 3}, + [118] = {.index = 288, .length = 2}, + [119] = {.index = 290, .length = 3}, + [120] = {.index = 293, .length = 2}, + [121] = {.index = 295, .length = 2}, + [122] = {.index = 297, .length = 3}, + [123] = {.index = 300, .length = 6}, + [124] = {.index = 306, .length = 6}, + [125] = {.index = 312, .length = 2}, + [126] = {.index = 314, .length = 2}, + [127] = {.index = 316, .length = 3}, + [128] = {.index = 319, .length = 2}, + [129] = {.index = 321, .length = 3}, + [130] = {.index = 324, .length = 2}, + [131] = {.index = 326, .length = 6}, + [132] = {.index = 332, .length = 6}, + [133] = {.index = 338, .length = 3}, + [134] = {.index = 341, .length = 3}, + [135] = {.index = 344, .length = 1}, + [136] = {.index = 345, .length = 3}, + [137] = {.index = 348, .length = 3}, + [138] = {.index = 351, .length = 3}, + [139] = {.index = 354, .length = 3}, + [140] = {.index = 357, .length = 3}, + [141] = {.index = 360, .length = 5}, + [142] = {.index = 365, .length = 4}, + [143] = {.index = 369, .length = 3}, + [144] = {.index = 372, .length = 3}, + [145] = {.index = 375, .length = 3}, + [146] = {.index = 378, .length = 3}, + [147] = {.index = 381, .length = 3}, + [148] = {.index = 384, .length = 3}, + [149] = {.index = 387, .length = 3}, + [150] = {.index = 390, .length = 3}, + [151] = {.index = 393, .length = 3}, + [152] = {.index = 396, .length = 2}, + [153] = {.index = 398, .length = 3}, + [154] = {.index = 401, .length = 3}, + [155] = {.index = 404, .length = 3}, + [156] = {.index = 407, .length = 6}, + [157] = {.index = 413, .length = 2}, + [158] = {.index = 415, .length = 3}, + [159] = {.index = 418, .length = 2}, + [160] = {.index = 420, .length = 3}, + [161] = {.index = 423, .length = 6}, + [162] = {.index = 429, .length = 3}, + [163] = {.index = 432, .length = 1}, + [164] = {.index = 433, .length = 3}, + [165] = {.index = 436, .length = 3}, + [166] = {.index = 439, .length = 3}, + [167] = {.index = 442, .length = 3}, + [168] = {.index = 445, .length = 3}, + [169] = {.index = 448, .length = 5}, + [170] = {.index = 453, .length = 6}, + [171] = {.index = 459, .length = 4}, + [172] = {.index = 463, .length = 4}, + [173] = {.index = 467, .length = 5}, + [174] = {.index = 472, .length = 4}, + [175] = {.index = 476, .length = 5}, + [176] = {.index = 481, .length = 4}, + [177] = {.index = 485, .length = 3}, + [178] = {.index = 488, .length = 3}, + [179] = {.index = 491, .length = 3}, + [180] = {.index = 494, .length = 4}, + [181] = {.index = 498, .length = 4}, + [182] = {.index = 502, .length = 3}, + [183] = {.index = 505, .length = 3}, + [184] = {.index = 508, .length = 3}, + [185] = {.index = 511, .length = 2}, + [186] = {.index = 513, .length = 3}, + [187] = {.index = 516, .length = 2}, + [188] = {.index = 518, .length = 3}, + [189] = {.index = 521, .length = 3}, + [190] = {.index = 524, .length = 3}, + [191] = {.index = 527, .length = 3}, + [192] = {.index = 530, .length = 6}, + [193] = {.index = 536, .length = 6}, + [194] = {.index = 542, .length = 7}, + [195] = {.index = 549, .length = 4}, + [196] = {.index = 553, .length = 5}, + [197] = {.index = 558, .length = 6}, + [198] = {.index = 564, .length = 4}, + [199] = {.index = 568, .length = 4}, + [200] = {.index = 572, .length = 5}, + [201] = {.index = 577, .length = 6}, + [202] = {.index = 583, .length = 4}, + [203] = {.index = 587, .length = 4}, + [204] = {.index = 591, .length = 5}, + [205] = {.index = 596, .length = 4}, + [206] = {.index = 600, .length = 4}, + [207] = {.index = 604, .length = 4}, + [208] = {.index = 608, .length = 4}, + [209] = {.index = 612, .length = 4}, + [210] = {.index = 616, .length = 4}, + [211] = {.index = 620, .length = 3}, + [212] = {.index = 623, .length = 3}, + [213] = {.index = 626, .length = 4}, + [214] = {.index = 630, .length = 4}, + [215] = {.index = 634, .length = 3}, + [216] = {.index = 637, .length = 3}, + [217] = {.index = 640, .length = 3}, + [218] = {.index = 643, .length = 6}, + [219] = {.index = 649, .length = 6}, + [220] = {.index = 655, .length = 7}, + [221] = {.index = 662, .length = 7}, + [222] = {.index = 669, .length = 6}, + [223] = {.index = 675, .length = 6}, + [224] = {.index = 681, .length = 7}, + [225] = {.index = 688, .length = 4}, + [226] = {.index = 692, .length = 6}, + [227] = {.index = 698, .length = 6}, + [228] = {.index = 704, .length = 7}, + [229] = {.index = 711, .length = 4}, + [230] = {.index = 715, .length = 5}, + [231] = {.index = 720, .length = 6}, + [232] = {.index = 726, .length = 4}, + [233] = {.index = 730, .length = 4}, + [234] = {.index = 734, .length = 4}, + [235] = {.index = 738, .length = 4}, + [236] = {.index = 742, .length = 4}, + [237] = {.index = 746, .length = 5}, + [238] = {.index = 751, .length = 4}, + [239] = {.index = 755, .length = 4}, + [240] = {.index = 759, .length = 4}, + [241] = {.index = 763, .length = 4}, + [242] = {.index = 767, .length = 4}, + [243] = {.index = 771, .length = 4}, + [244] = {.index = 775, .length = 4}, + [245] = {.index = 779, .length = 4}, + [246] = {.index = 783, .length = 3}, + [247] = {.index = 786, .length = 6}, + [248] = {.index = 792, .length = 7}, + [249] = {.index = 799, .length = 7}, + [250] = {.index = 806, .length = 8}, + [251] = {.index = 814, .length = 6}, + [252] = {.index = 820, .length = 6}, + [253] = {.index = 826, .length = 7}, + [254] = {.index = 833, .length = 7}, + [255] = {.index = 840, .length = 6}, + [256] = {.index = 846, .length = 6}, + [257] = {.index = 852, .length = 7}, + [258] = {.index = 859, .length = 7}, + [259] = {.index = 866, .length = 6}, + [260] = {.index = 872, .length = 6}, + [261] = {.index = 878, .length = 7}, + [262] = {.index = 885, .length = 4}, + [263] = {.index = 889, .length = 5}, + [264] = {.index = 894, .length = 4}, + [265] = {.index = 898, .length = 5}, + [266] = {.index = 903, .length = 5}, + [267] = {.index = 908, .length = 4}, + [268] = {.index = 912, .length = 4}, + [269] = {.index = 916, .length = 4}, + [270] = {.index = 920, .length = 4}, + [271] = {.index = 924, .length = 4}, + [272] = {.index = 928, .length = 4}, + [273] = {.index = 932, .length = 5}, + [274] = {.index = 937, .length = 4}, + [275] = {.index = 941, .length = 4}, + [276] = {.index = 945, .length = 4}, + [277] = {.index = 949, .length = 7}, + [278] = {.index = 956, .length = 8}, + [279] = {.index = 964, .length = 8}, + [280] = {.index = 972, .length = 6}, + [281] = {.index = 978, .length = 7}, + [282] = {.index = 985, .length = 7}, + [283] = {.index = 992, .length = 8}, + [284] = {.index = 1000, .length = 6}, + [285] = {.index = 1006, .length = 7}, + [286] = {.index = 1013, .length = 7}, + [287] = {.index = 1020, .length = 8}, + [288] = {.index = 1028, .length = 6}, + [289] = {.index = 1034, .length = 6}, + [290] = {.index = 1040, .length = 7}, + [291] = {.index = 1047, .length = 7}, + [292] = {.index = 1054, .length = 5}, + [293] = {.index = 1059, .length = 5}, + [294] = {.index = 1064, .length = 5}, + [295] = {.index = 1069, .length = 5}, + [296] = {.index = 1074, .length = 4}, + [297] = {.index = 1078, .length = 5}, + [298] = {.index = 1083, .length = 4}, + [299] = {.index = 1087, .length = 5}, + [300] = {.index = 1092, .length = 5}, + [301] = {.index = 1097, .length = 4}, + [302] = {.index = 1101, .length = 4}, + [303] = {.index = 1105, .length = 4}, + [304] = {.index = 1109, .length = 8}, + [305] = {.index = 1117, .length = 7}, + [306] = {.index = 1124, .length = 8}, + [307] = {.index = 1132, .length = 8}, + [308] = {.index = 1140, .length = 7}, + [309] = {.index = 1147, .length = 8}, + [310] = {.index = 1155, .length = 8}, + [311] = {.index = 1163, .length = 6}, + [312] = {.index = 1169, .length = 7}, + [313] = {.index = 1176, .length = 7}, + [314] = {.index = 1183, .length = 8}, + [315] = {.index = 1191, .length = 5}, + [316] = {.index = 1196, .length = 5}, + [317] = {.index = 1201, .length = 5}, + [318] = {.index = 1206, .length = 5}, + [319] = {.index = 1211, .length = 5}, + [320] = {.index = 1216, .length = 5}, + [321] = {.index = 1221, .length = 5}, + [322] = {.index = 1226, .length = 4}, + [323] = {.index = 1230, .length = 8}, + [324] = {.index = 1238, .length = 8}, + [325] = {.index = 1246, .length = 7}, + [326] = {.index = 1253, .length = 8}, + [327] = {.index = 1261, .length = 8}, + [328] = {.index = 1269, .length = 5}, + [329] = {.index = 1274, .length = 5}, + [330] = {.index = 1279, .length = 5}, + [331] = {.index = 1284, .length = 5}, + [332] = {.index = 1289, .length = 8}, + [333] = {.index = 1297, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -1844,644 +1867,732 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_name, 0}, {field_value, 2}, [5] = + {field_name, 1}, + {field_value, 3}, + [7] = {field_alias, 0}, {field_path, 3}, - [7] = + [9] = {field_operand, 1}, {field_operator, 0}, - [9] = - {field_type, 1}, - [10] = - {field_name, 1}, [11] = + {field_type, 1}, + [12] = + {field_name, 1}, + [13] = {field_operator, 1}, {field_value, 0}, - [13] = + [15] = {field_arguments, 1}, {field_function, 0}, - [15] = + [17] = {field_fields, 1}, {field_type, 0}, - [17] = + [19] = {field_name, 0}, {field_value, 3}, - [19] = + [21] = {field_result, 2}, - [20] = + [22] = {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 3}, - [24] = + [26] = {field_element, 2}, - [25] = + [27] = {field_name, 2}, {field_qualifier, 0}, - [27] = + [29] = {field_name, 0}, {field_type, 1}, {field_value, 3}, - [30] = + [32] = + {field_name, 1}, + {field_value, 4}, + [34] = + {field_kind, 2}, + {field_name, 1}, + {field_parameters, 3}, + {field_result, 4}, + [38] = + {field_name, 1}, + {field_type, 2}, + {field_value, 4}, + [41] = {field_alias, 0}, {field_path, 4}, - [32] = + [43] = {field_operand, 2}, {field_operator, 0}, - [34] = + [45] = {field_name, 0}, - [35] = + [46] = {field_value, 1}, - [36] = + [47] = {field_body, 1}, - [37] = + [48] = {field_condition, 1}, {field_consequence, 2}, - [39] = + [50] = {field_body, 2}, {field_condition, 1}, - [41] = + [52] = {field_arguments, 2}, {field_function, 0}, {field_marker, 1}, - [44] = + [55] = {field_label, 0}, - [45] = + [56] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [48] = + [59] = {field_left, 0}, {field_right, 2}, - [50] = + [61] = {field_field, 2}, {field_value, 0}, - [52] = + [63] = {field_fields, 2}, {field_type, 0}, - [54] = + [65] = {field_name, 0}, {field_type, 1}, - [56] = + [67] = {field_body, 4}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 3}, - [61] = + [72] = {field_result, 3}, - [62] = + [73] = {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 4}, - [66] = + [77] = {field_element, 3}, - [67] = + [78] = {field_element, 3}, {field_length, 1}, - [69] = + [80] = {field_name, 0}, {field_type, 1}, {field_value, 4}, - [72] = + [83] = + {field_body, 5}, + {field_kind, 2}, + {field_name, 1}, + {field_parameters, 3}, + {field_result, 4}, + [88] = + {field_kind, 2}, + {field_name, 1}, + {field_parameters, 3}, + {field_result, 5}, + [92] = + {field_name, 1}, + {field_type, 2}, + {field_value, 5}, + [95] = {field_body, 3}, {field_result, 2}, - [74] = + [97] = {field_label, 2}, - [75] = + [98] = {field_body, 2}, - [76] = + [99] = {field_body, 2}, {field_capture, 1}, - [78] = + [101] = {field_condition, 1}, {field_consequence, 3}, - [80] = + [103] = {field_condition, 2}, {field_consequence, 3}, - [82] = + [105] = {field_body, 3}, {field_condition, 1}, - [84] = + [107] = {field_body, 3}, {field_condition, 2}, - [86] = + [109] = {field_subject, 1}, - [87] = + [110] = {field_left, 0}, {field_operator, 1}, {field_right, 3}, - [90] = + [113] = {field_value, 0}, - [91] = + [114] = {field_index, 2}, {field_value, 0}, - [93] = + [116] = {field_left, 0}, {field_right, 3}, - [95] = + [118] = {field_alias, 0}, {field_path, 5}, - [97] = + [120] = {field_name, 1}, {field_type, 2}, - [99] = + [122] = {field_name, 0}, {field_name, 1, .inherited = true}, {field_type, 2}, - [102] = + [125] = {field_name, 0, .inherited = true}, {field_name, 1, .inherited = true}, - [104] = + [127] = {field_error, 4}, {field_result, 2}, - [106] = + [129] = {field_error, 5}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 3}, - [111] = + [134] = {field_body, 5}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 3}, - [116] = + [139] = {field_body, 5}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 4}, - [121] = + [144] = {field_element, 4}, {field_sentinel, 2}, - [123] = + [146] = {field_element, 4}, {field_length, 1}, - [125] = + [148] = {field_element, 4}, - [126] = + [149] = {field_element, 4}, {field_length, 2}, - [128] = + [151] = + {field_error, 6}, + {field_kind, 2}, + {field_name, 1}, + {field_parameters, 3}, + {field_result, 4}, + [156] = + {field_body, 6}, + {field_kind, 2}, + {field_name, 1}, + {field_parameters, 3}, + {field_result, 4}, + [161] = + {field_body, 6}, + {field_kind, 2}, + {field_name, 1}, + {field_parameters, 3}, + {field_result, 5}, + [166] = {field_body, 4}, {field_result, 2}, - [130] = + [168] = {field_body, 4}, {field_result, 3}, - [132] = + [170] = {field_backing, 2}, - [133] = + [171] = {field_label, 2}, {field_value, 3}, - [135] = + [173] = {field_body, 3}, {field_capture, 1}, - [137] = + [175] = {field_body, 3}, {field_capture, 2}, - [139] = + [177] = {field_condition, 1}, {field_consequence, 4}, - [141] = + [179] = {field_alternative, 4}, {field_condition, 1}, {field_consequence, 2}, - [144] = + [182] = {field_condition, 2}, {field_consequence, 4}, - [146] = + [184] = {field_body, 4}, {field_condition, 1}, {field_update, 3}, - [149] = + [187] = {field_body, 4}, {field_condition, 1}, {field_label, 2}, - [152] = + [190] = {field_body, 4}, {field_condition, 2}, - [154] = + [192] = {field_subject, 2}, - [155] = + [193] = {field_end, 3}, {field_value, 0}, - [157] = + [195] = {field_start, 2}, {field_value, 0}, - [159] = + [197] = {field_index, 3}, {field_value, 0}, - [161] = + [199] = {field_name, 1}, {field_name, 2, .inherited = true}, {field_type, 3}, - [164] = + [202] = {field_name, 2}, - [165] = + [203] = {field_body, 6}, {field_error, 5}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 3}, - [171] = + [209] = {field_error, 5}, {field_result, 3}, - [173] = + [211] = {field_error, 6}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 4}, - [178] = + [216] = {field_body, 6}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 4}, - [183] = + [221] = {field_element, 5}, {field_sentinel, 3}, - [185] = + [223] = {field_element, 5}, {field_sentinel, 2}, - [187] = + [225] = {field_element, 5}, {field_length, 1}, {field_sentinel, 3}, - [190] = + [228] = {field_element, 5}, {field_length, 1}, - [192] = + [230] = {field_element, 5}, {field_length, 2}, - [194] = + [232] = {field_element, 5}, - [195] = + [233] = + {field_body, 7}, + {field_error, 6}, + {field_kind, 2}, + {field_name, 1}, + {field_parameters, 3}, + {field_result, 4}, + [239] = + {field_error, 7}, + {field_kind, 2}, + {field_name, 1}, + {field_parameters, 3}, + {field_result, 5}, + [244] = + {field_body, 7}, + {field_kind, 2}, + {field_name, 1}, + {field_parameters, 3}, + {field_result, 5}, + [249] = {field_body, 5}, {field_error, 4}, {field_result, 2}, - [198] = + [252] = {field_body, 5}, {field_result, 3}, - [200] = + [254] = {field_body, 4}, {field_capture, 2}, - [202] = + [256] = {field_alternative, 5}, {field_condition, 1}, {field_consequence, 3}, - [205] = + [259] = {field_alternative, 5}, {field_condition, 1}, {field_consequence, 2}, - [208] = + [262] = {field_condition, 2}, {field_consequence, 5}, - [210] = + [264] = {field_alternative, 5}, {field_condition, 2}, {field_consequence, 3}, - [213] = + [267] = {field_body, 5}, {field_condition, 1}, {field_update, 3}, - [216] = + [270] = {field_body, 5}, {field_condition, 1}, {field_update, 4}, - [219] = + [273] = {field_body, 5}, {field_condition, 1}, {field_label, 2}, - [222] = + [276] = {field_body, 5}, {field_condition, 1}, {field_label, 3}, - [225] = + [279] = {field_body, 5}, {field_condition, 2}, {field_update, 4}, - [228] = + [282] = {field_body, 5}, {field_condition, 2}, {field_label, 3}, - [231] = + [285] = {field_body, 5}, {field_item, 3}, {field_iterable, 1}, - [234] = + [288] = {field_body, 2}, {field_pattern, 0}, - [236] = + [290] = {field_end, 4}, {field_start, 2}, {field_value, 0}, - [239] = + [293] = {field_end, 4}, {field_value, 0}, - [241] = + [295] = {field_start, 3}, {field_value, 0}, - [243] = + [297] = {field_body, 5}, {field_name, 3}, {field_value, 0}, - [246] = + [300] = {field_body, 7}, {field_error, 5}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 3}, - [252] = + [306] = {field_body, 7}, {field_error, 6}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 4}, - [258] = + [312] = {field_element, 6}, {field_sentinel, 3}, - [260] = + [314] = {field_element, 6}, {field_sentinel, 2}, - [262] = + [316] = {field_element, 6}, {field_length, 1}, {field_sentinel, 3}, - [265] = + [319] = {field_element, 6}, {field_sentinel, 4}, - [267] = + [321] = {field_element, 6}, {field_length, 2}, {field_sentinel, 4}, - [270] = + [324] = {field_element, 6}, {field_length, 2}, - [272] = + [326] = + {field_body, 8}, + {field_error, 6}, + {field_kind, 2}, + {field_name, 1}, + {field_parameters, 3}, + {field_result, 4}, + [332] = + {field_body, 8}, + {field_error, 7}, + {field_kind, 2}, + {field_name, 1}, + {field_parameters, 3}, + {field_result, 5}, + [338] = {field_body, 6}, {field_error, 4}, {field_result, 2}, - [275] = + [341] = {field_body, 6}, {field_error, 5}, {field_result, 3}, - [278] = + [344] = {field_guard, 3}, - [279] = + [345] = {field_alternative, 6}, {field_condition, 1}, {field_consequence, 3}, - [282] = + [348] = {field_alternative, 6}, {field_condition, 1}, {field_consequence, 4}, - [285] = + [351] = {field_alternative, 6}, {field_condition, 1}, {field_consequence, 2}, - [288] = + [354] = {field_alternative, 6}, {field_condition, 2}, {field_consequence, 4}, - [291] = + [357] = {field_alternative, 6}, {field_condition, 2}, {field_consequence, 3}, - [294] = + [360] = {field_body, 6}, {field_condition, 1}, {field_update, 3}, {field_update, 4}, {field_update, 5}, - [299] = + [365] = {field_body, 6}, {field_condition, 1}, {field_label, 4}, {field_update, 3}, - [303] = + [369] = {field_body, 6}, {field_condition, 1}, {field_update, 4}, - [306] = + [372] = {field_body, 6}, {field_condition, 1}, {field_label, 3}, - [309] = + [375] = {field_body, 6}, {field_condition, 2}, {field_update, 4}, - [312] = + [378] = {field_body, 6}, {field_condition, 2}, {field_update, 5}, - [315] = + [381] = {field_body, 6}, {field_condition, 2}, {field_label, 3}, - [318] = + [384] = {field_body, 6}, {field_condition, 2}, {field_label, 4}, - [321] = + [387] = {field_body, 6}, {field_item, 4}, {field_iterable, 1}, - [324] = + [390] = {field_body, 6}, {field_item, 3}, {field_iterable, 1}, - [327] = + [393] = {field_body, 6}, {field_item, 4}, {field_iterable, 2}, - [330] = + [396] = {field_body, 3}, {field_pattern, 0}, - [332] = + [398] = {field_body, 3}, {field_pattern, 0}, {field_pattern, 1}, - [335] = + [401] = {field_end, 5}, {field_start, 3}, {field_value, 0}, - [338] = + [404] = {field_body, 6}, {field_name, 3}, {field_value, 0}, - [341] = + [407] = {field_body, 8}, {field_error, 6}, {field_kind, 1}, {field_name, 0}, {field_parameters, 2}, {field_result, 4}, - [347] = + [413] = {field_element, 7}, {field_sentinel, 3}, - [349] = + [415] = {field_element, 7}, {field_length, 1}, {field_sentinel, 3}, - [352] = + [418] = {field_element, 7}, {field_sentinel, 4}, - [354] = + [420] = {field_element, 7}, {field_length, 2}, {field_sentinel, 4}, - [357] = + [423] = + {field_body, 9}, + {field_error, 7}, + {field_kind, 2}, + {field_name, 1}, + {field_parameters, 3}, + {field_result, 5}, + [429] = {field_body, 7}, {field_error, 5}, {field_result, 3}, - [360] = + [432] = {field_guard, 4}, - [361] = + [433] = {field_alternative, 7}, {field_condition, 1}, {field_consequence, 3}, - [364] = + [436] = {field_alternative, 7}, {field_condition, 1}, {field_consequence, 4}, - [367] = + [439] = {field_alternative, 7}, {field_condition, 2}, {field_consequence, 4}, - [370] = + [442] = {field_alternative, 7}, {field_condition, 2}, {field_consequence, 5}, - [373] = + [445] = {field_alternative, 7}, {field_condition, 2}, {field_consequence, 3}, - [376] = + [448] = {field_body, 7}, {field_condition, 1}, {field_update, 3}, {field_update, 4}, {field_update, 5}, - [381] = + [453] = {field_body, 7}, {field_condition, 1}, {field_update, 3}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [387] = + [459] = {field_body, 7}, {field_condition, 1}, {field_label, 4}, {field_update, 3}, - [391] = + [463] = {field_body, 7}, {field_condition, 1}, {field_label, 5}, {field_update, 3}, - [395] = + [467] = {field_body, 7}, {field_condition, 1}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [400] = + [472] = {field_body, 7}, {field_condition, 1}, {field_label, 5}, {field_update, 4}, - [404] = + [476] = {field_body, 7}, {field_condition, 2}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [409] = + [481] = {field_body, 7}, {field_condition, 2}, {field_label, 5}, {field_update, 4}, - [413] = + [485] = {field_body, 7}, {field_condition, 2}, {field_update, 5}, - [416] = + [488] = {field_body, 7}, {field_condition, 2}, {field_label, 4}, - [419] = + [491] = {field_body, 7}, {field_item, 4}, {field_iterable, 1}, - [422] = + [494] = {field_body, 7}, {field_index, 5}, {field_item, 3}, {field_iterable, 1}, - [426] = + [498] = {field_body, 7}, {field_item, 3}, {field_iterable, 1}, {field_label, 5}, - [430] = + [502] = {field_body, 7}, {field_item, 5}, {field_iterable, 1}, - [433] = + [505] = {field_body, 7}, {field_item, 5}, {field_iterable, 2}, - [436] = + [508] = {field_body, 7}, {field_item, 4}, {field_iterable, 2}, - [439] = + [511] = {field_body, 4}, {field_pattern, 0}, - [441] = + [513] = {field_body, 4}, {field_pattern, 0}, {field_pattern, 1}, - [444] = + [516] = {field_element, 8}, {field_sentinel, 4}, - [446] = + [518] = {field_element, 8}, {field_length, 2}, {field_sentinel, 4}, - [449] = + [521] = {field_alternative, 8}, {field_condition, 1}, {field_consequence, 4}, - [452] = + [524] = {field_alternative, 8}, {field_condition, 2}, {field_consequence, 4}, - [455] = + [527] = {field_alternative, 8}, {field_condition, 2}, {field_consequence, 5}, - [458] = + [530] = {field_body, 8}, {field_condition, 1}, {field_label, 6}, {field_update, 3}, {field_update, 4}, {field_update, 5}, - [464] = + [536] = {field_body, 8}, {field_condition, 1}, {field_update, 3}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [470] = + [542] = {field_body, 8}, {field_condition, 1}, {field_update, 3}, @@ -2489,303 +2600,303 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [477] = + [549] = {field_body, 8}, {field_condition, 1}, {field_label, 5}, {field_update, 3}, - [481] = + [553] = {field_body, 8}, {field_condition, 1}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [486] = + [558] = {field_body, 8}, {field_condition, 1}, {field_update, 4}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [492] = + [564] = {field_body, 8}, {field_condition, 1}, {field_label, 5}, {field_update, 4}, - [496] = + [568] = {field_body, 8}, {field_condition, 1}, {field_label, 6}, {field_update, 4}, - [500] = + [572] = {field_body, 8}, {field_condition, 2}, {field_update, 4}, {field_update, 5}, {field_update, 6}, - [505] = + [577] = {field_body, 8}, {field_condition, 2}, {field_update, 4}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [511] = + [583] = {field_body, 8}, {field_condition, 2}, {field_label, 5}, {field_update, 4}, - [515] = + [587] = {field_body, 8}, {field_condition, 2}, {field_label, 6}, {field_update, 4}, - [519] = + [591] = {field_body, 8}, {field_condition, 2}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [524] = + [596] = {field_body, 8}, {field_condition, 2}, {field_label, 6}, {field_update, 5}, - [528] = + [600] = {field_body, 8}, {field_index, 6}, {field_item, 4}, {field_iterable, 1}, - [532] = + [604] = {field_body, 8}, {field_item, 4}, {field_iterable, 1}, {field_label, 6}, - [536] = + [608] = {field_body, 8}, {field_index, 5}, {field_item, 3}, {field_iterable, 1}, - [540] = + [612] = {field_body, 8}, {field_item, 3}, {field_iterable, 1}, {field_label, 5}, - [544] = + [616] = {field_body, 8}, {field_item, 3}, {field_iterable, 1}, {field_label, 6}, - [548] = + [620] = {field_body, 8}, {field_item, 5}, {field_iterable, 1}, - [551] = + [623] = {field_body, 8}, {field_item, 5}, {field_iterable, 2}, - [554] = + [626] = {field_body, 8}, {field_index, 6}, {field_item, 4}, {field_iterable, 2}, - [558] = + [630] = {field_body, 8}, {field_item, 4}, {field_iterable, 2}, {field_label, 6}, - [562] = + [634] = {field_body, 8}, {field_item, 6}, {field_iterable, 2}, - [565] = + [637] = {field_body, 5}, {field_pattern, 0}, {field_pattern, 1}, - [568] = + [640] = {field_alternative, 9}, {field_condition, 2}, {field_consequence, 5}, - [571] = - {field_body, 9}, - {field_condition, 1}, - {field_label, 6}, - {field_update, 3}, - {field_update, 4}, - {field_update, 5}, - [577] = - {field_body, 9}, - {field_condition, 1}, - {field_label, 7}, - {field_update, 3}, - {field_update, 4}, - {field_update, 5}, - [583] = - {field_body, 9}, - {field_condition, 1}, - {field_label, 7}, - {field_update, 3}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - [590] = - {field_body, 9}, - {field_condition, 1}, - {field_update, 3}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - [597] = - {field_body, 9}, - {field_condition, 1}, - {field_label, 7}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - [603] = - {field_body, 9}, - {field_condition, 1}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - [609] = - {field_body, 9}, - {field_condition, 1}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - {field_update, 8}, - [616] = - {field_body, 9}, - {field_condition, 1}, - {field_label, 6}, - {field_update, 4}, - [620] = - {field_body, 9}, - {field_condition, 2}, - {field_label, 7}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - [626] = - {field_body, 9}, - {field_condition, 2}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - [632] = - {field_body, 9}, - {field_condition, 2}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - {field_update, 8}, - [639] = - {field_body, 9}, - {field_condition, 2}, - {field_label, 6}, - {field_update, 4}, [643] = {field_body, 9}, - {field_condition, 2}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - [648] = - {field_body, 9}, - {field_condition, 2}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - {field_update, 8}, - [654] = - {field_body, 9}, - {field_condition, 2}, + {field_condition, 1}, {field_label, 6}, + {field_update, 3}, + {field_update, 4}, {field_update, 5}, - [658] = + [649] = {field_body, 9}, - {field_condition, 2}, + {field_condition, 1}, {field_label, 7}, + {field_update, 3}, + {field_update, 4}, {field_update, 5}, + [655] = + {field_body, 9}, + {field_condition, 1}, + {field_label, 7}, + {field_update, 3}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, [662] = {field_body, 9}, - {field_index, 6}, - {field_item, 4}, - {field_iterable, 1}, - [666] = + {field_condition, 1}, + {field_update, 3}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + [669] = {field_body, 9}, - {field_item, 4}, - {field_iterable, 1}, + {field_condition, 1}, + {field_label, 7}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + [675] = + {field_body, 9}, + {field_condition, 1}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + [681] = + {field_body, 9}, + {field_condition, 1}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + {field_update, 8}, + [688] = + {field_body, 9}, + {field_condition, 1}, {field_label, 6}, - [670] = + {field_update, 4}, + [692] = {field_body, 9}, - {field_item, 4}, - {field_iterable, 1}, + {field_condition, 2}, {field_label, 7}, - [674] = + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + [698] = {field_body, 9}, - {field_index, 5}, - {field_item, 3}, - {field_iterable, 1}, - {field_label, 7}, - [679] = + {field_condition, 2}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + [704] = {field_body, 9}, - {field_item, 3}, - {field_iterable, 1}, - {field_label, 6}, - [683] = - {field_body, 9}, - {field_index, 7}, - {field_item, 5}, - {field_iterable, 1}, - [687] = - {field_body, 9}, - {field_item, 5}, - {field_iterable, 1}, - {field_label, 7}, - [691] = - {field_body, 9}, - {field_index, 7}, - {field_item, 5}, - {field_iterable, 2}, - [695] = - {field_body, 9}, - {field_item, 5}, - {field_iterable, 2}, - {field_label, 7}, - [699] = - {field_body, 9}, - {field_index, 6}, - {field_item, 4}, - {field_iterable, 2}, - [703] = - {field_body, 9}, - {field_item, 4}, - {field_iterable, 2}, - {field_label, 6}, - [707] = - {field_body, 9}, - {field_item, 4}, - {field_iterable, 2}, - {field_label, 7}, + {field_condition, 2}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + {field_update, 8}, [711] = + {field_body, 9}, + {field_condition, 2}, + {field_label, 6}, + {field_update, 4}, + [715] = + {field_body, 9}, + {field_condition, 2}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + [720] = + {field_body, 9}, + {field_condition, 2}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + {field_update, 8}, + [726] = + {field_body, 9}, + {field_condition, 2}, + {field_label, 6}, + {field_update, 5}, + [730] = + {field_body, 9}, + {field_condition, 2}, + {field_label, 7}, + {field_update, 5}, + [734] = + {field_body, 9}, + {field_index, 6}, + {field_item, 4}, + {field_iterable, 1}, + [738] = + {field_body, 9}, + {field_item, 4}, + {field_iterable, 1}, + {field_label, 6}, + [742] = + {field_body, 9}, + {field_item, 4}, + {field_iterable, 1}, + {field_label, 7}, + [746] = + {field_body, 9}, + {field_index, 5}, + {field_item, 3}, + {field_iterable, 1}, + {field_label, 7}, + [751] = + {field_body, 9}, + {field_item, 3}, + {field_iterable, 1}, + {field_label, 6}, + [755] = + {field_body, 9}, + {field_index, 7}, + {field_item, 5}, + {field_iterable, 1}, + [759] = + {field_body, 9}, + {field_item, 5}, + {field_iterable, 1}, + {field_label, 7}, + [763] = + {field_body, 9}, + {field_index, 7}, + {field_item, 5}, + {field_iterable, 2}, + [767] = + {field_body, 9}, + {field_item, 5}, + {field_iterable, 2}, + {field_label, 7}, + [771] = + {field_body, 9}, + {field_index, 6}, + {field_item, 4}, + {field_iterable, 2}, + [775] = + {field_body, 9}, + {field_item, 4}, + {field_iterable, 2}, + {field_label, 6}, + [779] = + {field_body, 9}, + {field_item, 4}, + {field_iterable, 2}, + {field_label, 7}, + [783] = {field_body, 9}, {field_item, 6}, {field_iterable, 2}, - [714] = + [786] = {field_body, 10}, {field_condition, 1}, {field_label, 7}, {field_update, 3}, {field_update, 4}, {field_update, 5}, - [720] = + [792] = {field_body, 10}, {field_condition, 1}, {field_label, 7}, @@ -2793,7 +2904,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 4}, {field_update, 5}, {field_update, 6}, - [727] = + [799] = {field_body, 10}, {field_condition, 1}, {field_label, 8}, @@ -2801,177 +2912,177 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 4}, {field_update, 5}, {field_update, 6}, - [734] = - {field_body, 10}, - {field_condition, 1}, - {field_label, 8}, - {field_update, 3}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - [742] = - {field_body, 10}, - {field_condition, 1}, - {field_label, 7}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - [748] = - {field_body, 10}, - {field_condition, 1}, - {field_label, 8}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - [754] = - {field_body, 10}, - {field_condition, 1}, - {field_label, 8}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - [761] = - {field_body, 10}, - {field_condition, 1}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - {field_update, 8}, - [768] = - {field_body, 10}, - {field_condition, 2}, - {field_label, 7}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - [774] = - {field_body, 10}, - {field_condition, 2}, - {field_label, 8}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - [780] = - {field_body, 10}, - {field_condition, 2}, - {field_label, 8}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - [787] = - {field_body, 10}, - {field_condition, 2}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - {field_update, 8}, - [794] = - {field_body, 10}, - {field_condition, 2}, - {field_label, 8}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - [800] = - {field_body, 10}, - {field_condition, 2}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - {field_update, 8}, [806] = {field_body, 10}, - {field_condition, 2}, + {field_condition, 1}, + {field_label, 8}, + {field_update, 3}, + {field_update, 4}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - {field_update, 8}, - {field_update, 9}, - [813] = + [814] = {field_body, 10}, - {field_condition, 2}, + {field_condition, 1}, {field_label, 7}, + {field_update, 4}, {field_update, 5}, - [817] = + {field_update, 6}, + [820] = {field_body, 10}, - {field_index, 6}, - {field_item, 4}, - {field_iterable, 1}, + {field_condition, 1}, {field_label, 8}, - [822] = - {field_body, 10}, - {field_item, 4}, - {field_iterable, 1}, - {field_label, 7}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, [826] = {field_body, 10}, - {field_index, 5}, - {field_item, 3}, - {field_iterable, 1}, - {field_label, 7}, - [831] = - {field_body, 10}, - {field_index, 5}, - {field_item, 3}, - {field_iterable, 1}, + {field_condition, 1}, {field_label, 8}, - [836] = + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + [833] = {field_body, 10}, - {field_index, 7}, - {field_item, 5}, - {field_iterable, 1}, + {field_condition, 1}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + {field_update, 8}, [840] = + {field_body, 10}, + {field_condition, 2}, + {field_label, 7}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + [846] = + {field_body, 10}, + {field_condition, 2}, + {field_label, 8}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + [852] = + {field_body, 10}, + {field_condition, 2}, + {field_label, 8}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + [859] = + {field_body, 10}, + {field_condition, 2}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + {field_update, 8}, + [866] = + {field_body, 10}, + {field_condition, 2}, + {field_label, 8}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + [872] = + {field_body, 10}, + {field_condition, 2}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + {field_update, 8}, + [878] = + {field_body, 10}, + {field_condition, 2}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + {field_update, 8}, + {field_update, 9}, + [885] = + {field_body, 10}, + {field_condition, 2}, + {field_label, 7}, + {field_update, 5}, + [889] = + {field_body, 10}, + {field_index, 6}, + {field_item, 4}, + {field_iterable, 1}, + {field_label, 8}, + [894] = + {field_body, 10}, + {field_item, 4}, + {field_iterable, 1}, + {field_label, 7}, + [898] = + {field_body, 10}, + {field_index, 5}, + {field_item, 3}, + {field_iterable, 1}, + {field_label, 7}, + [903] = + {field_body, 10}, + {field_index, 5}, + {field_item, 3}, + {field_iterable, 1}, + {field_label, 8}, + [908] = + {field_body, 10}, + {field_index, 7}, + {field_item, 5}, + {field_iterable, 1}, + [912] = {field_body, 10}, {field_item, 5}, {field_iterable, 1}, {field_label, 7}, - [844] = + [916] = {field_body, 10}, {field_item, 5}, {field_iterable, 1}, {field_label, 8}, - [848] = + [920] = {field_body, 10}, {field_index, 7}, {field_item, 5}, {field_iterable, 2}, - [852] = + [924] = {field_body, 10}, {field_item, 5}, {field_iterable, 2}, {field_label, 7}, - [856] = + [928] = {field_body, 10}, {field_item, 5}, {field_iterable, 2}, {field_label, 8}, - [860] = + [932] = {field_body, 10}, {field_index, 6}, {field_item, 4}, {field_iterable, 2}, {field_label, 8}, - [865] = + [937] = {field_body, 10}, {field_item, 4}, {field_iterable, 2}, {field_label, 7}, - [869] = + [941] = {field_body, 10}, {field_index, 8}, {field_item, 6}, {field_iterable, 2}, - [873] = + [945] = {field_body, 10}, {field_item, 6}, {field_iterable, 2}, {field_label, 8}, - [877] = + [949] = {field_body, 11}, {field_condition, 1}, {field_label, 8}, @@ -2979,103 +3090,103 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 4}, {field_update, 5}, {field_update, 6}, - [884] = - {field_body, 11}, - {field_condition, 1}, - {field_label, 8}, - {field_update, 3}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - [892] = - {field_body, 11}, - {field_condition, 1}, - {field_label, 9}, - {field_update, 3}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - [900] = - {field_body, 11}, - {field_condition, 1}, - {field_label, 8}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - [906] = - {field_body, 11}, - {field_condition, 1}, - {field_label, 8}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - [913] = - {field_body, 11}, - {field_condition, 1}, - {field_label, 9}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - [920] = - {field_body, 11}, - {field_condition, 1}, - {field_label, 9}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - {field_update, 8}, - [928] = - {field_body, 11}, - {field_condition, 2}, - {field_label, 8}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - [934] = - {field_body, 11}, - {field_condition, 2}, - {field_label, 8}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - [941] = - {field_body, 11}, - {field_condition, 2}, - {field_label, 9}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - [948] = - {field_body, 11}, - {field_condition, 2}, - {field_label, 9}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - {field_update, 8}, [956] = + {field_body, 11}, + {field_condition, 1}, + {field_label, 8}, + {field_update, 3}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + [964] = + {field_body, 11}, + {field_condition, 1}, + {field_label, 9}, + {field_update, 3}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + [972] = + {field_body, 11}, + {field_condition, 1}, + {field_label, 8}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + [978] = + {field_body, 11}, + {field_condition, 1}, + {field_label, 8}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + [985] = + {field_body, 11}, + {field_condition, 1}, + {field_label, 9}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + [992] = + {field_body, 11}, + {field_condition, 1}, + {field_label, 9}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + {field_update, 8}, + [1000] = + {field_body, 11}, + {field_condition, 2}, + {field_label, 8}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + [1006] = + {field_body, 11}, + {field_condition, 2}, + {field_label, 8}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + [1013] = + {field_body, 11}, + {field_condition, 2}, + {field_label, 9}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + [1020] = + {field_body, 11}, + {field_condition, 2}, + {field_label, 9}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + {field_update, 8}, + [1028] = {field_body, 11}, {field_condition, 2}, {field_label, 8}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [962] = + [1034] = {field_body, 11}, {field_condition, 2}, {field_label, 9}, {field_update, 5}, {field_update, 6}, {field_update, 7}, - [968] = + [1040] = {field_body, 11}, {field_condition, 2}, {field_label, 9}, @@ -3083,7 +3194,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [975] = + [1047] = {field_body, 11}, {field_condition, 2}, {field_update, 5}, @@ -3091,74 +3202,74 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 7}, {field_update, 8}, {field_update, 9}, - [982] = + [1054] = {field_body, 11}, {field_index, 6}, {field_item, 4}, {field_iterable, 1}, {field_label, 8}, - [987] = + [1059] = {field_body, 11}, {field_index, 6}, {field_item, 4}, {field_iterable, 1}, {field_label, 9}, - [992] = + [1064] = {field_body, 11}, {field_index, 5}, {field_item, 3}, {field_iterable, 1}, {field_label, 8}, - [997] = + [1069] = {field_body, 11}, {field_index, 7}, {field_item, 5}, {field_iterable, 1}, {field_label, 9}, - [1002] = + [1074] = {field_body, 11}, {field_item, 5}, {field_iterable, 1}, {field_label, 8}, - [1006] = + [1078] = {field_body, 11}, {field_index, 7}, {field_item, 5}, {field_iterable, 2}, {field_label, 9}, - [1011] = + [1083] = {field_body, 11}, {field_item, 5}, {field_iterable, 2}, {field_label, 8}, - [1015] = + [1087] = {field_body, 11}, {field_index, 6}, {field_item, 4}, {field_iterable, 2}, {field_label, 8}, - [1020] = + [1092] = {field_body, 11}, {field_index, 6}, {field_item, 4}, {field_iterable, 2}, {field_label, 9}, - [1025] = + [1097] = {field_body, 11}, {field_index, 8}, {field_item, 6}, {field_iterable, 2}, - [1029] = + [1101] = {field_body, 11}, {field_item, 6}, {field_iterable, 2}, {field_label, 8}, - [1033] = + [1105] = {field_body, 11}, {field_item, 6}, {field_iterable, 2}, {field_label, 9}, - [1037] = + [1109] = {field_body, 12}, {field_condition, 1}, {field_label, 9}, @@ -3167,7 +3278,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [1045] = + [1117] = {field_body, 12}, {field_condition, 1}, {field_label, 9}, @@ -3175,130 +3286,130 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 5}, {field_update, 6}, {field_update, 7}, - [1052] = - {field_body, 12}, - {field_condition, 1}, - {field_label, 9}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - {field_update, 8}, - [1060] = - {field_body, 12}, - {field_condition, 1}, - {field_label, 10}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - {field_update, 8}, - [1068] = - {field_body, 12}, - {field_condition, 2}, - {field_label, 9}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - [1075] = - {field_body, 12}, - {field_condition, 2}, - {field_label, 9}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - {field_update, 8}, - [1083] = - {field_body, 12}, - {field_condition, 2}, - {field_label, 10}, - {field_update, 4}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - {field_update, 8}, - [1091] = - {field_body, 12}, - {field_condition, 2}, - {field_label, 9}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - [1097] = - {field_body, 12}, - {field_condition, 2}, - {field_label, 9}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - {field_update, 8}, - [1104] = - {field_body, 12}, - {field_condition, 2}, - {field_label, 10}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - {field_update, 8}, - [1111] = - {field_body, 12}, - {field_condition, 2}, - {field_label, 10}, - {field_update, 5}, - {field_update, 6}, - {field_update, 7}, - {field_update, 8}, - {field_update, 9}, - [1119] = - {field_body, 12}, - {field_index, 6}, - {field_item, 4}, - {field_iterable, 1}, - {field_label, 9}, [1124] = + {field_body, 12}, + {field_condition, 1}, + {field_label, 9}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + {field_update, 8}, + [1132] = + {field_body, 12}, + {field_condition, 1}, + {field_label, 10}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + {field_update, 8}, + [1140] = + {field_body, 12}, + {field_condition, 2}, + {field_label, 9}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + [1147] = + {field_body, 12}, + {field_condition, 2}, + {field_label, 9}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + {field_update, 8}, + [1155] = + {field_body, 12}, + {field_condition, 2}, + {field_label, 10}, + {field_update, 4}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + {field_update, 8}, + [1163] = + {field_body, 12}, + {field_condition, 2}, + {field_label, 9}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + [1169] = + {field_body, 12}, + {field_condition, 2}, + {field_label, 9}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + {field_update, 8}, + [1176] = + {field_body, 12}, + {field_condition, 2}, + {field_label, 10}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + {field_update, 8}, + [1183] = + {field_body, 12}, + {field_condition, 2}, + {field_label, 10}, + {field_update, 5}, + {field_update, 6}, + {field_update, 7}, + {field_update, 8}, + {field_update, 9}, + [1191] = + {field_body, 12}, + {field_index, 6}, + {field_item, 4}, + {field_iterable, 1}, + {field_label, 9}, + [1196] = {field_body, 12}, {field_index, 7}, {field_item, 5}, {field_iterable, 1}, {field_label, 9}, - [1129] = + [1201] = {field_body, 12}, {field_index, 7}, {field_item, 5}, {field_iterable, 1}, {field_label, 10}, - [1134] = + [1206] = {field_body, 12}, {field_index, 7}, {field_item, 5}, {field_iterable, 2}, {field_label, 9}, - [1139] = + [1211] = {field_body, 12}, {field_index, 7}, {field_item, 5}, {field_iterable, 2}, {field_label, 10}, - [1144] = + [1216] = {field_body, 12}, {field_index, 6}, {field_item, 4}, {field_iterable, 2}, {field_label, 9}, - [1149] = + [1221] = {field_body, 12}, {field_index, 8}, {field_item, 6}, {field_iterable, 2}, {field_label, 10}, - [1154] = + [1226] = {field_body, 12}, {field_item, 6}, {field_iterable, 2}, {field_label, 9}, - [1158] = + [1230] = {field_body, 13}, {field_condition, 1}, {field_label, 10}, @@ -3307,7 +3418,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [1166] = + [1238] = {field_body, 13}, {field_condition, 2}, {field_label, 10}, @@ -3316,7 +3427,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [1174] = + [1246] = {field_body, 13}, {field_condition, 2}, {field_label, 10}, @@ -3324,7 +3435,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 6}, {field_update, 7}, {field_update, 8}, - [1181] = + [1253] = {field_body, 13}, {field_condition, 2}, {field_label, 10}, @@ -3333,7 +3444,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 7}, {field_update, 8}, {field_update, 9}, - [1189] = + [1261] = {field_body, 13}, {field_condition, 2}, {field_label, 11}, @@ -3342,31 +3453,31 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 7}, {field_update, 8}, {field_update, 9}, - [1197] = + [1269] = {field_body, 13}, {field_index, 7}, {field_item, 5}, {field_iterable, 1}, {field_label, 10}, - [1202] = + [1274] = {field_body, 13}, {field_index, 7}, {field_item, 5}, {field_iterable, 2}, {field_label, 10}, - [1207] = + [1279] = {field_body, 13}, {field_index, 8}, {field_item, 6}, {field_iterable, 2}, {field_label, 10}, - [1212] = + [1284] = {field_body, 13}, {field_index, 8}, {field_item, 6}, {field_iterable, 2}, {field_label, 11}, - [1217] = + [1289] = {field_body, 14}, {field_condition, 2}, {field_label, 11}, @@ -3375,7 +3486,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_update, 7}, {field_update, 8}, {field_update, 9}, - [1225] = + [1297] = {field_body, 14}, {field_index, 8}, {field_item, 6}, @@ -3395,53 +3506,53 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 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, + [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, [19] = 2, [20] = 20, - [21] = 21, - [22] = 20, - [23] = 21, - [24] = 21, - [25] = 21, - [26] = 21, + [21] = 20, + [22] = 22, + [23] = 22, + [24] = 20, + [25] = 22, + [26] = 20, [27] = 20, [28] = 20, - [29] = 21, - [30] = 20, - [31] = 21, - [32] = 20, - [33] = 21, - [34] = 20, - [35] = 20, - [36] = 21, - [37] = 20, + [29] = 29, + [30] = 30, + [31] = 22, + [32] = 32, + [33] = 33, + [34] = 34, + [35] = 35, + [36] = 36, + [37] = 37, [38] = 38, - [39] = 39, + [39] = 22, [40] = 40, - [41] = 41, - [42] = 42, - [43] = 43, - [44] = 44, - [45] = 45, - [46] = 46, - [47] = 47, + [41] = 20, + [42] = 22, + [43] = 20, + [44] = 22, + [45] = 22, + [46] = 20, + [47] = 22, [48] = 48, - [49] = 49, + [49] = 48, [50] = 50, [51] = 51, [52] = 52, @@ -3471,329 +3582,329 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [76] = 76, [77] = 77, [78] = 78, - [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] = 39, - [143] = 40, - [144] = 41, - [145] = 42, - [146] = 47, - [147] = 48, - [148] = 49, - [149] = 50, + [79] = 79, + [80] = 80, + [81] = 81, + [82] = 82, + [83] = 83, + [84] = 84, + [85] = 85, + [86] = 86, + [87] = 87, + [88] = 48, + [89] = 89, + [90] = 51, + [91] = 52, + [92] = 53, + [93] = 54, + [94] = 55, + [95] = 56, + [96] = 57, + [97] = 58, + [98] = 59, + [99] = 60, + [100] = 61, + [101] = 63, + [102] = 64, + [103] = 65, + [104] = 66, + [105] = 67, + [106] = 68, + [107] = 69, + [108] = 73, + [109] = 74, + [110] = 75, + [111] = 76, + [112] = 77, + [113] = 78, + [114] = 79, + [115] = 83, + [116] = 84, + [117] = 85, + [118] = 86, + [119] = 48, + [120] = 51, + [121] = 52, + [122] = 53, + [123] = 54, + [124] = 55, + [125] = 56, + [126] = 57, + [127] = 58, + [128] = 59, + [129] = 60, + [130] = 61, + [131] = 63, + [132] = 64, + [133] = 65, + [134] = 66, + [135] = 67, + [136] = 68, + [137] = 69, + [138] = 73, + [139] = 74, + [140] = 75, + [141] = 76, + [142] = 77, + [143] = 78, + [144] = 79, + [145] = 83, + [146] = 84, + [147] = 85, + [148] = 86, + [149] = 48, [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, + [153] = 54, + [154] = 55, + [155] = 56, + [156] = 57, + [157] = 58, + [158] = 59, + [159] = 60, + [160] = 61, + [161] = 63, + [162] = 64, + [163] = 65, + [164] = 67, + [165] = 68, + [166] = 69, [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, + [173] = 79, + [174] = 83, + [175] = 84, + [176] = 85, + [177] = 86, + [178] = 51, + [179] = 52, + [180] = 53, + [181] = 54, + [182] = 55, + [183] = 56, [184] = 57, [185] = 58, [186] = 59, [187] = 60, - [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] = 49, - [318] = 50, - [319] = 51, - [320] = 52, - [321] = 53, - [322] = 57, - [323] = 58, - [324] = 59, - [325] = 60, - [326] = 62, - [327] = 78, - [328] = 69, + [188] = 61, + [189] = 63, + [190] = 64, + [191] = 65, + [192] = 66, + [193] = 67, + [194] = 68, + [195] = 69, + [196] = 73, + [197] = 74, + [198] = 75, + [199] = 76, + [200] = 77, + [201] = 78, + [202] = 79, + [203] = 83, + [204] = 84, + [205] = 85, + [206] = 86, + [207] = 48, + [208] = 51, + [209] = 52, + [210] = 53, + [211] = 55, + [212] = 56, + [213] = 60, + [214] = 51, + [215] = 52, + [216] = 53, + [217] = 55, + [218] = 56, + [219] = 60, + [220] = 51, + [221] = 52, + [222] = 53, + [223] = 55, + [224] = 56, + [225] = 60, + [226] = 226, + [227] = 51, + [228] = 52, + [229] = 53, + [230] = 55, + [231] = 56, + [232] = 60, + [233] = 54, + [234] = 57, + [235] = 58, + [236] = 59, + [237] = 61, + [238] = 63, + [239] = 64, + [240] = 65, + [241] = 66, + [242] = 67, + [243] = 68, + [244] = 69, + [245] = 73, + [246] = 74, + [247] = 75, + [248] = 76, + [249] = 77, + [250] = 78, + [251] = 79, + [252] = 83, + [253] = 84, + [254] = 85, + [255] = 86, + [256] = 48, + [257] = 54, + [258] = 57, + [259] = 58, + [260] = 59, + [261] = 61, + [262] = 63, + [263] = 64, + [264] = 65, + [265] = 66, + [266] = 67, + [267] = 68, + [268] = 69, + [269] = 73, + [270] = 74, + [271] = 75, + [272] = 76, + [273] = 77, + [274] = 78, + [275] = 79, + [276] = 83, + [277] = 84, + [278] = 85, + [279] = 86, + [280] = 48, + [281] = 54, + [282] = 57, + [283] = 58, + [284] = 59, + [285] = 61, + [286] = 63, + [287] = 64, + [288] = 65, + [289] = 66, + [290] = 67, + [291] = 68, + [292] = 69, + [293] = 73, + [294] = 74, + [295] = 75, + [296] = 76, + [297] = 77, + [298] = 78, + [299] = 79, + [300] = 83, + [301] = 84, + [302] = 85, + [303] = 86, + [304] = 48, + [305] = 54, + [306] = 57, + [307] = 58, + [308] = 59, + [309] = 61, + [310] = 63, + [311] = 64, + [312] = 65, + [313] = 66, + [314] = 67, + [315] = 68, + [316] = 69, + [317] = 73, + [318] = 74, + [319] = 75, + [320] = 76, + [321] = 77, + [322] = 78, + [323] = 79, + [324] = 83, + [325] = 84, + [326] = 85, + [327] = 86, + [328] = 66, [329] = 329, - [330] = 329, - [331] = 331, + [330] = 330, + [331] = 329, [332] = 332, [333] = 333, [334] = 334, - [335] = 329, - [336] = 331, - [337] = 334, - [338] = 338, - [339] = 329, - [340] = 329, - [341] = 331, - [342] = 338, - [343] = 332, - [344] = 333, + [335] = 330, + [336] = 334, + [337] = 330, + [338] = 329, + [339] = 332, + [340] = 333, + [341] = 341, + [342] = 341, + [343] = 341, + [344] = 341, [345] = 334, - [346] = 334, - [347] = 338, + [346] = 330, + [347] = 329, [348] = 332, [349] = 333, - [350] = 331, - [351] = 332, - [352] = 329, - [353] = 331, - [354] = 333, + [350] = 341, + [351] = 334, + [352] = 330, + [353] = 329, + [354] = 329, [355] = 332, - [356] = 333, + [356] = 341, [357] = 334, - [358] = 338, - [359] = 333, - [360] = 338, - [361] = 331, - [362] = 338, - [363] = 332, - [364] = 333, - [365] = 334, + [358] = 330, + [359] = 334, + [360] = 333, + [361] = 332, + [362] = 333, + [363] = 341, + [364] = 334, + [365] = 330, [366] = 329, - [367] = 331, - [368] = 332, - [369] = 333, - [370] = 338, - [371] = 334, - [372] = 334, - [373] = 329, - [374] = 329, - [375] = 331, - [376] = 331, - [377] = 338, - [378] = 332, - [379] = 333, - [380] = 338, - [381] = 332, - [382] = 334, + [367] = 332, + [368] = 333, + [369] = 341, + [370] = 334, + [371] = 330, + [372] = 329, + [373] = 332, + [374] = 333, + [375] = 334, + [376] = 330, + [377] = 333, + [378] = 329, + [379] = 332, + [380] = 333, + [381] = 341, + [382] = 332, [383] = 383, - [384] = 383, - [385] = 38, - [386] = 207, - [387] = 197, - [388] = 198, - [389] = 389, - [390] = 390, + [384] = 384, + [385] = 383, + [386] = 386, + [387] = 30, + [388] = 32, + [389] = 33, + [390] = 35, [391] = 391, - [392] = 203, - [393] = 202, - [394] = 389, + [392] = 37, + [393] = 36, + [394] = 394, [395] = 395, [396] = 396, [397] = 397, [398] = 398, - [399] = 397, - [400] = 398, - [401] = 401, + [399] = 394, + [400] = 384, + [401] = 398, [402] = 402, [403] = 403, [404] = 404, @@ -3923,10 +4034,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [528] = 528, [529] = 529, [530] = 530, - [531] = 529, + [531] = 531, [532] = 532, [533] = 533, - [534] = 534, + [534] = 531, [535] = 535, [536] = 536, [537] = 537, @@ -3941,241 +4052,241 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [546] = 546, [547] = 547, [548] = 548, - [549] = 383, + [549] = 549, [550] = 550, [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, + [552] = 552, + [553] = 531, + [554] = 383, + [555] = 551, + [556] = 551, + [557] = 531, + [558] = 552, + [559] = 551, + [560] = 552, + [561] = 552, + [562] = 384, + [563] = 537, + [564] = 531, + [565] = 539, + [566] = 538, + [567] = 540, + [568] = 541, + [569] = 542, + [570] = 547, + [571] = 543, + [572] = 544, + [573] = 536, + [574] = 531, + [575] = 535, + [576] = 533, + [577] = 577, + [578] = 551, + [579] = 552, [580] = 580, - [581] = 581, + [581] = 577, [582] = 582, [583] = 583, - [584] = 584, + [584] = 580, [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] = 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] = 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] = 541, - [673] = 670, - [674] = 670, - [675] = 670, - [676] = 670, - [677] = 670, - [678] = 670, - [679] = 670, - [680] = 680, - [681] = 681, - [682] = 682, - [683] = 683, - [684] = 683, - [685] = 685, - [686] = 683, - [687] = 685, - [688] = 685, - [689] = 203, + [587] = 582, + [588] = 588, + [589] = 580, + [590] = 585, + [591] = 591, + [592] = 592, + [593] = 593, + [594] = 592, + [595] = 582, + [596] = 583, + [597] = 597, + [598] = 586, + [599] = 583, + [600] = 593, + [601] = 601, + [602] = 602, + [603] = 603, + [604] = 588, + [605] = 580, + [606] = 592, + [607] = 593, + [608] = 588, + [609] = 593, + [610] = 585, + [611] = 586, + [612] = 582, + [613] = 583, + [614] = 585, + [615] = 586, + [616] = 592, + [617] = 617, + [618] = 593, + [619] = 588, + [620] = 593, + [621] = 582, + [622] = 592, + [623] = 593, + [624] = 588, + [625] = 580, + [626] = 585, + [627] = 586, + [628] = 582, + [629] = 583, + [630] = 583, + [631] = 631, + [632] = 588, + [633] = 580, + [634] = 585, + [635] = 592, + [636] = 593, + [637] = 637, + [638] = 638, + [639] = 639, + [640] = 588, + [641] = 580, + [642] = 585, + [643] = 586, + [644] = 585, + [645] = 586, + [646] = 582, + [647] = 583, + [648] = 586, + [649] = 588, + [650] = 582, + [651] = 583, + [652] = 652, + [653] = 592, + [654] = 654, + [655] = 532, + [656] = 531, + [657] = 592, + [658] = 593, + [659] = 586, + [660] = 531, + [661] = 592, + [662] = 588, + [663] = 580, + [664] = 585, + [665] = 582, + [666] = 583, + [667] = 580, + [668] = 668, + [669] = 668, + [670] = 546, + [671] = 668, + [672] = 668, + [673] = 668, + [674] = 668, + [675] = 668, + [676] = 668, + [677] = 531, + [678] = 668, + [679] = 679, + [680] = 679, + [681] = 679, + [682] = 679, + [683] = 679, + [684] = 679, + [685] = 679, + [686] = 679, + [687] = 679, + [688] = 688, + [689] = 689, [690] = 690, - [691] = 207, + [691] = 691, [692] = 692, - [693] = 690, - [694] = 38, - [695] = 690, - [696] = 197, - [697] = 198, - [698] = 692, + [693] = 691, + [694] = 691, + [695] = 692, + [696] = 692, + [697] = 697, + [698] = 698, [699] = 699, - [700] = 690, - [701] = 692, - [702] = 702, - [703] = 703, - [704] = 704, + [700] = 700, + [701] = 383, + [702] = 30, + [703] = 32, + [704] = 33, [705] = 705, - [706] = 706, - [707] = 707, - [708] = 692, - [709] = 202, + [706] = 35, + [707] = 36, + [708] = 37, + [709] = 709, [710] = 710, [711] = 711, [712] = 712, [713] = 713, - [714] = 690, - [715] = 692, - [716] = 716, - [717] = 717, - [718] = 718, - [719] = 716, - [720] = 545, - [721] = 563, + [714] = 709, + [715] = 710, + [716] = 709, + [717] = 710, + [718] = 709, + [719] = 710, + [720] = 710, + [721] = 709, [722] = 722, - [723] = 543, + [723] = 723, [724] = 724, - [725] = 533, - [726] = 716, - [727] = 722, - [728] = 383, - [729] = 716, - [730] = 722, + [725] = 725, + [726] = 726, + [727] = 725, + [728] = 728, + [729] = 729, + [730] = 725, [731] = 731, - [732] = 732, - [733] = 733, - [734] = 542, - [735] = 534, - [736] = 736, - [737] = 722, - [738] = 536, - [739] = 539, - [740] = 740, - [741] = 537, - [742] = 716, - [743] = 722, - [744] = 544, - [745] = 722, - [746] = 722, - [747] = 747, - [748] = 748, - [749] = 716, - [750] = 750, - [751] = 751, + [732] = 32, + [733] = 577, + [734] = 725, + [735] = 735, + [736] = 33, + [737] = 737, + [738] = 35, + [739] = 535, + [740] = 536, + [741] = 533, + [742] = 537, + [743] = 538, + [744] = 539, + [745] = 540, + [746] = 541, + [747] = 542, + [748] = 547, + [749] = 749, + [750] = 544, + [751] = 36, [752] = 752, - [753] = 716, - [754] = 722, - [755] = 540, - [756] = 756, - [757] = 532, - [758] = 716, - [759] = 535, + [753] = 731, + [754] = 731, + [755] = 725, + [756] = 30, + [757] = 37, + [758] = 758, + [759] = 759, [760] = 760, [761] = 761, - [762] = 762, + [762] = 725, [763] = 763, [764] = 764, - [765] = 765, + [765] = 731, [766] = 766, - [767] = 767, - [768] = 768, - [769] = 769, - [770] = 770, - [771] = 771, - [772] = 772, - [773] = 773, - [774] = 38, - [775] = 197, - [776] = 773, - [777] = 198, + [767] = 725, + [768] = 688, + [769] = 731, + [770] = 731, + [771] = 725, + [772] = 731, + [773] = 731, + [774] = 383, + [775] = 543, + [776] = 776, + [777] = 777, [778] = 778, [779] = 779, - [780] = 773, + [780] = 780, [781] = 781, - [782] = 383, - [783] = 207, + [782] = 778, + [783] = 783, [784] = 784, [785] = 785, [786] = 786, @@ -4183,22 +4294,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [788] = 788, [789] = 789, [790] = 790, - [791] = 202, + [791] = 791, [792] = 792, [793] = 793, - [794] = 773, - [795] = 773, - [796] = 773, - [797] = 203, - [798] = 798, - [799] = 773, - [800] = 681, + [794] = 794, + [795] = 778, + [796] = 796, + [797] = 797, + [798] = 383, + [799] = 799, + [800] = 778, [801] = 801, - [802] = 773, - [803] = 383, + [802] = 802, + [803] = 803, [804] = 804, [805] = 805, - [806] = 806, + [806] = 778, [807] = 807, [808] = 808, [809] = 809, @@ -4206,201 +4317,201 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [811] = 811, [812] = 812, [813] = 813, - [814] = 814, + [814] = 778, [815] = 815, - [816] = 816, + [816] = 778, [817] = 817, [818] = 818, - [819] = 815, - [820] = 816, - [821] = 817, - [822] = 818, - [823] = 823, + [819] = 819, + [820] = 778, + [821] = 821, + [822] = 822, + [823] = 384, [824] = 824, [825] = 825, [826] = 826, - [827] = 824, - [828] = 815, + [827] = 827, + [828] = 828, [829] = 829, [830] = 830, [831] = 831, [832] = 832, [833] = 833, - [834] = 813, - [835] = 816, + [834] = 834, + [835] = 835, [836] = 836, - [837] = 817, + [837] = 837, [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, + [839] = 839, + [840] = 833, + [841] = 834, + [842] = 835, + [843] = 836, + [844] = 837, + [845] = 838, + [846] = 839, + [847] = 383, + [848] = 822, + [849] = 849, + [850] = 850, + [851] = 821, + [852] = 852, + [853] = 822, [854] = 854, - [855] = 838, - [856] = 823, - [857] = 857, - [858] = 858, - [859] = 859, - [860] = 814, - [861] = 861, - [862] = 862, - [863] = 863, - [864] = 815, - [865] = 865, - [866] = 816, - [867] = 829, - [868] = 868, - [869] = 869, - [870] = 814, - [871] = 815, - [872] = 872, - [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] = 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, + [855] = 825, + [856] = 826, + [857] = 827, + [858] = 828, + [859] = 829, + [860] = 830, + [861] = 831, + [862] = 832, + [863] = 833, + [864] = 834, + [865] = 835, + [866] = 836, + [867] = 837, + [868] = 838, + [869] = 839, + [870] = 870, + [871] = 849, + [872] = 821, + [873] = 873, + [874] = 822, + [875] = 825, + [876] = 826, + [877] = 827, + [878] = 828, + [879] = 829, + [880] = 830, + [881] = 831, + [882] = 833, + [883] = 834, + [884] = 835, + [885] = 836, + [886] = 837, + [887] = 838, + [888] = 839, + [889] = 821, + [890] = 852, + [891] = 822, + [892] = 854, + [893] = 825, + [894] = 826, + [895] = 827, + [896] = 828, + [897] = 829, + [898] = 830, + [899] = 831, + [900] = 832, + [901] = 833, + [902] = 834, + [903] = 835, + [904] = 836, + [905] = 837, + [906] = 838, + [907] = 839, + [908] = 849, + [909] = 909, + [910] = 852, + [911] = 822, + [912] = 854, + [913] = 825, + [914] = 826, + [915] = 827, + [916] = 828, + [917] = 830, + [918] = 831, + [919] = 832, + [920] = 833, + [921] = 834, + [922] = 835, + [923] = 836, + [924] = 837, + [925] = 838, + [926] = 839, + [927] = 849, + [928] = 852, + [929] = 854, + [930] = 832, + [931] = 849, + [932] = 852, + [933] = 854, + [934] = 854, + [935] = 854, + [936] = 821, + [937] = 852, + [938] = 854, + [939] = 939, + [940] = 939, + [941] = 941, + [942] = 942, + [943] = 854, + [944] = 850, + [945] = 945, + [946] = 946, + [947] = 822, + [948] = 825, + [949] = 826, + [950] = 827, + [951] = 828, + [952] = 829, [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, + [954] = 831, + [955] = 833, + [956] = 834, + [957] = 835, + [958] = 836, + [959] = 837, + [960] = 838, + [961] = 839, + [962] = 962, + [963] = 963, + [964] = 852, + [965] = 825, + [966] = 966, + [967] = 967, + [968] = 826, + [969] = 827, + [970] = 828, + [971] = 829, + [972] = 821, + [973] = 830, + [974] = 831, + [975] = 383, + [976] = 852, + [977] = 822, + [978] = 825, + [979] = 826, + [980] = 827, + [981] = 828, + [982] = 829, + [983] = 830, + [984] = 831, + [985] = 833, + [986] = 834, + [987] = 835, + [988] = 836, + [989] = 837, + [990] = 838, + [991] = 839, + [992] = 821, + [993] = 821, + [994] = 852, [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, + [996] = 996, + [997] = 941, + [998] = 942, + [999] = 829, + [1000] = 384, + [1001] = 383, + [1002] = 384, + [1003] = 384, + [1004] = 1004, + [1005] = 1005, + [1006] = 384, + [1007] = 689, + [1008] = 384, [1009] = 1009, [1010] = 1010, [1011] = 1011, @@ -4458,7 +4569,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1063] = 1063, [1064] = 1064, [1065] = 1065, - [1066] = 1066, + [1066] = 30, [1067] = 1067, [1068] = 1068, [1069] = 1069, @@ -4467,8 +4578,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1072] = 1072, [1073] = 1073, [1074] = 1074, - [1075] = 1075, - [1076] = 1076, + [1075] = 32, + [1076] = 33, [1077] = 1077, [1078] = 1078, [1079] = 1079, @@ -4476,9 +4587,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1081] = 1081, [1082] = 1082, [1083] = 1083, - [1084] = 1084, - [1085] = 1085, - [1086] = 1086, + [1084] = 35, + [1085] = 36, + [1086] = 37, [1087] = 1087, [1088] = 1088, [1089] = 1089, @@ -4633,35 +4744,35 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1238] = 1238, [1239] = 1239, [1240] = 1240, - [1241] = 1235, - [1242] = 1236, - [1243] = 1237, - [1244] = 1238, - [1245] = 1239, - [1246] = 1240, + [1241] = 1241, + [1242] = 1242, + [1243] = 1243, + [1244] = 1244, + [1245] = 1245, + [1246] = 1246, [1247] = 1247, - [1248] = 1248, + [1248] = 1245, [1249] = 1249, - [1250] = 1250, - [1251] = 1251, - [1252] = 682, - [1253] = 1253, - [1254] = 1253, - [1255] = 1253, - [1256] = 1236, - [1257] = 1238, - [1258] = 1239, - [1259] = 1237, - [1260] = 1240, - [1261] = 1235, - [1262] = 1262, - [1263] = 1263, - [1264] = 1264, - [1265] = 1265, - [1266] = 1266, - [1267] = 1267, - [1268] = 1268, - [1269] = 1269, + [1250] = 1249, + [1251] = 1243, + [1252] = 1247, + [1253] = 1244, + [1254] = 1246, + [1255] = 1255, + [1256] = 1256, + [1257] = 1257, + [1258] = 1258, + [1259] = 1259, + [1260] = 690, + [1261] = 1261, + [1262] = 1261, + [1263] = 1261, + [1264] = 1247, + [1265] = 1245, + [1266] = 1246, + [1267] = 1243, + [1268] = 1249, + [1269] = 1244, [1270] = 1270, [1271] = 1271, [1272] = 1272, @@ -4687,219 +4798,219 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1292] = 1292, [1293] = 1293, [1294] = 1294, - [1295] = 1289, + [1295] = 1295, [1296] = 1296, - [1297] = 1296, + [1297] = 1297, [1298] = 1298, [1299] = 1299, - [1300] = 1290, + [1300] = 1299, [1301] = 1301, [1302] = 1302, [1303] = 1303, - [1304] = 1292, - [1305] = 1302, - [1306] = 1298, - [1307] = 1301, - [1308] = 1299, - [1309] = 1303, - [1310] = 1310, - [1311] = 1293, + [1304] = 1304, + [1305] = 1305, + [1306] = 1306, + [1307] = 1307, + [1308] = 1304, + [1309] = 1309, + [1310] = 1307, + [1311] = 1306, [1312] = 1312, - [1313] = 1310, - [1314] = 1314, - [1315] = 1315, - [1316] = 1315, - [1317] = 1288, - [1318] = 1294, - [1319] = 1291, + [1313] = 1309, + [1314] = 1303, + [1315] = 1302, + [1316] = 1316, + [1317] = 1317, + [1318] = 1318, + [1319] = 1305, [1320] = 1320, [1321] = 1321, [1322] = 1322, - [1323] = 1323, - [1324] = 1324, - [1325] = 1325, + [1323] = 1317, + [1324] = 1316, + [1325] = 1321, [1326] = 1326, - [1327] = 1327, - [1328] = 1328, - [1329] = 1329, + [1327] = 1320, + [1328] = 1301, + [1329] = 1318, [1330] = 1330, [1331] = 1331, - [1332] = 1332, + [1332] = 1322, [1333] = 1333, - [1334] = 1331, - [1335] = 1330, - [1336] = 1332, + [1334] = 1334, + [1335] = 1335, + [1336] = 1336, [1337] = 1337, - [1338] = 1320, - [1339] = 1321, + [1338] = 1338, + [1339] = 1339, [1340] = 1340, [1341] = 1341, - [1342] = 1333, + [1342] = 1342, [1343] = 1343, - [1344] = 1337, - [1345] = 1340, - [1346] = 1343, + [1344] = 1344, + [1345] = 1345, + [1346] = 1336, [1347] = 1347, - [1348] = 1348, - [1349] = 1349, - [1350] = 1350, - [1351] = 1322, - [1352] = 1347, - [1353] = 1324, - [1354] = 1325, - [1355] = 1326, - [1356] = 1349, - [1357] = 1327, - [1358] = 1348, - [1359] = 1359, - [1360] = 1360, + [1348] = 1337, + [1349] = 1347, + [1350] = 1338, + [1351] = 1343, + [1352] = 1352, + [1353] = 1345, + [1354] = 1339, + [1355] = 1355, + [1356] = 1356, + [1357] = 1355, + [1358] = 1340, + [1359] = 1334, + [1360] = 1356, [1361] = 1361, [1362] = 1362, - [1363] = 1363, + [1363] = 1361, [1364] = 1364, - [1365] = 1365, + [1365] = 1362, [1366] = 1366, - [1367] = 1367, - [1368] = 1368, + [1367] = 1364, + [1368] = 1341, [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] = 535, - [1388] = 540, - [1389] = 545, + [1370] = 1344, + [1371] = 1369, + [1372] = 1372, + [1373] = 1373, + [1374] = 1374, + [1375] = 1375, + [1376] = 1376, + [1377] = 1377, + [1378] = 1378, + [1379] = 1379, + [1380] = 1380, + [1381] = 1381, + [1382] = 1382, + [1383] = 538, + [1384] = 535, + [1385] = 539, + [1386] = 536, + [1387] = 544, + [1388] = 537, + [1389] = 540, [1390] = 542, - [1391] = 533, - [1392] = 544, - [1393] = 545, - [1394] = 542, + [1391] = 547, + [1392] = 543, + [1393] = 541, + [1394] = 533, [1395] = 539, - [1396] = 544, - [1397] = 537, - [1398] = 543, - [1399] = 539, + [1396] = 577, + [1397] = 541, + [1398] = 542, + [1399] = 547, [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] = 563, - [1413] = 1413, - [1414] = 563, - [1415] = 1415, - [1416] = 1416, - [1417] = 1415, - [1418] = 1418, - [1419] = 1416, - [1420] = 1416, - [1421] = 1415, - [1422] = 1415, - [1423] = 1416, - [1424] = 1416, - [1425] = 1425, + [1401] = 543, + [1402] = 536, + [1403] = 544, + [1404] = 540, + [1405] = 535, + [1406] = 537, + [1407] = 538, + [1408] = 539, + [1409] = 577, + [1410] = 536, + [1411] = 533, + [1412] = 537, + [1413] = 535, + [1414] = 538, + [1415] = 542, + [1416] = 547, + [1417] = 541, + [1418] = 540, + [1419] = 544, + [1420] = 543, + [1421] = 577, + [1422] = 577, + [1423] = 1423, + [1424] = 1424, + [1425] = 577, [1426] = 1426, - [1427] = 1427, - [1428] = 1415, + [1427] = 577, + [1428] = 1428, [1429] = 1429, [1430] = 1430, [1431] = 1431, - [1432] = 680, - [1433] = 1433, - [1434] = 1434, - [1435] = 1435, - [1436] = 535, - [1437] = 1437, + [1432] = 1432, + [1433] = 1428, + [1434] = 1428, + [1435] = 1429, + [1436] = 1429, + [1437] = 1429, [1438] = 1438, - [1439] = 532, - [1440] = 537, - [1441] = 543, - [1442] = 1442, + [1439] = 1428, + [1440] = 1428, + [1441] = 1429, + [1442] = 689, [1443] = 1443, - [1444] = 1442, - [1445] = 544, - [1446] = 1437, - [1447] = 533, - [1448] = 534, - [1449] = 540, - [1450] = 1438, - [1451] = 545, + [1444] = 1444, + [1445] = 1445, + [1446] = 1446, + [1447] = 1447, + [1448] = 1448, + [1449] = 541, + [1450] = 544, + [1451] = 1451, [1452] = 1452, - [1453] = 536, + [1453] = 1453, [1454] = 1454, - [1455] = 1455, - [1456] = 1455, - [1457] = 680, - [1458] = 542, - [1459] = 539, - [1460] = 1452, - [1461] = 1461, + [1455] = 535, + [1456] = 1456, + [1457] = 536, + [1458] = 1452, + [1459] = 533, + [1460] = 1460, + [1461] = 537, [1462] = 1462, - [1463] = 1463, - [1464] = 1464, - [1465] = 680, - [1466] = 1466, - [1467] = 1467, + [1463] = 538, + [1464] = 539, + [1465] = 1465, + [1466] = 1462, + [1467] = 1465, [1468] = 1468, [1469] = 1469, - [1470] = 1470, - [1471] = 1471, + [1470] = 540, + [1471] = 1456, [1472] = 1472, - [1473] = 1473, - [1474] = 1474, - [1475] = 1475, + [1473] = 542, + [1474] = 547, + [1475] = 543, [1476] = 1476, - [1477] = 1477, - [1478] = 1478, + [1477] = 689, + [1478] = 1460, [1479] = 1479, [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, + [1481] = 1481, + [1482] = 1482, + [1483] = 1483, + [1484] = 1484, + [1485] = 1485, + [1486] = 1486, + [1487] = 1487, + [1488] = 1488, + [1489] = 1489, + [1490] = 1490, + [1491] = 1491, + [1492] = 1492, + [1493] = 689, [1494] = 1494, [1495] = 1495, - [1496] = 1496, - [1497] = 1497, - [1498] = 1498, - [1499] = 1499, - [1500] = 1500, - [1501] = 1501, - [1502] = 1502, - [1503] = 1503, - [1504] = 1504, - [1505] = 1505, - [1506] = 1506, - [1507] = 1507, + [1496] = 547, + [1497] = 537, + [1498] = 535, + [1499] = 536, + [1500] = 533, + [1501] = 539, + [1502] = 538, + [1503] = 544, + [1504] = 540, + [1505] = 541, + [1506] = 542, + [1507] = 543, [1508] = 1508, [1509] = 1509, [1510] = 1510, @@ -4912,40 +5023,40 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1517] = 1517, [1518] = 1518, [1519] = 1519, - [1520] = 1238, - [1521] = 1235, + [1520] = 1520, + [1521] = 1521, [1522] = 1522, - [1523] = 1239, - [1524] = 1240, - [1525] = 1238, + [1523] = 1523, + [1524] = 1524, + [1525] = 1525, [1526] = 1526, - [1527] = 1237, - [1528] = 1522, + [1527] = 1527, + [1528] = 1528, [1529] = 1529, - [1530] = 1235, - [1531] = 1236, + [1530] = 1530, + [1531] = 1531, [1532] = 1532, - [1533] = 1237, - [1534] = 1236, - [1535] = 1240, - [1536] = 1239, - [1537] = 1537, - [1538] = 1538, - [1539] = 1539, - [1540] = 1540, - [1541] = 1541, - [1542] = 1542, + [1533] = 1533, + [1534] = 1245, + [1535] = 1535, + [1536] = 1536, + [1537] = 1243, + [1538] = 1244, + [1539] = 1249, + [1540] = 1249, + [1541] = 1246, + [1542] = 1246, [1543] = 1543, - [1544] = 1544, - [1545] = 1545, + [1544] = 1247, + [1545] = 1244, [1546] = 1546, [1547] = 1547, - [1548] = 1548, - [1549] = 1549, - [1550] = 1550, + [1548] = 1247, + [1549] = 1245, + [1550] = 1243, [1551] = 1551, [1552] = 1552, - [1553] = 1553, + [1553] = 1552, [1554] = 1554, [1555] = 1555, [1556] = 1556, @@ -4960,17 +5071,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1565] = 1565, [1566] = 1566, [1567] = 1567, - [1568] = 1236, + [1568] = 1568, [1569] = 1569, [1570] = 1570, [1571] = 1571, - [1572] = 1237, + [1572] = 1572, [1573] = 1573, - [1574] = 1238, + [1574] = 1574, [1575] = 1575, - [1576] = 1239, - [1577] = 1240, - [1578] = 1235, + [1576] = 1576, + [1577] = 1577, + [1578] = 1244, [1579] = 1579, [1580] = 1580, [1581] = 1581, @@ -4979,22 +5090,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1584] = 1584, [1585] = 1585, [1586] = 1586, - [1587] = 1587, + [1587] = 1249, [1588] = 1588, - [1589] = 1589, + [1589] = 1246, [1590] = 1590, - [1591] = 1591, - [1592] = 1592, - [1593] = 1593, + [1591] = 1247, + [1592] = 1245, + [1593] = 1243, [1594] = 1594, [1595] = 1595, [1596] = 1596, [1597] = 1597, [1598] = 1598, [1599] = 1599, - [1600] = 1600, - [1601] = 1601, - [1602] = 1602, + [1600] = 1244, + [1601] = 1249, + [1602] = 1246, [1603] = 1603, [1604] = 1604, [1605] = 1605, @@ -5012,31 +5123,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1617] = 1617, [1618] = 1618, [1619] = 1619, - [1620] = 1620, + [1620] = 1247, [1621] = 1621, - [1622] = 1622, - [1623] = 1623, + [1622] = 1245, + [1623] = 1243, [1624] = 1624, [1625] = 1625, [1626] = 1626, [1627] = 1627, [1628] = 1628, [1629] = 1629, - [1630] = 1236, + [1630] = 1630, [1631] = 1631, [1632] = 1632, [1633] = 1633, [1634] = 1634, [1635] = 1635, - [1636] = 1237, - [1637] = 1238, + [1636] = 1636, + [1637] = 1637, [1638] = 1638, - [1639] = 1239, + [1639] = 1639, [1640] = 1640, - [1641] = 1240, + [1641] = 1641, [1642] = 1642, [1643] = 1643, - [1644] = 1235, + [1644] = 1644, [1645] = 1645, [1646] = 1646, [1647] = 1647, @@ -5066,18 +5177,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1671] = 1671, [1672] = 1672, [1673] = 1673, - [1674] = 1237, + [1674] = 1674, [1675] = 1675, - [1676] = 1238, + [1676] = 1676, [1677] = 1677, [1678] = 1678, [1679] = 1679, [1680] = 1680, [1681] = 1681, [1682] = 1682, - [1683] = 1239, - [1684] = 1240, - [1685] = 1235, + [1683] = 1683, + [1684] = 1684, + [1685] = 1685, [1686] = 1686, [1687] = 1687, [1688] = 1688, @@ -5096,14 +5207,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1701] = 1701, [1702] = 1702, [1703] = 1703, - [1704] = 1686, + [1704] = 1704, [1705] = 1705, [1706] = 1706, [1707] = 1707, [1708] = 1708, [1709] = 1709, [1710] = 1710, - [1711] = 1686, + [1711] = 1711, [1712] = 1712, [1713] = 1713, [1714] = 1714, @@ -5125,10 +5236,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1730] = 1730, [1731] = 1731, [1732] = 1732, - [1733] = 1733, - [1734] = 1734, + [1733] = 1247, + [1734] = 1245, [1735] = 1735, - [1736] = 1702, + [1736] = 1243, [1737] = 1737, [1738] = 1738, [1739] = 1739, @@ -5139,7 +5250,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1744] = 1744, [1745] = 1745, [1746] = 1746, - [1747] = 1686, + [1747] = 1747, [1748] = 1748, [1749] = 1749, [1750] = 1750, @@ -5153,9 +5264,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1758] = 1758, [1759] = 1759, [1760] = 1760, - [1761] = 1702, + [1761] = 1747, [1762] = 1762, - [1763] = 1686, + [1763] = 1763, [1764] = 1764, [1765] = 1765, [1766] = 1766, @@ -5169,30 +5280,30 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1774] = 1774, [1775] = 1775, [1776] = 1776, - [1777] = 1236, + [1777] = 1777, [1778] = 1778, [1779] = 1779, [1780] = 1780, [1781] = 1781, [1782] = 1782, [1783] = 1783, - [1784] = 1237, - [1785] = 1238, + [1784] = 1784, + [1785] = 1785, [1786] = 1786, [1787] = 1787, [1788] = 1788, - [1789] = 1239, + [1789] = 1789, [1790] = 1790, - [1791] = 1240, + [1791] = 1791, [1792] = 1792, [1793] = 1793, [1794] = 1794, [1795] = 1795, [1796] = 1796, - [1797] = 1235, + [1797] = 1797, [1798] = 1798, - [1799] = 1799, - [1800] = 1800, + [1799] = 1747, + [1800] = 1775, [1801] = 1801, [1802] = 1802, [1803] = 1803, @@ -5202,7 +5313,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1807] = 1807, [1808] = 1808, [1809] = 1809, - [1810] = 1810, + [1810] = 1775, [1811] = 1811, [1812] = 1812, [1813] = 1813, @@ -5210,35 +5321,35 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1815] = 1815, [1816] = 1816, [1817] = 1817, - [1818] = 1818, - [1819] = 1819, + [1818] = 1747, + [1819] = 1775, [1820] = 1820, [1821] = 1821, [1822] = 1822, [1823] = 1823, [1824] = 1824, - [1825] = 1825, + [1825] = 1747, [1826] = 1826, [1827] = 1827, [1828] = 1828, [1829] = 1829, - [1830] = 1830, + [1830] = 1244, [1831] = 1831, - [1832] = 1832, + [1832] = 1249, [1833] = 1833, - [1834] = 1834, + [1834] = 1246, [1835] = 1835, [1836] = 1836, - [1837] = 1837, + [1837] = 1775, [1838] = 1838, - [1839] = 1839, - [1840] = 1840, + [1839] = 1247, + [1840] = 1245, [1841] = 1841, [1842] = 1842, [1843] = 1843, [1844] = 1844, [1845] = 1845, - [1846] = 1846, + [1846] = 1243, [1847] = 1847, [1848] = 1848, [1849] = 1849, @@ -5269,21 +5380,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1874] = 1874, [1875] = 1875, [1876] = 1876, - [1877] = 1721, + [1877] = 1877, [1878] = 1878, [1879] = 1879, - [1880] = 1732, - [1881] = 1824, - [1882] = 1779, - [1883] = 1782, + [1880] = 1880, + [1881] = 1881, + [1882] = 1882, + [1883] = 1883, [1884] = 1884, [1885] = 1885, [1886] = 1886, [1887] = 1887, [1888] = 1888, [1889] = 1889, - [1890] = 1236, - [1891] = 1702, + [1890] = 1890, + [1891] = 1891, [1892] = 1892, [1893] = 1893, [1894] = 1894, @@ -5296,7 +5407,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1901] = 1901, [1902] = 1902, [1903] = 1903, - [1904] = 1702, + [1904] = 1904, [1905] = 1905, [1906] = 1906, [1907] = 1907, @@ -5311,209 +5422,209 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1916] = 1916, [1917] = 1917, [1918] = 1918, - [1919] = 1919, + [1919] = 1244, [1920] = 1920, [1921] = 1921, [1922] = 1922, - [1923] = 1923, + [1923] = 1814, [1924] = 1924, [1925] = 1925, - [1926] = 1926, - [1927] = 1927, - [1928] = 1928, + [1926] = 1847, + [1927] = 1898, + [1928] = 1899, [1929] = 1929, [1930] = 1930, [1931] = 1931, - [1932] = 1919, - [1933] = 1919, + [1932] = 1932, + [1933] = 1933, [1934] = 1934, - [1935] = 1921, + [1935] = 1935, [1936] = 1936, [1937] = 1937, [1938] = 1938, [1939] = 1939, [1940] = 1940, - [1941] = 1941, + [1941] = 1925, [1942] = 1942, [1943] = 1943, [1944] = 1944, [1945] = 1945, - [1946] = 1943, + [1946] = 1946, [1947] = 1947, [1948] = 1948, [1949] = 1949, [1950] = 1950, - [1951] = 1951, + [1951] = 1249, [1952] = 1952, [1953] = 1953, - [1954] = 1954, + [1954] = 1246, [1955] = 1955, [1956] = 1956, [1957] = 1957, - [1958] = 1951, + [1958] = 1958, [1959] = 1959, - [1960] = 1931, + [1960] = 1960, [1961] = 1961, - [1962] = 1943, - [1963] = 1919, - [1964] = 1929, - [1965] = 1921, - [1966] = 1929, + [1962] = 1962, + [1963] = 1963, + [1964] = 1964, + [1965] = 1961, + [1966] = 1966, [1967] = 1967, - [1968] = 1921, + [1968] = 1968, [1969] = 1969, [1970] = 1970, [1971] = 1971, [1972] = 1972, - [1973] = 1931, + [1973] = 1973, [1974] = 1974, - [1975] = 1975, + [1975] = 1967, [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, + [1978] = 1978, + [1979] = 1979, + [1980] = 1968, + [1981] = 1981, + [1982] = 1960, + [1983] = 1961, + [1984] = 1962, + [1985] = 1971, + [1986] = 1986, + [1987] = 1987, + [1988] = 1971, + [1989] = 1971, [1990] = 1990, - [1991] = 1919, + [1991] = 1991, [1992] = 1992, [1993] = 1993, - [1994] = 1921, - [1995] = 1995, - [1996] = 1996, - [1997] = 1948, - [1998] = 1952, - [1999] = 1999, - [2000] = 1929, - [2001] = 2001, - [2002] = 1917, - [2003] = 2003, - [2004] = 2004, + [1994] = 1994, + [1995] = 1967, + [1996] = 1960, + [1997] = 1997, + [1998] = 1962, + [1999] = 1961, + [2000] = 2000, + [2001] = 1967, + [2002] = 1960, + [2003] = 1962, + [2004] = 1968, [2005] = 2005, - [2006] = 1951, - [2007] = 1977, - [2008] = 1993, - [2009] = 1995, - [2010] = 2010, + [2006] = 2006, + [2007] = 1968, + [2008] = 2008, + [2009] = 2009, + [2010] = 1968, [2011] = 2011, - [2012] = 1951, + [2012] = 2012, [2013] = 2013, - [2014] = 1931, - [2015] = 1943, - [2016] = 1919, - [2017] = 1921, - [2018] = 1929, + [2014] = 2014, + [2015] = 2015, + [2016] = 2016, + [2017] = 2017, + [2018] = 2018, [2019] = 2019, [2020] = 2020, [2021] = 2021, - [2022] = 1951, - [2023] = 1925, - [2024] = 1940, - [2025] = 1953, + [2022] = 2022, + [2023] = 2023, + [2024] = 1971, + [2025] = 1961, [2026] = 1967, - [2027] = 2027, - [2028] = 2011, - [2029] = 2029, - [2030] = 1929, - [2031] = 1931, - [2032] = 2032, - [2033] = 1951, - [2034] = 2034, - [2035] = 2035, - [2036] = 1943, - [2037] = 1969, - [2038] = 1972, - [2039] = 1931, + [2027] = 1960, + [2028] = 1962, + [2029] = 1968, + [2030] = 2030, + [2031] = 1961, + [2032] = 1967, + [2033] = 1960, + [2034] = 1962, + [2035] = 1968, + [2036] = 2036, + [2037] = 2037, + [2038] = 2038, + [2039] = 2039, [2040] = 2040, - [2041] = 2041, - [2042] = 1951, - [2043] = 1931, - [2044] = 1943, - [2045] = 1919, - [2046] = 1921, - [2047] = 1929, + [2041] = 2039, + [2042] = 2042, + [2043] = 2043, + [2044] = 2044, + [2045] = 2045, + [2046] = 2014, + [2047] = 2015, [2048] = 2048, - [2049] = 1919, - [2050] = 2050, + [2049] = 2018, + [2050] = 2036, [2051] = 2051, - [2052] = 2052, - [2053] = 2053, - [2054] = 2054, - [2055] = 2055, - [2056] = 2056, - [2057] = 2057, - [2058] = 2058, - [2059] = 2059, - [2060] = 2051, + [2052] = 2042, + [2053] = 1971, + [2054] = 2051, + [2055] = 1961, + [2056] = 1967, + [2057] = 1960, + [2058] = 1962, + [2059] = 1968, + [2060] = 2060, [2061] = 2061, - [2062] = 2051, - [2063] = 2063, - [2064] = 2051, + [2062] = 2062, + [2063] = 1971, + [2064] = 2064, [2065] = 2065, [2066] = 2066, - [2067] = 2067, - [2068] = 2051, - [2069] = 2051, + [2067] = 2061, + [2068] = 1974, + [2069] = 2016, [2070] = 2070, [2071] = 2071, - [2072] = 2072, - [2073] = 2051, - [2074] = 2074, - [2075] = 2051, + [2072] = 1961, + [2073] = 2073, + [2074] = 1960, + [2075] = 2075, [2076] = 2076, - [2077] = 2077, - [2078] = 2078, - [2079] = 2079, - [2080] = 2080, - [2081] = 2051, + [2077] = 1962, + [2078] = 1967, + [2079] = 2017, + [2080] = 2066, + [2081] = 2019, [2082] = 2082, - [2083] = 2083, - [2084] = 2084, - [2085] = 2085, - [2086] = 2086, - [2087] = 2087, - [2088] = 2088, + [2083] = 1971, + [2084] = 1961, + [2085] = 1967, + [2086] = 1960, + [2087] = 1962, + [2088] = 1968, [2089] = 2089, - [2090] = 2090, + [2090] = 1971, [2091] = 2091, [2092] = 2092, [2093] = 2093, [2094] = 2094, - [2095] = 2095, - [2096] = 2096, + [2095] = 2093, + [2096] = 2093, [2097] = 2097, [2098] = 2098, - [2099] = 2099, + [2099] = 2093, [2100] = 2100, [2101] = 2101, [2102] = 2102, [2103] = 2103, - [2104] = 2104, + [2104] = 2093, [2105] = 2105, [2106] = 2106, - [2107] = 2107, - [2108] = 2108, + [2107] = 2093, + [2108] = 2093, [2109] = 2109, [2110] = 2110, [2111] = 2111, [2112] = 2112, [2113] = 2113, - [2114] = 2114, + [2114] = 2093, [2115] = 2115, [2116] = 2116, [2117] = 2117, [2118] = 2118, - [2119] = 2101, - [2120] = 2101, - [2121] = 2121, + [2119] = 2119, + [2120] = 2120, + [2121] = 2093, [2122] = 2122, [2123] = 2123, [2124] = 2124, @@ -5530,9 +5641,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2135] = 2135, [2136] = 2136, [2137] = 2137, - [2138] = 2098, + [2138] = 2138, [2139] = 2139, - [2140] = 2140, + [2140] = 2139, [2141] = 2141, [2142] = 2142, [2143] = 2143, @@ -5544,7 +5655,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2149] = 2149, [2150] = 2150, [2151] = 2151, - [2152] = 2101, + [2152] = 2152, [2153] = 2153, [2154] = 2154, [2155] = 2155, @@ -5555,35 +5666,79 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2160] = 2160, [2161] = 2161, [2162] = 2162, - [2163] = 2163, - [2164] = 2164, + [2163] = 2139, + [2164] = 2139, [2165] = 2165, [2166] = 2166, [2167] = 2167, [2168] = 2168, [2169] = 2169, - [2170] = 2170, - [2171] = 2101, + [2170] = 2139, + [2171] = 2171, [2172] = 2172, - [2173] = 2173, + [2173] = 2169, [2174] = 2174, [2175] = 2175, [2176] = 2176, [2177] = 2177, [2178] = 2178, - [2179] = 2101, - [2180] = 2101, + [2179] = 2179, + [2180] = 2180, [2181] = 2181, [2182] = 2182, [2183] = 2183, [2184] = 2184, - [2185] = 2101, + [2185] = 2185, [2186] = 2186, - [2187] = 2140, - [2188] = 2114, + [2187] = 2187, + [2188] = 2188, [2189] = 2189, - [2190] = 2101, + [2190] = 2190, [2191] = 2191, + [2192] = 2192, + [2193] = 2193, + [2194] = 2194, + [2195] = 2195, + [2196] = 2196, + [2197] = 2197, + [2198] = 2139, + [2199] = 2199, + [2200] = 2200, + [2201] = 2201, + [2202] = 2202, + [2203] = 2203, + [2204] = 2204, + [2205] = 2205, + [2206] = 2206, + [2207] = 2207, + [2208] = 2208, + [2209] = 2209, + [2210] = 2210, + [2211] = 2211, + [2212] = 2212, + [2213] = 2213, + [2214] = 2214, + [2215] = 2215, + [2216] = 2216, + [2217] = 2217, + [2218] = 2218, + [2219] = 2219, + [2220] = 2220, + [2221] = 2139, + [2222] = 2222, + [2223] = 2139, + [2224] = 2224, + [2225] = 2225, + [2226] = 2226, + [2227] = 2227, + [2228] = 2228, + [2229] = 2229, + [2230] = 2230, + [2231] = 2207, + [2232] = 2187, + [2233] = 2233, + [2234] = 2139, + [2235] = 2235, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -5983,17 +6138,18 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { 'd', 5, 'e', 6, 'f', 7, - 'i', 8, - 'm', 9, - 'n', 10, - 'o', 11, - 'r', 12, - 's', 13, - 't', 14, - 'u', 15, - 'v', 16, - 'w', 17, - 'y', 18, + 'h', 8, + 'i', 9, + 'm', 10, + 'n', 11, + 'o', 12, + 'r', 13, + 's', 14, + 't', 15, + 'u', 16, + 'v', 17, + 'w', 18, + 'y', 19, ); if (lookahead == '\t' || lookahead == '\r' || @@ -6003,798 +6159,810 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_sink); END_STATE(); case 2: - if (lookahead == 'l') ADVANCE(19); - if (lookahead == 'n') ADVANCE(20); + if (lookahead == 'l') ADVANCE(20); + if (lookahead == 'n') ADVANCE(21); END_STATE(); case 3: - if (lookahead == 'o') ADVANCE(21); - if (lookahead == 'r') ADVANCE(22); + if (lookahead == 'o') ADVANCE(22); + if (lookahead == 'r') ADVANCE(23); END_STATE(); case 4: - if (lookahead == '_') ADVANCE(23); - if (lookahead == 'a') ADVANCE(24); - if (lookahead == 'o') ADVANCE(25); + if (lookahead == '_') ADVANCE(24); + if (lookahead == 'a') ADVANCE(25); + if (lookahead == 'o') ADVANCE(26); END_STATE(); case 5: - if (lookahead == 'e') ADVANCE(26); - if (lookahead == 'i') ADVANCE(27); + if (lookahead == 'e') ADVANCE(27); + if (lookahead == 'i') ADVANCE(28); END_STATE(); case 6: - if (lookahead == 'l') ADVANCE(28); - if (lookahead == 'n') ADVANCE(29); - if (lookahead == 'r') ADVANCE(30); + if (lookahead == 'l') ADVANCE(29); + if (lookahead == 'n') ADVANCE(30); + if (lookahead == 'r') ADVANCE(31); END_STATE(); case 7: - if (lookahead == '3') ADVANCE(31); - if (lookahead == '6') ADVANCE(32); - if (lookahead == 'a') ADVANCE(33); - if (lookahead == 'l') ADVANCE(34); - if (lookahead == 'o') ADVANCE(35); - if (lookahead == 'u') ADVANCE(36); + if (lookahead == '3') ADVANCE(32); + if (lookahead == '6') ADVANCE(33); + if (lookahead == 'a') ADVANCE(34); + if (lookahead == 'l') ADVANCE(35); + if (lookahead == 'o') ADVANCE(36); + if (lookahead == 'u') ADVANCE(37); END_STATE(); case 8: - ADVANCE_MAP( - '1', 37, - '3', 38, - '6', 39, - '8', 40, - 'f', 41, - 'm', 42, - 'n', 43, - 's', 44, - ); + if (lookahead == 'i') ADVANCE(38); END_STATE(); case 9: - if (lookahead == 'a') ADVANCE(45); - if (lookahead == 'u') ADVANCE(46); + ADVANCE_MAP( + '1', 39, + '3', 40, + '6', 41, + '8', 42, + 'f', 43, + 'm', 44, + 'n', 45, + 's', 46, + ); END_STATE(); case 10: - if (lookahead == 'o') ADVANCE(47); + if (lookahead == 'a') ADVANCE(47); + if (lookahead == 'u') ADVANCE(48); END_STATE(); case 11: - if (lookahead == 'p') ADVANCE(48); - if (lookahead == 'r') ADVANCE(49); + if (lookahead == 'o') ADVANCE(49); END_STATE(); case 12: - if (lookahead == 'a') ADVANCE(50); - if (lookahead == 'e') ADVANCE(51); + if (lookahead == 'p') ADVANCE(50); + if (lookahead == 'r') ADVANCE(51); END_STATE(); case 13: - if (lookahead == 't') ADVANCE(52); + if (lookahead == 'a') ADVANCE(52); + if (lookahead == 'e') ADVANCE(53); END_STATE(); case 14: - if (lookahead == 'r') ADVANCE(53); + if (lookahead == 't') ADVANCE(54); END_STATE(); case 15: - if (lookahead == '1') ADVANCE(54); - if (lookahead == '3') ADVANCE(55); - if (lookahead == '6') ADVANCE(56); - if (lookahead == '8') ADVANCE(57); - if (lookahead == 'n') ADVANCE(58); - if (lookahead == 's') ADVANCE(59); + if (lookahead == 'r') ADVANCE(55); END_STATE(); case 16: - if (lookahead == 'o') ADVANCE(60); + if (lookahead == '1') ADVANCE(56); + if (lookahead == '3') ADVANCE(57); + if (lookahead == '6') ADVANCE(58); + if (lookahead == '8') ADVANCE(59); + if (lookahead == 'n') ADVANCE(60); + if (lookahead == 's') ADVANCE(61); END_STATE(); case 17: - if (lookahead == 'h') ADVANCE(61); + if (lookahead == 'o') ADVANCE(62); END_STATE(); case 18: - if (lookahead == 'i') ADVANCE(62); + if (lookahead == 'h') ADVANCE(63); END_STATE(); case 19: - if (lookahead == 'i') ADVANCE(63); + if (lookahead == 'i') ADVANCE(64); END_STATE(); case 20: - if (lookahead == 'd') ADVANCE(64); - if (lookahead == 'y') ADVANCE(65); + if (lookahead == 'i') ADVANCE(65); END_STATE(); case 21: - if (lookahead == 'o') ADVANCE(66); + if (lookahead == 'd') ADVANCE(66); + if (lookahead == 'y') ADVANCE(67); END_STATE(); case 22: - if (lookahead == 'e') ADVANCE(67); + if (lookahead == 'o') ADVANCE(68); END_STATE(); case 23: - if (lookahead == 'c') ADVANCE(68); - if (lookahead == 'd') ADVANCE(69); - if (lookahead == 'f') ADVANCE(70); - if (lookahead == 'i') ADVANCE(71); - if (lookahead == 'l') ADVANCE(72); - if (lookahead == 's') ADVANCE(73); - if (lookahead == 'u') ADVANCE(74); + if (lookahead == 'e') ADVANCE(69); END_STATE(); case 24: - if (lookahead == 't') ADVANCE(75); + if (lookahead == 'c') ADVANCE(70); + if (lookahead == 'd') ADVANCE(71); + if (lookahead == 'f') ADVANCE(72); + if (lookahead == 'i') ADVANCE(73); + if (lookahead == 'l') ADVANCE(74); + if (lookahead == 's') ADVANCE(75); + if (lookahead == 'u') ADVANCE(76); END_STATE(); case 25: - if (lookahead == 'n') ADVANCE(76); + if (lookahead == 't') ADVANCE(77); END_STATE(); case 26: - if (lookahead == 'f') ADVANCE(77); + if (lookahead == 'n') ADVANCE(78); END_STATE(); case 27: - if (lookahead == 's') ADVANCE(78); + if (lookahead == 'f') ADVANCE(79); END_STATE(); case 28: - if (lookahead == 's') ADVANCE(79); + if (lookahead == 's') ADVANCE(80); END_STATE(); case 29: - if (lookahead == 'u') ADVANCE(80); + if (lookahead == 's') ADVANCE(81); END_STATE(); case 30: - if (lookahead == 'r') ADVANCE(81); + if (lookahead == 'u') ADVANCE(82); END_STATE(); case 31: - if (lookahead == '2') ADVANCE(82); + if (lookahead == 'r') ADVANCE(83); END_STATE(); case 32: - if (lookahead == '4') ADVANCE(83); + if (lookahead == '2') ADVANCE(84); END_STATE(); case 33: - if (lookahead == 'l') ADVANCE(84); + if (lookahead == '4') ADVANCE(85); END_STATE(); case 34: - if (lookahead == 'o') ADVANCE(85); + if (lookahead == 'l') ADVANCE(86); END_STATE(); case 35: - if (lookahead == 'r') ADVANCE(86); + if (lookahead == 'o') ADVANCE(87); END_STATE(); case 36: - if (lookahead == 'n') ADVANCE(87); + if (lookahead == 'r') ADVANCE(88); END_STATE(); case 37: - if (lookahead == '6') ADVANCE(88); + if (lookahead == 'n') ADVANCE(89); END_STATE(); case 38: - if (lookahead == '2') ADVANCE(89); + if (lookahead == 'd') ADVANCE(90); END_STATE(); case 39: - if (lookahead == '4') ADVANCE(90); + if (lookahead == '6') ADVANCE(91); END_STATE(); case 40: - ACCEPT_TOKEN(anon_sym_i8); + if (lookahead == '2') ADVANCE(92); END_STATE(); case 41: - ACCEPT_TOKEN(anon_sym_if); + if (lookahead == '4') ADVANCE(93); END_STATE(); case 42: - if (lookahead == 'p') ADVANCE(91); + ACCEPT_TOKEN(anon_sym_i8); END_STATE(); case 43: - if (lookahead == 't') ADVANCE(92); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 44: - if (lookahead == 'i') ADVANCE(93); + if (lookahead == 'p') ADVANCE(94); END_STATE(); case 45: - if (lookahead == 't') ADVANCE(94); - END_STATE(); - case 46: if (lookahead == 't') ADVANCE(95); END_STATE(); + case 46: + if (lookahead == 'i') ADVANCE(96); + END_STATE(); case 47: - if (lookahead == 'n') ADVANCE(96); + if (lookahead == 't') ADVANCE(97); END_STATE(); case 48: - if (lookahead == 'a') ADVANCE(97); + if (lookahead == 't') ADVANCE(98); END_STATE(); case 49: - ACCEPT_TOKEN(anon_sym_or); - if (lookahead == 'e') ADVANCE(98); - END_STATE(); - case 50: if (lookahead == 'n') ADVANCE(99); END_STATE(); + case 50: + if (lookahead == 'a') ADVANCE(100); + END_STATE(); case 51: - if (lookahead == 't') ADVANCE(100); + ACCEPT_TOKEN(anon_sym_or); + if (lookahead == 'e') ADVANCE(101); END_STATE(); case 52: - if (lookahead == 'r') ADVANCE(101); + if (lookahead == 'n') ADVANCE(102); END_STATE(); case 53: - if (lookahead == 'u') ADVANCE(102); - if (lookahead == 'y') ADVANCE(103); + if (lookahead == 't') ADVANCE(103); END_STATE(); case 54: - if (lookahead == '6') ADVANCE(104); + if (lookahead == 'r') ADVANCE(104); END_STATE(); case 55: - if (lookahead == '2') ADVANCE(105); + if (lookahead == 'u') ADVANCE(105); + if (lookahead == 'y') ADVANCE(106); END_STATE(); case 56: - if (lookahead == '4') ADVANCE(106); + if (lookahead == '6') ADVANCE(107); END_STATE(); case 57: - ACCEPT_TOKEN(anon_sym_u8); + if (lookahead == '2') ADVANCE(108); END_STATE(); case 58: - if (lookahead == 'd') ADVANCE(107); - if (lookahead == 'i') ADVANCE(108); + if (lookahead == '4') ADVANCE(109); END_STATE(); case 59: - if (lookahead == 'i') ADVANCE(109); + ACCEPT_TOKEN(anon_sym_u8); END_STATE(); case 60: - if (lookahead == 'i') ADVANCE(110); - END_STATE(); - case 61: + if (lookahead == 'd') ADVANCE(110); if (lookahead == 'i') ADVANCE(111); END_STATE(); + case 61: + if (lookahead == 'i') ADVANCE(112); + END_STATE(); case 62: - if (lookahead == 'e') ADVANCE(112); + if (lookahead == 'i') ADVANCE(113); END_STATE(); case 63: - if (lookahead == 'a') ADVANCE(113); + if (lookahead == 'i') ADVANCE(114); END_STATE(); case 64: - ACCEPT_TOKEN(anon_sym_and); + if (lookahead == 'e') ADVANCE(115); END_STATE(); case 65: - if (lookahead == 'o') ADVANCE(114); - END_STATE(); - case 66: - if (lookahead == 'l') ADVANCE(115); - END_STATE(); - case 67: if (lookahead == 'a') ADVANCE(116); END_STATE(); + case 66: + ACCEPT_TOKEN(anon_sym_and); + END_STATE(); + case 67: + if (lookahead == 'o') ADVANCE(117); + END_STATE(); case 68: - if (lookahead == 'h') ADVANCE(117); + if (lookahead == 'l') ADVANCE(118); END_STATE(); case 69: - if (lookahead == 'o') ADVANCE(118); + if (lookahead == 'a') ADVANCE(119); END_STATE(); case 70: - if (lookahead == 'l') ADVANCE(119); - if (lookahead == 'u') ADVANCE(120); + if (lookahead == 'h') ADVANCE(120); END_STATE(); case 71: - if (lookahead == 'n') ADVANCE(121); + if (lookahead == 'o') ADVANCE(121); END_STATE(); case 72: - if (lookahead == 'o') ADVANCE(122); + if (lookahead == 'l') ADVANCE(122); + if (lookahead == 'u') ADVANCE(123); END_STATE(); case 73: - if (lookahead == 'c') ADVANCE(123); - if (lookahead == 'h') ADVANCE(124); - if (lookahead == 't') ADVANCE(125); + if (lookahead == 'n') ADVANCE(124); END_STATE(); case 74: - if (lookahead == 'c') ADVANCE(126); - if (lookahead == 'i') ADVANCE(127); - if (lookahead == 'l') ADVANCE(128); - if (lookahead == 's') ADVANCE(129); + if (lookahead == 'o') ADVANCE(125); END_STATE(); case 75: - if (lookahead == 'c') ADVANCE(130); + if (lookahead == 'c') ADVANCE(126); + if (lookahead == 'h') ADVANCE(127); + if (lookahead == 't') ADVANCE(128); END_STATE(); case 76: - if (lookahead == 't') ADVANCE(131); + if (lookahead == 'c') ADVANCE(129); + if (lookahead == 'i') ADVANCE(130); + if (lookahead == 'l') ADVANCE(131); + if (lookahead == 's') ADVANCE(132); END_STATE(); case 77: - if (lookahead == 'e') ADVANCE(132); + if (lookahead == 'c') ADVANCE(133); END_STATE(); case 78: - if (lookahead == 't') ADVANCE(133); + if (lookahead == 't') ADVANCE(134); END_STATE(); case 79: - if (lookahead == 'e') ADVANCE(134); + if (lookahead == 'e') ADVANCE(135); END_STATE(); case 80: - if (lookahead == 'm') ADVANCE(135); + if (lookahead == 't') ADVANCE(136); END_STATE(); case 81: - if (lookahead == 'd') ADVANCE(136); + if (lookahead == 'e') ADVANCE(137); END_STATE(); case 82: - ACCEPT_TOKEN(anon_sym_f32); + if (lookahead == 'm') ADVANCE(138); END_STATE(); case 83: - ACCEPT_TOKEN(anon_sym_f64); + if (lookahead == 'd') ADVANCE(139); END_STATE(); case 84: - if (lookahead == 's') ADVANCE(137); + ACCEPT_TOKEN(anon_sym_f32); END_STATE(); case 85: - if (lookahead == 'a') ADVANCE(138); + ACCEPT_TOKEN(anon_sym_f64); END_STATE(); case 86: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 's') ADVANCE(140); END_STATE(); case 87: - if (lookahead == 'c') ADVANCE(139); + if (lookahead == 'a') ADVANCE(141); END_STATE(); case 88: - ACCEPT_TOKEN(anon_sym_i16); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_i32); - END_STATE(); - case 90: - ACCEPT_TOKEN(anon_sym_i64); - END_STATE(); - case 91: - if (lookahead == 'o') ADVANCE(140); - END_STATE(); - case 92: - ACCEPT_TOKEN(anon_sym_int); - END_STATE(); - case 93: - if (lookahead == 'z') ADVANCE(141); - END_STATE(); - case 94: if (lookahead == 'c') ADVANCE(142); END_STATE(); - case 95: - ACCEPT_TOKEN(anon_sym_mut); - END_STATE(); - case 96: + case 90: if (lookahead == 'e') ADVANCE(143); END_STATE(); + case 91: + ACCEPT_TOKEN(anon_sym_i16); + END_STATE(); + case 92: + ACCEPT_TOKEN(anon_sym_i32); + END_STATE(); + case 93: + ACCEPT_TOKEN(anon_sym_i64); + END_STATE(); + case 94: + if (lookahead == 'o') ADVANCE(144); + END_STATE(); + case 95: + ACCEPT_TOKEN(anon_sym_int); + END_STATE(); + case 96: + if (lookahead == 'z') ADVANCE(145); + END_STATE(); case 97: - if (lookahead == 'q') ADVANCE(144); + if (lookahead == 'c') ADVANCE(146); END_STATE(); case 98: - if (lookahead == 'l') ADVANCE(145); + ACCEPT_TOKEN(anon_sym_mut); END_STATE(); case 99: - if (lookahead == 'g') ADVANCE(146); + if (lookahead == 'e') ADVANCE(147); END_STATE(); case 100: - if (lookahead == 'u') ADVANCE(147); + if (lookahead == 'q') ADVANCE(148); END_STATE(); case 101: - if (lookahead == 'u') ADVANCE(148); + if (lookahead == 'l') ADVANCE(149); END_STATE(); case 102: - if (lookahead == 'e') ADVANCE(149); + if (lookahead == 'g') ADVANCE(150); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_try); + if (lookahead == 'u') ADVANCE(151); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_u16); + if (lookahead == 'u') ADVANCE(152); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_u32); + if (lookahead == 'e') ADVANCE(153); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_u64); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 107: - if (lookahead == 'e') ADVANCE(150); + ACCEPT_TOKEN(anon_sym_u16); END_STATE(); case 108: - if (lookahead == 'o') ADVANCE(151); + ACCEPT_TOKEN(anon_sym_u32); END_STATE(); case 109: - if (lookahead == 'z') ADVANCE(152); + ACCEPT_TOKEN(anon_sym_u64); END_STATE(); case 110: - if (lookahead == 'd') ADVANCE(153); + if (lookahead == 'e') ADVANCE(154); END_STATE(); case 111: - if (lookahead == 'l') ADVANCE(154); + if (lookahead == 'o') ADVANCE(155); END_STATE(); case 112: - if (lookahead == 'l') ADVANCE(155); + if (lookahead == 'z') ADVANCE(156); END_STATE(); case 113: - if (lookahead == 's') ADVANCE(156); + if (lookahead == 'd') ADVANCE(157); END_STATE(); case 114: - if (lookahead == 'p') ADVANCE(157); + if (lookahead == 'l') ADVANCE(158); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_bool); + if (lookahead == 'l') ADVANCE(159); END_STATE(); case 116: - if (lookahead == 'k') ADVANCE(158); + if (lookahead == 's') ADVANCE(160); END_STATE(); case 117: - if (lookahead == 'a') ADVANCE(159); + if (lookahead == 'p') ADVANCE(161); END_STATE(); case 118: - if (lookahead == 'u') ADVANCE(160); + ACCEPT_TOKEN(anon_sym_bool); END_STATE(); case 119: - if (lookahead == 'o') ADVANCE(161); + if (lookahead == 'k') ADVANCE(162); END_STATE(); case 120: - if (lookahead == 'n') ADVANCE(162); + if (lookahead == 'a') ADVANCE(163); END_STATE(); case 121: - if (lookahead == 't') ADVANCE(163); + if (lookahead == 'u') ADVANCE(164); END_STATE(); case 122: - if (lookahead == 'n') ADVANCE(164); + if (lookahead == 'o') ADVANCE(165); END_STATE(); case 123: - if (lookahead == 'h') ADVANCE(165); + if (lookahead == 'n') ADVANCE(166); END_STATE(); case 124: - if (lookahead == 'o') ADVANCE(166); + if (lookahead == 't') ADVANCE(167); END_STATE(); case 125: - if (lookahead == 'r') ADVANCE(167); + if (lookahead == 'n') ADVANCE(168); END_STATE(); case 126: - if (lookahead == 'h') ADVANCE(168); + if (lookahead == 'h') ADVANCE(169); END_STATE(); case 127: - if (lookahead == 'n') ADVANCE(169); - END_STATE(); - case 128: if (lookahead == 'o') ADVANCE(170); END_STATE(); - case 129: - if (lookahead == 'h') ADVANCE(171); + case 128: + if (lookahead == 'r') ADVANCE(171); END_STATE(); - case 130: + case 129: if (lookahead == 'h') ADVANCE(172); END_STATE(); + case 130: + if (lookahead == 'n') ADVANCE(173); + END_STATE(); case 131: - if (lookahead == 'i') ADVANCE(173); + if (lookahead == 'o') ADVANCE(174); END_STATE(); case 132: - if (lookahead == 'r') ADVANCE(174); + if (lookahead == 'h') ADVANCE(175); END_STATE(); case 133: - if (lookahead == 'i') ADVANCE(175); + if (lookahead == 'h') ADVANCE(176); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'i') ADVANCE(177); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_enum); + if (lookahead == 'r') ADVANCE(178); END_STATE(); case 136: - if (lookahead == 'e') ADVANCE(176); + if (lookahead == 'i') ADVANCE(179); END_STATE(); case 137: - if (lookahead == 'e') ADVANCE(177); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 138: - if (lookahead == 't') ADVANCE(178); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_func); - END_STATE(); - case 140: - if (lookahead == 'r') ADVANCE(179); - END_STATE(); - case 141: if (lookahead == 'e') ADVANCE(180); END_STATE(); + case 140: + if (lookahead == 'e') ADVANCE(181); + END_STATE(); + case 141: + if (lookahead == 't') ADVANCE(182); + END_STATE(); case 142: - if (lookahead == 'h') ADVANCE(181); + ACCEPT_TOKEN(anon_sym_func); END_STATE(); case 143: - ACCEPT_TOKEN(sym_none); + ACCEPT_TOKEN(anon_sym_hide); END_STATE(); case 144: - if (lookahead == 'u') ADVANCE(182); + if (lookahead == 'r') ADVANCE(183); END_STATE(); case 145: - if (lookahead == 's') ADVANCE(183); - END_STATE(); - case 146: if (lookahead == 'e') ADVANCE(184); END_STATE(); + case 146: + if (lookahead == 'h') ADVANCE(185); + END_STATE(); case 147: - if (lookahead == 'r') ADVANCE(185); + ACCEPT_TOKEN(sym_none); END_STATE(); case 148: - if (lookahead == 'c') ADVANCE(186); + if (lookahead == 'u') ADVANCE(186); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_true); + if (lookahead == 's') ADVANCE(187); END_STATE(); case 150: - if (lookahead == 'f') ADVANCE(187); + if (lookahead == 'e') ADVANCE(188); END_STATE(); case 151: - if (lookahead == 'n') ADVANCE(188); + if (lookahead == 'r') ADVANCE(189); END_STATE(); case 152: - if (lookahead == 'e') ADVANCE(189); + if (lookahead == 'c') ADVANCE(190); END_STATE(); case 153: - ACCEPT_TOKEN(anon_sym_void); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 154: - if (lookahead == 'e') ADVANCE(190); + if (lookahead == 'f') ADVANCE(191); END_STATE(); case 155: - if (lookahead == 'd') ADVANCE(191); + if (lookahead == 'n') ADVANCE(192); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_alias); + if (lookahead == 'e') ADVANCE(193); END_STATE(); case 157: - if (lookahead == 'a') ADVANCE(192); + ACCEPT_TOKEN(anon_sym_void); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_break); + if (lookahead == 'e') ADVANCE(194); END_STATE(); case 159: - if (lookahead == 'r') ADVANCE(193); + if (lookahead == 'd') ADVANCE(195); END_STATE(); case 160: - if (lookahead == 'b') ADVANCE(194); + ACCEPT_TOKEN(anon_sym_alias); END_STATE(); case 161: - if (lookahead == 'a') ADVANCE(195); + if (lookahead == 'a') ADVANCE(196); END_STATE(); case 162: - if (lookahead == 'c') ADVANCE(196); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_c_int); + if (lookahead == 'r') ADVANCE(197); END_STATE(); case 164: - if (lookahead == 'g') ADVANCE(197); + if (lookahead == 'b') ADVANCE(198); END_STATE(); case 165: - if (lookahead == 'a') ADVANCE(198); + if (lookahead == 'a') ADVANCE(199); END_STATE(); case 166: - if (lookahead == 'r') ADVANCE(199); + if (lookahead == 'c') ADVANCE(200); END_STATE(); case 167: - if (lookahead == 'u') ADVANCE(200); + ACCEPT_TOKEN(anon_sym_c_int); END_STATE(); case 168: - if (lookahead == 'a') ADVANCE(201); + if (lookahead == 'g') ADVANCE(201); END_STATE(); case 169: - if (lookahead == 't') ADVANCE(202); + if (lookahead == 'a') ADVANCE(202); END_STATE(); case 170: - if (lookahead == 'n') ADVANCE(203); + if (lookahead == 'r') ADVANCE(203); END_STATE(); case 171: - if (lookahead == 'o') ADVANCE(204); + if (lookahead == 'u') ADVANCE(204); END_STATE(); case 172: - ACCEPT_TOKEN(anon_sym_catch); + if (lookahead == 'a') ADVANCE(205); END_STATE(); case 173: - if (lookahead == 'n') ADVANCE(205); + if (lookahead == 't') ADVANCE(206); END_STATE(); case 174: - ACCEPT_TOKEN(anon_sym_defer); + if (lookahead == 'n') ADVANCE(207); END_STATE(); case 175: - if (lookahead == 'n') ADVANCE(206); + if (lookahead == 'o') ADVANCE(208); END_STATE(); case 176: - if (lookahead == 'f') ADVANCE(207); + ACCEPT_TOKEN(anon_sym_catch); END_STATE(); case 177: - ACCEPT_TOKEN(anon_sym_false); + if (lookahead == 'n') ADVANCE(209); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_float); + ACCEPT_TOKEN(anon_sym_defer); END_STATE(); case 179: - if (lookahead == 't') ADVANCE(208); + if (lookahead == 'n') ADVANCE(210); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_isize); + if (lookahead == 'f') ADVANCE(211); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_match); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 182: - if (lookahead == 'e') ADVANCE(209); + ACCEPT_TOKEN(anon_sym_float); END_STATE(); case 183: - if (lookahead == 'e') ADVANCE(210); - END_STATE(); - case 184: - ACCEPT_TOKEN(anon_sym_range); - END_STATE(); - case 185: - if (lookahead == 'n') ADVANCE(211); - END_STATE(); - case 186: if (lookahead == 't') ADVANCE(212); END_STATE(); + case 184: + ACCEPT_TOKEN(anon_sym_isize); + END_STATE(); + case 185: + ACCEPT_TOKEN(anon_sym_match); + END_STATE(); + case 186: + if (lookahead == 'e') ADVANCE(213); + END_STATE(); case 187: - if (lookahead == 'i') ADVANCE(213); + if (lookahead == 'e') ADVANCE(214); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_union); + ACCEPT_TOKEN(anon_sym_range); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_usize); + if (lookahead == 'n') ADVANCE(215); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_while); - END_STATE(); - case 191: - ACCEPT_TOKEN(anon_sym_yield); - END_STATE(); - case 192: - if (lookahead == 'q') ADVANCE(214); - END_STATE(); - case 193: - ACCEPT_TOKEN(anon_sym_c_char); - END_STATE(); - case 194: - if (lookahead == 'l') ADVANCE(215); - END_STATE(); - case 195: if (lookahead == 't') ADVANCE(216); END_STATE(); + case 191: + if (lookahead == 'i') ADVANCE(217); + END_STATE(); + case 192: + ACCEPT_TOKEN(anon_sym_union); + END_STATE(); + case 193: + ACCEPT_TOKEN(anon_sym_usize); + END_STATE(); + case 194: + ACCEPT_TOKEN(anon_sym_while); + END_STATE(); + case 195: + ACCEPT_TOKEN(anon_sym_yield); + END_STATE(); case 196: - ACCEPT_TOKEN(anon_sym_c_func); + if (lookahead == 'q') ADVANCE(218); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_c_long); - if (lookahead == 'd') ADVANCE(217); - if (lookahead == 'l') ADVANCE(218); + ACCEPT_TOKEN(anon_sym_c_char); END_STATE(); case 198: - if (lookahead == 'r') ADVANCE(219); + if (lookahead == 'l') ADVANCE(219); END_STATE(); case 199: if (lookahead == 't') ADVANCE(220); END_STATE(); case 200: - if (lookahead == 'c') ADVANCE(221); + ACCEPT_TOKEN(anon_sym_c_func); END_STATE(); case 201: - if (lookahead == 'r') ADVANCE(222); + ACCEPT_TOKEN(anon_sym_c_long); + if (lookahead == 'd') ADVANCE(221); + if (lookahead == 'l') ADVANCE(222); END_STATE(); case 202: - ACCEPT_TOKEN(anon_sym_c_uint); + if (lookahead == 'r') ADVANCE(223); END_STATE(); case 203: - if (lookahead == 'g') ADVANCE(223); + if (lookahead == 't') ADVANCE(224); END_STATE(); case 204: - if (lookahead == 'r') ADVANCE(224); + if (lookahead == 'c') ADVANCE(225); END_STATE(); case 205: - if (lookahead == 'u') ADVANCE(225); + if (lookahead == 'r') ADVANCE(226); END_STATE(); case 206: - if (lookahead == 'c') ADVANCE(226); + ACCEPT_TOKEN(anon_sym_c_uint); END_STATE(); case 207: - if (lookahead == 'e') ADVANCE(227); + if (lookahead == 'g') ADVANCE(227); END_STATE(); case 208: - ACCEPT_TOKEN(anon_sym_import); + if (lookahead == 'r') ADVANCE(228); END_STATE(); case 209: - ACCEPT_TOKEN(sym_opaque_type); - END_STATE(); - case 210: - ACCEPT_TOKEN(anon_sym_orelse); - END_STATE(); - case 211: - ACCEPT_TOKEN(anon_sym_return); - END_STATE(); - case 212: - ACCEPT_TOKEN(anon_sym_struct); - END_STATE(); - case 213: - if (lookahead == 'n') ADVANCE(228); - END_STATE(); - case 214: if (lookahead == 'u') ADVANCE(229); END_STATE(); + case 210: + if (lookahead == 'c') ADVANCE(230); + END_STATE(); + case 211: + if (lookahead == 'e') ADVANCE(231); + END_STATE(); + case 212: + ACCEPT_TOKEN(anon_sym_import); + END_STATE(); + case 213: + ACCEPT_TOKEN(sym_opaque_type); + END_STATE(); + case 214: + ACCEPT_TOKEN(anon_sym_orelse); + END_STATE(); case 215: - if (lookahead == 'e') ADVANCE(230); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 216: - ACCEPT_TOKEN(anon_sym_c_float); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 217: - if (lookahead == 'o') ADVANCE(231); + if (lookahead == 'n') ADVANCE(232); END_STATE(); case 218: - if (lookahead == 'o') ADVANCE(232); + if (lookahead == 'u') ADVANCE(233); END_STATE(); case 219: - ACCEPT_TOKEN(anon_sym_c_schar); + if (lookahead == 'e') ADVANCE(234); END_STATE(); case 220: - ACCEPT_TOKEN(anon_sym_c_short); + ACCEPT_TOKEN(anon_sym_c_float); END_STATE(); case 221: - if (lookahead == 't') ADVANCE(233); + if (lookahead == 'o') ADVANCE(235); END_STATE(); case 222: - ACCEPT_TOKEN(anon_sym_c_uchar); + if (lookahead == 'o') ADVANCE(236); END_STATE(); case 223: - ACCEPT_TOKEN(anon_sym_c_ulong); - if (lookahead == 'l') ADVANCE(234); + ACCEPT_TOKEN(anon_sym_c_schar); END_STATE(); case 224: - if (lookahead == 't') ADVANCE(235); + ACCEPT_TOKEN(anon_sym_c_short); END_STATE(); case 225: - if (lookahead == 'e') ADVANCE(236); - END_STATE(); - case 226: if (lookahead == 't') ADVANCE(237); END_STATE(); + case 226: + ACCEPT_TOKEN(anon_sym_c_uchar); + END_STATE(); case 227: - if (lookahead == 'r') ADVANCE(238); + ACCEPT_TOKEN(anon_sym_c_ulong); + if (lookahead == 'l') ADVANCE(238); END_STATE(); case 228: - if (lookahead == 'e') ADVANCE(239); + if (lookahead == 't') ADVANCE(239); END_STATE(); case 229: if (lookahead == 'e') ADVANCE(240); END_STATE(); case 230: - ACCEPT_TOKEN(anon_sym_c_double); + if (lookahead == 't') ADVANCE(241); END_STATE(); case 231: - if (lookahead == 'u') ADVANCE(241); + if (lookahead == 'r') ADVANCE(242); END_STATE(); case 232: - if (lookahead == 'n') ADVANCE(242); + if (lookahead == 'e') ADVANCE(243); END_STATE(); case 233: - ACCEPT_TOKEN(anon_sym_c_struct); + if (lookahead == 'e') ADVANCE(244); END_STATE(); case 234: - if (lookahead == 'o') ADVANCE(243); + ACCEPT_TOKEN(anon_sym_c_double); END_STATE(); case 235: - ACCEPT_TOKEN(anon_sym_c_ushort); + if (lookahead == 'u') ADVANCE(245); END_STATE(); case 236: - ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == 'n') ADVANCE(246); END_STATE(); case 237: - ACCEPT_TOKEN(anon_sym_distinct); + ACCEPT_TOKEN(anon_sym_c_struct); END_STATE(); case 238: - ACCEPT_TOKEN(anon_sym_errdefer); + if (lookahead == 'o') ADVANCE(247); END_STATE(); case 239: - if (lookahead == 'd') ADVANCE(244); + ACCEPT_TOKEN(anon_sym_c_ushort); END_STATE(); case 240: - ACCEPT_TOKEN(anon_sym_anyopaque); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 241: - if (lookahead == 'b') ADVANCE(245); + ACCEPT_TOKEN(anon_sym_distinct); END_STATE(); case 242: - if (lookahead == 'g') ADVANCE(246); + ACCEPT_TOKEN(anon_sym_errdefer); END_STATE(); case 243: - if (lookahead == 'n') ADVANCE(247); + if (lookahead == 'd') ADVANCE(248); END_STATE(); case 244: - ACCEPT_TOKEN(sym_undefined); + ACCEPT_TOKEN(anon_sym_anyopaque); END_STATE(); case 245: - if (lookahead == 'l') ADVANCE(248); + if (lookahead == 'b') ADVANCE(249); END_STATE(); case 246: - ACCEPT_TOKEN(anon_sym_c_longlong); + if (lookahead == 'g') ADVANCE(250); END_STATE(); case 247: - if (lookahead == 'g') ADVANCE(249); + if (lookahead == 'n') ADVANCE(251); END_STATE(); case 248: - if (lookahead == 'e') ADVANCE(250); + ACCEPT_TOKEN(sym_undefined); END_STATE(); case 249: - ACCEPT_TOKEN(anon_sym_c_ulonglong); + if (lookahead == 'l') ADVANCE(252); END_STATE(); case 250: + ACCEPT_TOKEN(anon_sym_c_longlong); + END_STATE(); + case 251: + if (lookahead == 'g') ADVANCE(253); + END_STATE(); + case 252: + if (lookahead == 'e') ADVANCE(254); + END_STATE(); + case 253: + ACCEPT_TOKEN(anon_sym_c_ulonglong); + END_STATE(); + case 254: ACCEPT_TOKEN(anon_sym_c_longdouble); END_STATE(); default: @@ -7485,7 +7653,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [679] = {.lex_state = 0}, [680] = {.lex_state = 0}, [681] = {.lex_state = 0}, - [682] = {.lex_state = 1}, + [682] = {.lex_state = 0}, [683] = {.lex_state = 0}, [684] = {.lex_state = 0}, [685] = {.lex_state = 0}, @@ -7493,7 +7661,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [687] = {.lex_state = 0}, [688] = {.lex_state = 0}, [689] = {.lex_state = 0}, - [690] = {.lex_state = 0}, + [690] = {.lex_state = 1}, [691] = {.lex_state = 0}, [692] = {.lex_state = 0}, [693] = {.lex_state = 0}, @@ -8304,41 +8472,41 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1498] = {.lex_state = 0}, [1499] = {.lex_state = 0}, [1500] = {.lex_state = 0}, - [1501] = {.lex_state = 2}, - [1502] = {.lex_state = 2}, - [1503] = {.lex_state = 2}, - [1504] = {.lex_state = 2}, - [1505] = {.lex_state = 2}, - [1506] = {.lex_state = 2}, - [1507] = {.lex_state = 2}, - [1508] = {.lex_state = 2}, - [1509] = {.lex_state = 2}, - [1510] = {.lex_state = 2}, - [1511] = {.lex_state = 2}, - [1512] = {.lex_state = 2}, - [1513] = {.lex_state = 2}, - [1514] = {.lex_state = 2}, + [1501] = {.lex_state = 0}, + [1502] = {.lex_state = 0}, + [1503] = {.lex_state = 0}, + [1504] = {.lex_state = 0}, + [1505] = {.lex_state = 0}, + [1506] = {.lex_state = 0}, + [1507] = {.lex_state = 0}, + [1508] = {.lex_state = 0}, + [1509] = {.lex_state = 0}, + [1510] = {.lex_state = 0}, + [1511] = {.lex_state = 0}, + [1512] = {.lex_state = 0}, + [1513] = {.lex_state = 0}, + [1514] = {.lex_state = 0}, [1515] = {.lex_state = 0}, - [1516] = {.lex_state = 2}, - [1517] = {.lex_state = 2}, - [1518] = {.lex_state = 2}, - [1519] = {.lex_state = 2}, - [1520] = {.lex_state = 0}, - [1521] = {.lex_state = 0}, - [1522] = {.lex_state = 0}, - [1523] = {.lex_state = 0}, - [1524] = {.lex_state = 0}, - [1525] = {.lex_state = 0}, - [1526] = {.lex_state = 0}, - [1527] = {.lex_state = 0}, - [1528] = {.lex_state = 0}, - [1529] = {.lex_state = 0}, - [1530] = {.lex_state = 0}, - [1531] = {.lex_state = 0}, - [1532] = {.lex_state = 0}, - [1533] = {.lex_state = 0}, + [1516] = {.lex_state = 0}, + [1517] = {.lex_state = 0}, + [1518] = {.lex_state = 0}, + [1519] = {.lex_state = 0}, + [1520] = {.lex_state = 2}, + [1521] = {.lex_state = 2}, + [1522] = {.lex_state = 2}, + [1523] = {.lex_state = 2}, + [1524] = {.lex_state = 2}, + [1525] = {.lex_state = 2}, + [1526] = {.lex_state = 2}, + [1527] = {.lex_state = 2}, + [1528] = {.lex_state = 2}, + [1529] = {.lex_state = 2}, + [1530] = {.lex_state = 2}, + [1531] = {.lex_state = 2}, + [1532] = {.lex_state = 2}, + [1533] = {.lex_state = 2}, [1534] = {.lex_state = 0}, - [1535] = {.lex_state = 0}, + [1535] = {.lex_state = 2}, [1536] = {.lex_state = 0}, [1537] = {.lex_state = 0}, [1538] = {.lex_state = 0}, @@ -8346,11 +8514,11 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1540] = {.lex_state = 0}, [1541] = {.lex_state = 0}, [1542] = {.lex_state = 0}, - [1543] = {.lex_state = 0}, + [1543] = {.lex_state = 2}, [1544] = {.lex_state = 0}, [1545] = {.lex_state = 0}, - [1546] = {.lex_state = 0}, - [1547] = {.lex_state = 0}, + [1546] = {.lex_state = 2}, + [1547] = {.lex_state = 2}, [1548] = {.lex_state = 0}, [1549] = {.lex_state = 0}, [1550] = {.lex_state = 0}, @@ -8524,7 +8692,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1718] = {.lex_state = 0}, [1719] = {.lex_state = 0}, [1720] = {.lex_state = 0}, - [1721] = {.lex_state = 2}, + [1721] = {.lex_state = 0}, [1722] = {.lex_state = 0}, [1723] = {.lex_state = 0}, [1724] = {.lex_state = 0}, @@ -8535,7 +8703,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1729] = {.lex_state = 0}, [1730] = {.lex_state = 0}, [1731] = {.lex_state = 0}, - [1732] = {.lex_state = 2}, + [1732] = {.lex_state = 0}, [1733] = {.lex_state = 0}, [1734] = {.lex_state = 0}, [1735] = {.lex_state = 0}, @@ -8582,10 +8750,10 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1776] = {.lex_state = 0}, [1777] = {.lex_state = 0}, [1778] = {.lex_state = 0}, - [1779] = {.lex_state = 2}, + [1779] = {.lex_state = 0}, [1780] = {.lex_state = 0}, [1781] = {.lex_state = 0}, - [1782] = {.lex_state = 2}, + [1782] = {.lex_state = 0}, [1783] = {.lex_state = 0}, [1784] = {.lex_state = 0}, [1785] = {.lex_state = 0}, @@ -8596,7 +8764,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1790] = {.lex_state = 0}, [1791] = {.lex_state = 0}, [1792] = {.lex_state = 0}, - [1793] = {.lex_state = 3}, + [1793] = {.lex_state = 0}, [1794] = {.lex_state = 0}, [1795] = {.lex_state = 0}, [1796] = {.lex_state = 0}, @@ -8617,17 +8785,17 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1811] = {.lex_state = 0}, [1812] = {.lex_state = 0}, [1813] = {.lex_state = 0}, - [1814] = {.lex_state = 0}, + [1814] = {.lex_state = 2}, [1815] = {.lex_state = 0}, [1816] = {.lex_state = 0}, - [1817] = {.lex_state = 0}, + [1817] = {.lex_state = 3}, [1818] = {.lex_state = 0}, [1819] = {.lex_state = 0}, [1820] = {.lex_state = 0}, [1821] = {.lex_state = 0}, [1822] = {.lex_state = 0}, [1823] = {.lex_state = 0}, - [1824] = {.lex_state = 2}, + [1824] = {.lex_state = 0}, [1825] = {.lex_state = 0}, [1826] = {.lex_state = 0}, [1827] = {.lex_state = 0}, @@ -8644,19 +8812,19 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1838] = {.lex_state = 0}, [1839] = {.lex_state = 0}, [1840] = {.lex_state = 0}, - [1841] = {.lex_state = 3}, + [1841] = {.lex_state = 0}, [1842] = {.lex_state = 0}, [1843] = {.lex_state = 0}, [1844] = {.lex_state = 0}, [1845] = {.lex_state = 0}, [1846] = {.lex_state = 0}, - [1847] = {.lex_state = 0}, + [1847] = {.lex_state = 2}, [1848] = {.lex_state = 0}, [1849] = {.lex_state = 0}, [1850] = {.lex_state = 0}, [1851] = {.lex_state = 0}, [1852] = {.lex_state = 0}, - [1853] = {.lex_state = 0}, + [1853] = {.lex_state = 3}, [1854] = {.lex_state = 0}, [1855] = {.lex_state = 0}, [1856] = {.lex_state = 0}, @@ -8668,7 +8836,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1862] = {.lex_state = 0}, [1863] = {.lex_state = 0}, [1864] = {.lex_state = 0}, - [1865] = {.lex_state = 0}, + [1865] = {.lex_state = 3}, [1866] = {.lex_state = 0}, [1867] = {.lex_state = 0}, [1868] = {.lex_state = 0}, @@ -8680,13 +8848,13 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1874] = {.lex_state = 0}, [1875] = {.lex_state = 0}, [1876] = {.lex_state = 0}, - [1877] = {.lex_state = 2}, + [1877] = {.lex_state = 0}, [1878] = {.lex_state = 0}, [1879] = {.lex_state = 0}, - [1880] = {.lex_state = 2}, - [1881] = {.lex_state = 2}, - [1882] = {.lex_state = 2}, - [1883] = {.lex_state = 2}, + [1880] = {.lex_state = 0}, + [1881] = {.lex_state = 0}, + [1882] = {.lex_state = 0}, + [1883] = {.lex_state = 0}, [1884] = {.lex_state = 0}, [1885] = {.lex_state = 0}, [1886] = {.lex_state = 0}, @@ -8701,8 +8869,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1895] = {.lex_state = 0}, [1896] = {.lex_state = 0}, [1897] = {.lex_state = 0}, - [1898] = {.lex_state = 0}, - [1899] = {.lex_state = 0}, + [1898] = {.lex_state = 2}, + [1899] = {.lex_state = 2}, [1900] = {.lex_state = 0}, [1901] = {.lex_state = 0}, [1902] = {.lex_state = 0}, @@ -8715,7 +8883,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1909] = {.lex_state = 0}, [1910] = {.lex_state = 0}, [1911] = {.lex_state = 0}, - [1912] = {.lex_state = 3}, + [1912] = {.lex_state = 0}, [1913] = {.lex_state = 0}, [1914] = {.lex_state = 0}, [1915] = {.lex_state = 0}, @@ -8726,12 +8894,12 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1920] = {.lex_state = 0}, [1921] = {.lex_state = 0}, [1922] = {.lex_state = 0}, - [1923] = {.lex_state = 0}, + [1923] = {.lex_state = 2}, [1924] = {.lex_state = 0}, - [1925] = {.lex_state = 0}, - [1926] = {.lex_state = 0}, - [1927] = {.lex_state = 0}, - [1928] = {.lex_state = 0}, + [1925] = {.lex_state = 2}, + [1926] = {.lex_state = 2}, + [1927] = {.lex_state = 2}, + [1928] = {.lex_state = 2}, [1929] = {.lex_state = 0}, [1930] = {.lex_state = 0}, [1931] = {.lex_state = 0}, @@ -8744,7 +8912,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1938] = {.lex_state = 0}, [1939] = {.lex_state = 0}, [1940] = {.lex_state = 0}, - [1941] = {.lex_state = 0}, + [1941] = {.lex_state = 2}, [1942] = {.lex_state = 0}, [1943] = {.lex_state = 0}, [1944] = {.lex_state = 0}, @@ -8868,8 +9036,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2062] = {.lex_state = 0}, [2063] = {.lex_state = 0}, [2064] = {.lex_state = 0}, - [2065] = {.lex_state = 2}, - [2066] = {.lex_state = 2}, + [2065] = {.lex_state = 0}, + [2066] = {.lex_state = 0}, [2067] = {.lex_state = 0}, [2068] = {.lex_state = 0}, [2069] = {.lex_state = 0}, @@ -8912,17 +9080,17 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2106] = {.lex_state = 0}, [2107] = {.lex_state = 0}, [2108] = {.lex_state = 0}, - [2109] = {.lex_state = 0}, + [2109] = {.lex_state = 2}, [2110] = {.lex_state = 0}, [2111] = {.lex_state = 0}, [2112] = {.lex_state = 0}, [2113] = {.lex_state = 0}, [2114] = {.lex_state = 0}, [2115] = {.lex_state = 0}, - [2116] = {.lex_state = 2}, + [2116] = {.lex_state = 0}, [2117] = {.lex_state = 0}, [2118] = {.lex_state = 0}, - [2119] = {.lex_state = 0}, + [2119] = {.lex_state = 2}, [2120] = {.lex_state = 0}, [2121] = {.lex_state = 0}, [2122] = {.lex_state = 0}, @@ -8947,7 +9115,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2141] = {.lex_state = 0}, [2142] = {.lex_state = 0}, [2143] = {.lex_state = 0}, - [2144] = {.lex_state = 0}, + [2144] = {.lex_state = 2}, [2145] = {.lex_state = 0}, [2146] = {.lex_state = 0}, [2147] = {.lex_state = 0}, @@ -8995,6 +9163,50 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2189] = {.lex_state = 0}, [2190] = {.lex_state = 0}, [2191] = {.lex_state = 0}, + [2192] = {.lex_state = 0}, + [2193] = {.lex_state = 0}, + [2194] = {.lex_state = 0}, + [2195] = {.lex_state = 0}, + [2196] = {.lex_state = 0}, + [2197] = {.lex_state = 0}, + [2198] = {.lex_state = 0}, + [2199] = {.lex_state = 0}, + [2200] = {.lex_state = 0}, + [2201] = {.lex_state = 0}, + [2202] = {.lex_state = 0}, + [2203] = {.lex_state = 0}, + [2204] = {.lex_state = 0}, + [2205] = {.lex_state = 0}, + [2206] = {.lex_state = 0}, + [2207] = {.lex_state = 0}, + [2208] = {.lex_state = 0}, + [2209] = {.lex_state = 0}, + [2210] = {.lex_state = 0}, + [2211] = {.lex_state = 0}, + [2212] = {.lex_state = 0}, + [2213] = {.lex_state = 0}, + [2214] = {.lex_state = 0}, + [2215] = {.lex_state = 0}, + [2216] = {.lex_state = 0}, + [2217] = {.lex_state = 0}, + [2218] = {.lex_state = 0}, + [2219] = {.lex_state = 0}, + [2220] = {.lex_state = 0}, + [2221] = {.lex_state = 0}, + [2222] = {.lex_state = 0}, + [2223] = {.lex_state = 0}, + [2224] = {.lex_state = 0}, + [2225] = {.lex_state = 0}, + [2226] = {.lex_state = 0}, + [2227] = {.lex_state = 0}, + [2228] = {.lex_state = 0}, + [2229] = {.lex_state = 0}, + [2230] = {.lex_state = 0}, + [2231] = {.lex_state = 0}, + [2232] = {.lex_state = 0}, + [2233] = {.lex_state = 0}, + [2234] = {.lex_state = 0}, + [2235] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -9003,6 +9215,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(1), [anon_sym_COLON_COLON] = ACTIONS(1), [anon_sym_import] = ACTIONS(1), + [anon_sym_hide] = ACTIONS(1), [anon_sym_func] = ACTIONS(1), [anon_sym_c_func] = ACTIONS(1), [anon_sym_BANG] = ACTIONS(1), @@ -9110,43458 +9323,43581 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1), }, [STATE(1)] = { - [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), + [sym_source_file] = STATE(2235), + [sym__top_level_declaration] = STATE(1511), + [sym_import_declaration] = STATE(1511), + [sym_function_declaration] = STATE(1511), + [sym_type_declaration] = STATE(1511), + [sym_global_constant_declaration] = STATE(1511), + [sym_global_variable_declaration] = STATE(1511), + [aux_sym_source_file_repeat1] = STATE(1511), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), + [anon_sym_hide] = ACTIONS(11), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(11), + [sym__newline] = ACTIONS(13), }, [STATE(2)] = { - [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(1156), - [sym_variable_declaration] = STATE(1156), - [sym_assignment_statement] = STATE(1156), - [sym_expression_statement] = STATE(1156), - [sym_return_statement] = STATE(1156), - [sym_yield_statement] = STATE(1156), - [sym_break_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(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), - [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_PIPE] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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_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(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(85), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1545), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_capture_list] = STATE(51), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1545), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_argument_list] = STATE(504), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(52), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_PIPE] = ACTIONS(31), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_DOT_DOT] = ACTIONS(61), + [anon_sym_DOT_DOT_EQ] = ACTIONS(63), + [anon_sym_orelse] = ACTIONS(65), + [anon_sym_catch] = ACTIONS(67), + [anon_sym_or] = ACTIONS(69), + [anon_sym_and] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(91), + [sym__newline] = ACTIONS(93), }, [STATE(3)] = { - [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1541), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_capture_list] = STATE(55), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1541), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_argument_list] = STATE(504), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(56), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_PIPE] = ACTIONS(31), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_DOT_DOT] = ACTIONS(61), + [anon_sym_DOT_DOT_EQ] = ACTIONS(63), + [anon_sym_orelse] = ACTIONS(65), + [anon_sym_catch] = ACTIONS(67), + [anon_sym_or] = ACTIONS(69), + [anon_sym_and] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(117), + [sym__newline] = ACTIONS(95), }, [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), - [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_PIPE] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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_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(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(85), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1244), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_capture_list] = STATE(90), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1244), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_argument_list] = STATE(504), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(91), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(31), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_DOT_DOT] = ACTIONS(61), + [anon_sym_DOT_DOT_EQ] = ACTIONS(63), + [anon_sym_orelse] = ACTIONS(65), + [anon_sym_catch] = ACTIONS(67), + [anon_sym_or] = ACTIONS(69), + [anon_sym_and] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(119), + [sym__newline] = ACTIONS(121), }, [STATE(5)] = { - [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(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), - [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1246), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_capture_list] = STATE(94), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1246), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_argument_list] = STATE(504), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(95), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(31), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_DOT_DOT] = ACTIONS(61), + [anon_sym_DOT_DOT_EQ] = ACTIONS(63), + [anon_sym_orelse] = ACTIONS(65), + [anon_sym_catch] = ACTIONS(67), + [anon_sym_or] = ACTIONS(69), + [anon_sym_and] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(145), + [sym__newline] = 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(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), - [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1578), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_capture_list] = STATE(120), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1578), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_argument_list] = STATE(504), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(121), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(31), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_DOT_DOT] = ACTIONS(61), + [anon_sym_DOT_DOT_EQ] = ACTIONS(63), + [anon_sym_orelse] = ACTIONS(65), + [anon_sym_catch] = ACTIONS(67), + [anon_sym_or] = ACTIONS(69), + [anon_sym_and] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(147), }, [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), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [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(35), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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_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(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(169), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1589), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_capture_list] = STATE(124), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1589), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_argument_list] = STATE(504), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(125), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(31), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_DOT_DOT] = ACTIONS(61), + [anon_sym_DOT_DOT_EQ] = ACTIONS(63), + [anon_sym_orelse] = ACTIONS(65), + [anon_sym_catch] = ACTIONS(67), + [anon_sym_or] = ACTIONS(69), + [anon_sym_and] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(171), + [sym__newline] = ACTIONS(149), }, [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), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [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(35), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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_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(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(169), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1269), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_capture_list] = STATE(150), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1269), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_argument_list] = STATE(504), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(31), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_DOT_DOT] = ACTIONS(61), + [anon_sym_DOT_DOT_EQ] = ACTIONS(63), + [anon_sym_orelse] = ACTIONS(65), + [anon_sym_catch] = ACTIONS(67), + [anon_sym_or] = ACTIONS(69), + [anon_sym_and] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(173), }, [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), - [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), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1266), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_capture_list] = STATE(154), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1266), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_argument_list] = STATE(504), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(155), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(155), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(31), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_DOT_DOT] = ACTIONS(61), + [anon_sym_DOT_DOT_EQ] = ACTIONS(63), + [anon_sym_orelse] = ACTIONS(65), + [anon_sym_catch] = ACTIONS(67), + [anon_sym_or] = ACTIONS(69), + [anon_sym_and] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(197), + [sym__newline] = ACTIONS(175), }, [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), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(199), - }, - [STATE(11)] = { - [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(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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1834), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_capture_list] = STATE(223), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1834), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_argument_list] = STATE(504), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(224), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_PIPE] = ACTIONS(31), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(185), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_DOT_DOT] = ACTIONS(61), + [anon_sym_DOT_DOT_EQ] = ACTIONS(63), + [anon_sym_orelse] = ACTIONS(65), + [anon_sym_catch] = ACTIONS(67), + [anon_sym_or] = ACTIONS(69), + [anon_sym_and] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(201), }, - [STATE(12)] = { - [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), - [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_PIPE] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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_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(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(85), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(11)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1538), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_capture_list] = STATE(178), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1538), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_argument_list] = STATE(504), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_PIPE] = ACTIONS(31), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_DOT_DOT] = ACTIONS(61), + [anon_sym_DOT_DOT_EQ] = ACTIONS(63), + [anon_sym_orelse] = ACTIONS(65), + [anon_sym_catch] = ACTIONS(67), + [anon_sym_or] = ACTIONS(69), + [anon_sym_and] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(203), }, - [STATE(13)] = { - [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(17), - [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_PIPE] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(31), - [anon_sym_STAR] = ACTIONS(33), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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_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(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(85), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(12)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1542), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_capture_list] = STATE(182), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1542), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_argument_list] = STATE(504), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(183), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(19), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(27), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_PIPE] = ACTIONS(31), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_DOT_DOT] = ACTIONS(61), + [anon_sym_DOT_DOT_EQ] = ACTIONS(63), + [anon_sym_orelse] = ACTIONS(65), + [anon_sym_catch] = ACTIONS(67), + [anon_sym_or] = ACTIONS(69), + [anon_sym_and] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(205), }, - [STATE(14)] = { - [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(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), - [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), + [STATE(13)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1253), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_capture_list] = STATE(208), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1253), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_argument_list] = STATE(504), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(209), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(31), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_DOT_DOT] = ACTIONS(61), + [anon_sym_DOT_DOT_EQ] = ACTIONS(63), + [anon_sym_orelse] = ACTIONS(65), + [anon_sym_catch] = ACTIONS(67), + [anon_sym_or] = ACTIONS(69), + [anon_sym_and] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), - [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), + [STATE(14)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1254), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_capture_list] = STATE(211), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1254), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_argument_list] = STATE(504), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(212), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(99), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(31), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_DOT_DOT] = ACTIONS(61), + [anon_sym_DOT_DOT_EQ] = ACTIONS(63), + [anon_sym_orelse] = ACTIONS(65), + [anon_sym_catch] = ACTIONS(67), + [anon_sym_or] = ACTIONS(69), + [anon_sym_and] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(209), }, - [STATE(16)] = { - [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(151), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [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(35), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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_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(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(169), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(15)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1600), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_capture_list] = STATE(214), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1600), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_argument_list] = STATE(504), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(215), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(31), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_DOT_DOT] = ACTIONS(61), + [anon_sym_DOT_DOT_EQ] = ACTIONS(63), + [anon_sym_orelse] = ACTIONS(65), + [anon_sym_catch] = ACTIONS(67), + [anon_sym_or] = ACTIONS(69), + [anon_sym_and] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(211), }, - [STATE(17)] = { - [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(151), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [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(35), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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_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(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(169), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(16)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1602), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_capture_list] = STATE(217), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1602), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_argument_list] = STATE(504), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(218), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(31), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_DOT_DOT] = ACTIONS(61), + [anon_sym_DOT_DOT_EQ] = ACTIONS(63), + [anon_sym_orelse] = ACTIONS(65), + [anon_sym_catch] = ACTIONS(67), + [anon_sym_or] = ACTIONS(69), + [anon_sym_and] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(213), }, - [STATE(18)] = { - [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(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), + [STATE(17)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1954), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_capture_list] = STATE(230), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1954), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_argument_list] = STATE(504), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(231), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_PIPE] = ACTIONS(31), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(185), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_DOT_DOT] = ACTIONS(61), + [anon_sym_DOT_DOT_EQ] = ACTIONS(63), + [anon_sym_orelse] = ACTIONS(65), + [anon_sym_catch] = ACTIONS(67), + [anon_sym_or] = ACTIONS(69), + [anon_sym_and] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(215), }, - [STATE(19)] = { - [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(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), + [STATE(18)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1830), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_capture_list] = STATE(220), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1830), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_argument_list] = STATE(504), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_PIPE] = ACTIONS(31), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(185), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_DOT_DOT] = ACTIONS(61), + [anon_sym_DOT_DOT_EQ] = ACTIONS(63), + [anon_sym_orelse] = ACTIONS(65), + [anon_sym_catch] = ACTIONS(67), + [anon_sym_or] = ACTIONS(69), + [anon_sym_and] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(217), }, - [STATE(20)] = { - [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(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), + [STATE(19)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1919), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_capture_list] = STATE(227), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1919), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_argument_list] = STATE(504), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(179), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_PIPE] = ACTIONS(31), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(185), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_DOT_DOT] = ACTIONS(61), + [anon_sym_DOT_DOT_EQ] = ACTIONS(63), + [anon_sym_orelse] = ACTIONS(65), + [anon_sym_catch] = ACTIONS(67), + [anon_sym_or] = ACTIONS(69), + [anon_sym_and] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(77), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(81), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(219), + }, + [STATE(20)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1206), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_error_capture] = STATE(330), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(39), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(229), }, [STATE(21)] = { - [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(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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1206), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_error_capture] = STATE(352), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(25), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_PIPE] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(245), + [sym__newline] = ACTIONS(233), }, [STATE(22)] = { - [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(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(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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1018), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_error_capture] = STATE(339), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_PIPE] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, [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(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(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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1018), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_error_capture] = STATE(361), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(251), + [sym__newline] = ACTIONS(237), }, [STATE(24)] = { - [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), - [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(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(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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1206), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_error_capture] = STATE(371), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(47), [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_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_PIPE] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), [anon_sym_return] = ACTIONS(257), [anon_sym_yield] = ACTIONS(259), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), [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), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), [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_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(269), }, + [STATE(25)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1018), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_error_capture] = STATE(355), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_PIPE] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, [STATE(26)] = { - [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1206), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_error_capture] = STATE(335), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(23), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1206), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_error_capture] = STATE(337), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_PIPE] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(28)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1206), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_error_capture] = STATE(376), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(31), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(275), }, - [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(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(227), - }, - [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), + [STATE(29)] = { + [sym_type] = STATE(427), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(277), + [sym_identifier] = ACTIONS(279), + [anon_sym_import] = ACTIONS(281), + [anon_sym_hide] = ACTIONS(281), + [anon_sym_func] = ACTIONS(279), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(279), + [anon_sym_EQ] = ACTIONS(281), + [anon_sym_struct] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(285), + [anon_sym_RPAREN] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(285), + [anon_sym_RBRACE] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_DOLLAR] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_QMARK] = ACTIONS(285), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_mut] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_void] = ACTIONS(279), + [anon_sym_anyopaque] = ACTIONS(279), + [anon_sym_bool] = ACTIONS(279), + [anon_sym_int] = ACTIONS(279), + [anon_sym_float] = ACTIONS(279), + [anon_sym_range] = ACTIONS(279), + [anon_sym_i8] = ACTIONS(279), + [anon_sym_i16] = ACTIONS(279), + [anon_sym_i32] = ACTIONS(279), + [anon_sym_i64] = ACTIONS(279), + [anon_sym_u8] = ACTIONS(279), + [anon_sym_u16] = ACTIONS(279), + [anon_sym_u32] = ACTIONS(279), + [anon_sym_u64] = ACTIONS(279), + [anon_sym_isize] = ACTIONS(279), + [anon_sym_usize] = ACTIONS(279), + [anon_sym_f32] = ACTIONS(279), + [anon_sym_f64] = ACTIONS(279), + [anon_sym_c_char] = ACTIONS(279), + [anon_sym_c_schar] = ACTIONS(279), + [anon_sym_c_uchar] = ACTIONS(279), + [anon_sym_c_short] = ACTIONS(279), + [anon_sym_c_ushort] = ACTIONS(279), + [anon_sym_c_int] = ACTIONS(279), + [anon_sym_c_uint] = ACTIONS(279), + [anon_sym_c_long] = ACTIONS(279), + [anon_sym_c_ulong] = ACTIONS(279), + [anon_sym_c_longlong] = ACTIONS(279), + [anon_sym_c_ulonglong] = ACTIONS(279), + [anon_sym_c_float] = ACTIONS(279), + [anon_sym_c_double] = ACTIONS(279), + [anon_sym_c_longdouble] = ACTIONS(279), + [anon_sym_PLUS_EQ] = ACTIONS(277), + [anon_sym_DASH_EQ] = ACTIONS(277), + [anon_sym_STAR_EQ] = ACTIONS(277), + [anon_sym_SLASH_EQ] = ACTIONS(277), [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), + [anon_sym_yield] = ACTIONS(279), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(279), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(279), + [anon_sym_if] = ACTIONS(279), + [anon_sym_else] = ACTIONS(281), + [anon_sym_while] = ACTIONS(279), + [anon_sym_for] = ACTIONS(279), + [anon_sym_match] = ACTIONS(279), + [anon_sym_DOT_DOT] = ACTIONS(279), + [anon_sym_DOT_DOT_EQ] = ACTIONS(285), + [anon_sym_orelse] = ACTIONS(279), + [anon_sym_catch] = ACTIONS(279), + [anon_sym_or] = ACTIONS(279), + [anon_sym_and] = ACTIONS(279), + [anon_sym_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(279), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(279), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_try] = ACTIONS(279), + [anon_sym_DOT] = ACTIONS(279), + [anon_sym_CARET] = ACTIONS(285), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [sym_none] = ACTIONS(279), + [sym_undefined] = ACTIONS(279), + [sym_sink] = ACTIONS(279), + [sym_integer] = ACTIONS(279), + [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(30)] = { + [sym_type] = STATE(461), + [sym__type_atom] = STATE(394), + [sym_named_type] = STATE(394), + [sym_optional_type] = STATE(394), + [sym_pointer_type] = STATE(394), + [sym_array_type] = STATE(394), + [sym_function_type] = STATE(394), + [sym_builtin_type] = STATE(394), + [sym_qualified_identifier] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(291), + [sym_identifier] = ACTIONS(293), + [anon_sym_import] = ACTIONS(296), + [anon_sym_hide] = ACTIONS(296), + [anon_sym_func] = ACTIONS(298), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_EQ] = ACTIONS(296), + [anon_sym_struct] = ACTIONS(296), + [anon_sym_LPAREN] = ACTIONS(291), + [anon_sym_RPAREN] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_RBRACE] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_DOLLAR] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_QMARK] = ACTIONS(301), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(304), + [anon_sym_mut] = ACTIONS(307), + [anon_sym_LBRACK] = ACTIONS(309), + [anon_sym_void] = ACTIONS(312), + [anon_sym_anyopaque] = ACTIONS(312), + [anon_sym_bool] = ACTIONS(312), + [anon_sym_int] = ACTIONS(312), + [anon_sym_float] = ACTIONS(312), + [anon_sym_range] = ACTIONS(312), + [anon_sym_i8] = ACTIONS(312), + [anon_sym_i16] = ACTIONS(312), + [anon_sym_i32] = ACTIONS(312), + [anon_sym_i64] = ACTIONS(312), + [anon_sym_u8] = ACTIONS(312), + [anon_sym_u16] = ACTIONS(312), + [anon_sym_u32] = ACTIONS(312), + [anon_sym_u64] = ACTIONS(312), + [anon_sym_isize] = ACTIONS(312), + [anon_sym_usize] = ACTIONS(312), + [anon_sym_f32] = ACTIONS(312), + [anon_sym_f64] = ACTIONS(312), + [anon_sym_c_char] = ACTIONS(312), + [anon_sym_c_schar] = ACTIONS(312), + [anon_sym_c_uchar] = ACTIONS(312), + [anon_sym_c_short] = ACTIONS(312), + [anon_sym_c_ushort] = ACTIONS(312), + [anon_sym_c_int] = ACTIONS(312), + [anon_sym_c_uint] = ACTIONS(312), + [anon_sym_c_long] = ACTIONS(312), + [anon_sym_c_ulong] = ACTIONS(312), + [anon_sym_c_longlong] = ACTIONS(312), + [anon_sym_c_ulonglong] = ACTIONS(312), + [anon_sym_c_float] = ACTIONS(312), + [anon_sym_c_double] = ACTIONS(312), + [anon_sym_c_longdouble] = ACTIONS(312), + [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(296), + [anon_sym_yield] = ACTIONS(296), + [anon_sym_break] = ACTIONS(296), + [anon_sym_continue] = ACTIONS(296), + [anon_sym_defer] = ACTIONS(296), + [anon_sym_errdefer] = ACTIONS(296), + [anon_sym_if] = ACTIONS(296), + [anon_sym_else] = ACTIONS(296), + [anon_sym_while] = ACTIONS(296), + [anon_sym_for] = ACTIONS(296), + [anon_sym_match] = ACTIONS(296), + [anon_sym_DOT_DOT] = ACTIONS(296), + [anon_sym_DOT_DOT_EQ] = ACTIONS(291), + [anon_sym_orelse] = ACTIONS(296), + [anon_sym_catch] = ACTIONS(296), + [anon_sym_or] = ACTIONS(296), + [anon_sym_and] = ACTIONS(296), + [anon_sym_EQ_EQ] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(291), + [anon_sym_LT] = ACTIONS(296), + [anon_sym_LT_EQ] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(296), + [anon_sym_GT_EQ] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_SLASH] = ACTIONS(296), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_try] = ACTIONS(296), + [anon_sym_DOT] = ACTIONS(296), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_true] = ACTIONS(296), + [anon_sym_false] = ACTIONS(296), + [sym_none] = ACTIONS(296), + [sym_undefined] = ACTIONS(296), + [sym_sink] = ACTIONS(296), + [sym_integer] = ACTIONS(296), + [sym_float] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(291), + [sym_multiline_string] = ACTIONS(291), + [sym_character] = ACTIONS(291), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(291), }, - [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), + [STATE(31)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1018), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_error_capture] = STATE(379), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), - [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(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), + [STATE(32)] = { + [sym_type] = STATE(427), + [sym__type_atom] = STATE(394), + [sym_named_type] = STATE(394), + [sym_optional_type] = STATE(394), + [sym_pointer_type] = STATE(394), + [sym_array_type] = STATE(394), + [sym_function_type] = STATE(394), + [sym_builtin_type] = STATE(394), + [sym_qualified_identifier] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(277), + [sym_identifier] = ACTIONS(315), + [anon_sym_import] = ACTIONS(281), + [anon_sym_hide] = ACTIONS(281), + [anon_sym_func] = ACTIONS(318), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(281), + [anon_sym_EQ] = ACTIONS(281), + [anon_sym_struct] = ACTIONS(281), + [anon_sym_LPAREN] = ACTIONS(277), + [anon_sym_RPAREN] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(277), + [anon_sym_RBRACE] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(277), [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_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(324), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(329), + [anon_sym_void] = ACTIONS(332), + [anon_sym_anyopaque] = ACTIONS(332), + [anon_sym_bool] = ACTIONS(332), + [anon_sym_int] = ACTIONS(332), + [anon_sym_float] = ACTIONS(332), + [anon_sym_range] = ACTIONS(332), + [anon_sym_i8] = ACTIONS(332), + [anon_sym_i16] = ACTIONS(332), + [anon_sym_i32] = ACTIONS(332), + [anon_sym_i64] = ACTIONS(332), + [anon_sym_u8] = ACTIONS(332), + [anon_sym_u16] = ACTIONS(332), + [anon_sym_u32] = ACTIONS(332), + [anon_sym_u64] = ACTIONS(332), + [anon_sym_isize] = ACTIONS(332), + [anon_sym_usize] = ACTIONS(332), + [anon_sym_f32] = ACTIONS(332), + [anon_sym_f64] = ACTIONS(332), + [anon_sym_c_char] = ACTIONS(332), + [anon_sym_c_schar] = ACTIONS(332), + [anon_sym_c_uchar] = ACTIONS(332), + [anon_sym_c_short] = ACTIONS(332), + [anon_sym_c_ushort] = ACTIONS(332), + [anon_sym_c_int] = ACTIONS(332), + [anon_sym_c_uint] = ACTIONS(332), + [anon_sym_c_long] = ACTIONS(332), + [anon_sym_c_ulong] = ACTIONS(332), + [anon_sym_c_longlong] = ACTIONS(332), + [anon_sym_c_ulonglong] = ACTIONS(332), + [anon_sym_c_float] = ACTIONS(332), + [anon_sym_c_double] = ACTIONS(332), + [anon_sym_c_longdouble] = ACTIONS(332), + [anon_sym_PLUS_EQ] = ACTIONS(277), + [anon_sym_DASH_EQ] = ACTIONS(277), + [anon_sym_STAR_EQ] = ACTIONS(277), + [anon_sym_SLASH_EQ] = ACTIONS(277), + [anon_sym_return] = ACTIONS(281), [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), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_defer] = ACTIONS(281), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(281), + [anon_sym_else] = ACTIONS(281), + [anon_sym_while] = ACTIONS(281), + [anon_sym_for] = ACTIONS(281), + [anon_sym_match] = ACTIONS(281), + [anon_sym_DOT_DOT] = ACTIONS(281), + [anon_sym_DOT_DOT_EQ] = ACTIONS(277), + [anon_sym_orelse] = ACTIONS(281), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_or] = ACTIONS(281), + [anon_sym_and] = ACTIONS(281), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ] = ACTIONS(277), + [anon_sym_LT] = ACTIONS(281), + [anon_sym_LT_EQ] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(281), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(281), + [anon_sym_SLASH] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_try] = ACTIONS(281), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_CARET] = ACTIONS(277), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [sym_none] = ACTIONS(281), + [sym_undefined] = ACTIONS(281), + [sym_sink] = ACTIONS(281), + [sym_integer] = ACTIONS(281), + [sym_float] = ACTIONS(277), + [anon_sym_DQUOTE] = ACTIONS(277), + [sym_multiline_string] = ACTIONS(277), + [sym_character] = ACTIONS(277), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(277), }, - [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), + [STATE(33)] = { + [sym_type] = STATE(426), + [sym__type_atom] = STATE(394), + [sym_named_type] = STATE(394), + [sym_optional_type] = STATE(394), + [sym_pointer_type] = STATE(394), + [sym_array_type] = STATE(394), + [sym_function_type] = STATE(394), + [sym_builtin_type] = STATE(394), + [sym_qualified_identifier] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(277), + [sym_identifier] = ACTIONS(315), + [anon_sym_import] = ACTIONS(281), + [anon_sym_hide] = ACTIONS(281), + [anon_sym_func] = ACTIONS(318), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(281), + [anon_sym_EQ] = ACTIONS(281), + [anon_sym_struct] = ACTIONS(281), + [anon_sym_LPAREN] = ACTIONS(277), + [anon_sym_RPAREN] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(277), + [anon_sym_RBRACE] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(324), + [anon_sym_mut] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(329), + [anon_sym_void] = ACTIONS(332), + [anon_sym_anyopaque] = ACTIONS(332), + [anon_sym_bool] = ACTIONS(332), + [anon_sym_int] = ACTIONS(332), + [anon_sym_float] = ACTIONS(332), + [anon_sym_range] = ACTIONS(332), + [anon_sym_i8] = ACTIONS(332), + [anon_sym_i16] = ACTIONS(332), + [anon_sym_i32] = ACTIONS(332), + [anon_sym_i64] = ACTIONS(332), + [anon_sym_u8] = ACTIONS(332), + [anon_sym_u16] = ACTIONS(332), + [anon_sym_u32] = ACTIONS(332), + [anon_sym_u64] = ACTIONS(332), + [anon_sym_isize] = ACTIONS(332), + [anon_sym_usize] = ACTIONS(332), + [anon_sym_f32] = ACTIONS(332), + [anon_sym_f64] = ACTIONS(332), + [anon_sym_c_char] = ACTIONS(332), + [anon_sym_c_schar] = ACTIONS(332), + [anon_sym_c_uchar] = ACTIONS(332), + [anon_sym_c_short] = ACTIONS(332), + [anon_sym_c_ushort] = ACTIONS(332), + [anon_sym_c_int] = ACTIONS(332), + [anon_sym_c_uint] = ACTIONS(332), + [anon_sym_c_long] = ACTIONS(332), + [anon_sym_c_ulong] = ACTIONS(332), + [anon_sym_c_longlong] = ACTIONS(332), + [anon_sym_c_ulonglong] = ACTIONS(332), + [anon_sym_c_float] = ACTIONS(332), + [anon_sym_c_double] = ACTIONS(332), + [anon_sym_c_longdouble] = ACTIONS(332), + [anon_sym_PLUS_EQ] = ACTIONS(277), + [anon_sym_DASH_EQ] = ACTIONS(277), + [anon_sym_STAR_EQ] = ACTIONS(277), + [anon_sym_SLASH_EQ] = ACTIONS(277), + [anon_sym_return] = ACTIONS(281), [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), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_defer] = ACTIONS(281), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(281), + [anon_sym_else] = ACTIONS(281), + [anon_sym_while] = ACTIONS(281), + [anon_sym_for] = ACTIONS(281), + [anon_sym_match] = ACTIONS(281), + [anon_sym_DOT_DOT] = ACTIONS(281), + [anon_sym_DOT_DOT_EQ] = ACTIONS(277), + [anon_sym_orelse] = ACTIONS(281), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_or] = ACTIONS(281), + [anon_sym_and] = ACTIONS(281), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ] = ACTIONS(277), + [anon_sym_LT] = ACTIONS(281), + [anon_sym_LT_EQ] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(281), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(281), + [anon_sym_SLASH] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_try] = ACTIONS(281), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_CARET] = ACTIONS(277), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [sym_none] = ACTIONS(281), + [sym_undefined] = ACTIONS(281), + [sym_sink] = ACTIONS(281), + [sym_integer] = ACTIONS(281), + [sym_float] = ACTIONS(277), + [anon_sym_DQUOTE] = ACTIONS(277), + [sym_multiline_string] = ACTIONS(277), + [sym_character] = ACTIONS(277), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(337), + [sym__newline] = ACTIONS(277), }, - [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), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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(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(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(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), + [STATE(34)] = { + [sym_type] = STATE(449), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(337), + [sym_identifier] = ACTIONS(339), + [anon_sym_import] = ACTIONS(341), + [anon_sym_hide] = ACTIONS(341), + [anon_sym_func] = ACTIONS(339), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_EQ] = ACTIONS(341), + [anon_sym_struct] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_RPAREN] = ACTIONS(337), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_RBRACE] = ACTIONS(337), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_PIPE] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(343), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(339), + [anon_sym_mut] = ACTIONS(345), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_void] = ACTIONS(339), + [anon_sym_anyopaque] = ACTIONS(339), + [anon_sym_bool] = ACTIONS(339), + [anon_sym_int] = ACTIONS(339), + [anon_sym_float] = ACTIONS(339), + [anon_sym_range] = ACTIONS(339), + [anon_sym_i8] = ACTIONS(339), + [anon_sym_i16] = ACTIONS(339), + [anon_sym_i32] = ACTIONS(339), + [anon_sym_i64] = ACTIONS(339), + [anon_sym_u8] = ACTIONS(339), + [anon_sym_u16] = ACTIONS(339), + [anon_sym_u32] = ACTIONS(339), + [anon_sym_u64] = ACTIONS(339), + [anon_sym_isize] = ACTIONS(339), + [anon_sym_usize] = ACTIONS(339), + [anon_sym_f32] = ACTIONS(339), + [anon_sym_f64] = ACTIONS(339), + [anon_sym_c_char] = ACTIONS(339), + [anon_sym_c_schar] = ACTIONS(339), + [anon_sym_c_uchar] = ACTIONS(339), + [anon_sym_c_short] = ACTIONS(339), + [anon_sym_c_ushort] = ACTIONS(339), + [anon_sym_c_int] = ACTIONS(339), + [anon_sym_c_uint] = ACTIONS(339), + [anon_sym_c_long] = ACTIONS(339), + [anon_sym_c_ulong] = ACTIONS(339), + [anon_sym_c_longlong] = ACTIONS(339), + [anon_sym_c_ulonglong] = ACTIONS(339), + [anon_sym_c_float] = ACTIONS(339), + [anon_sym_c_double] = ACTIONS(339), + [anon_sym_c_longdouble] = ACTIONS(339), + [anon_sym_PLUS_EQ] = ACTIONS(337), + [anon_sym_DASH_EQ] = ACTIONS(337), + [anon_sym_STAR_EQ] = ACTIONS(337), + [anon_sym_SLASH_EQ] = ACTIONS(337), + [anon_sym_return] = ACTIONS(339), + [anon_sym_yield] = ACTIONS(339), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(339), + [anon_sym_defer] = ACTIONS(339), + [anon_sym_errdefer] = ACTIONS(339), + [anon_sym_if] = ACTIONS(339), + [anon_sym_else] = ACTIONS(341), + [anon_sym_while] = ACTIONS(339), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(339), + [anon_sym_DOT_DOT] = ACTIONS(339), + [anon_sym_DOT_DOT_EQ] = ACTIONS(343), + [anon_sym_orelse] = ACTIONS(339), + [anon_sym_catch] = ACTIONS(339), + [anon_sym_or] = ACTIONS(339), + [anon_sym_and] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(343), + [anon_sym_BANG_EQ] = ACTIONS(343), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_GT_EQ] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_SLASH] = ACTIONS(339), + [anon_sym_AMP] = ACTIONS(343), + [anon_sym_try] = ACTIONS(339), + [anon_sym_DOT] = ACTIONS(339), + [anon_sym_CARET] = ACTIONS(343), + [anon_sym_true] = ACTIONS(339), + [anon_sym_false] = ACTIONS(339), + [sym_none] = ACTIONS(339), + [sym_undefined] = ACTIONS(339), + [sym_sink] = ACTIONS(339), + [sym_integer] = ACTIONS(339), + [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(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), + [STATE(35)] = { + [sym_type] = STATE(449), + [sym__type_atom] = STATE(394), + [sym_named_type] = STATE(394), + [sym_optional_type] = STATE(394), + [sym_pointer_type] = STATE(394), + [sym_array_type] = STATE(394), + [sym_function_type] = STATE(394), + [sym_builtin_type] = STATE(394), + [sym_qualified_identifier] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(337), [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), + [anon_sym_import] = ACTIONS(341), + [anon_sym_hide] = ACTIONS(341), + [anon_sym_func] = ACTIONS(350), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(341), + [anon_sym_struct] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_RPAREN] = ACTIONS(337), + [anon_sym_LBRACE] = ACTIONS(337), + [anon_sym_RBRACE] = ACTIONS(337), + [anon_sym_DASH] = ACTIONS(341), + [anon_sym_DOLLAR] = ACTIONS(337), + [anon_sym_PIPE] = ACTIONS(337), + [anon_sym_QMARK] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(287), + [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(337), + [anon_sym_DASH_EQ] = ACTIONS(337), + [anon_sym_STAR_EQ] = ACTIONS(337), + [anon_sym_SLASH_EQ] = ACTIONS(337), + [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(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(337), + [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(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_LT_EQ] = ACTIONS(337), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(337), + [anon_sym_PLUS] = ACTIONS(341), + [anon_sym_SLASH] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_try] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(341), + [anon_sym_CARET] = ACTIONS(337), + [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(337), + [anon_sym_DQUOTE] = ACTIONS(337), + [sym_multiline_string] = ACTIONS(337), + [sym_character] = ACTIONS(337), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(351), + [sym__newline] = ACTIONS(337), }, - [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), + [STATE(36)] = { + [sym_type] = STATE(451), + [sym__type_atom] = STATE(394), + [sym_named_type] = STATE(394), + [sym_optional_type] = STATE(394), + [sym_pointer_type] = STATE(394), + [sym_array_type] = STATE(394), + [sym_function_type] = STATE(394), + [sym_builtin_type] = STATE(394), + [sym_qualified_identifier] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(337), + [sym_identifier] = ACTIONS(347), + [anon_sym_import] = ACTIONS(341), + [anon_sym_hide] = ACTIONS(341), + [anon_sym_func] = ACTIONS(350), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(341), + [anon_sym_struct] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_RPAREN] = ACTIONS(337), + [anon_sym_LBRACE] = ACTIONS(337), + [anon_sym_RBRACE] = ACTIONS(337), + [anon_sym_DASH] = ACTIONS(341), + [anon_sym_DOLLAR] = ACTIONS(337), + [anon_sym_PIPE] = ACTIONS(337), + [anon_sym_QMARK] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(287), + [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(337), + [anon_sym_DASH_EQ] = ACTIONS(337), + [anon_sym_STAR_EQ] = ACTIONS(337), + [anon_sym_SLASH_EQ] = ACTIONS(337), + [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(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(337), + [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(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_LT_EQ] = ACTIONS(337), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(337), + [anon_sym_PLUS] = ACTIONS(341), + [anon_sym_SLASH] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_try] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(341), + [anon_sym_CARET] = ACTIONS(337), + [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(337), + [anon_sym_DQUOTE] = ACTIONS(337), + [sym_multiline_string] = ACTIONS(337), + [sym_character] = ACTIONS(337), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(337), }, - [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), + [STATE(37)] = { + [sym_type] = STATE(418), + [sym__type_atom] = STATE(394), + [sym_named_type] = STATE(394), + [sym_optional_type] = STATE(394), + [sym_pointer_type] = STATE(394), + [sym_array_type] = STATE(394), + [sym_function_type] = STATE(394), + [sym_builtin_type] = STATE(394), + [sym_qualified_identifier] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(369), + [sym_identifier] = ACTIONS(371), + [anon_sym_import] = ACTIONS(374), + [anon_sym_hide] = ACTIONS(374), + [anon_sym_func] = ACTIONS(376), + [anon_sym_c_func] = ACTIONS(283), + [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(287), + [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(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), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(393), - }, - [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(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(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), + [STATE(38)] = { + [sym_type] = STATE(451), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(337), + [sym_identifier] = ACTIONS(393), + [anon_sym_import] = ACTIONS(341), + [anon_sym_hide] = ACTIONS(341), + [anon_sym_func] = ACTIONS(393), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(341), + [anon_sym_struct] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_RPAREN] = ACTIONS(337), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_RBRACE] = ACTIONS(337), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(395), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_mut] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_void] = ACTIONS(393), + [anon_sym_anyopaque] = ACTIONS(393), + [anon_sym_bool] = ACTIONS(393), + [anon_sym_int] = ACTIONS(393), + [anon_sym_float] = ACTIONS(393), + [anon_sym_range] = ACTIONS(393), + [anon_sym_i8] = ACTIONS(393), + [anon_sym_i16] = ACTIONS(393), + [anon_sym_i32] = ACTIONS(393), + [anon_sym_i64] = ACTIONS(393), + [anon_sym_u8] = ACTIONS(393), + [anon_sym_u16] = ACTIONS(393), + [anon_sym_u32] = ACTIONS(393), + [anon_sym_u64] = ACTIONS(393), + [anon_sym_isize] = ACTIONS(393), + [anon_sym_usize] = ACTIONS(393), + [anon_sym_f32] = ACTIONS(393), + [anon_sym_f64] = ACTIONS(393), + [anon_sym_c_char] = ACTIONS(393), + [anon_sym_c_schar] = ACTIONS(393), + [anon_sym_c_uchar] = ACTIONS(393), + [anon_sym_c_short] = ACTIONS(393), + [anon_sym_c_ushort] = ACTIONS(393), + [anon_sym_c_int] = ACTIONS(393), + [anon_sym_c_uint] = ACTIONS(393), + [anon_sym_c_long] = ACTIONS(393), + [anon_sym_c_ulong] = ACTIONS(393), + [anon_sym_c_longlong] = ACTIONS(393), + [anon_sym_c_ulonglong] = ACTIONS(393), + [anon_sym_c_float] = ACTIONS(393), + [anon_sym_c_double] = ACTIONS(393), + [anon_sym_c_longdouble] = ACTIONS(393), + [anon_sym_PLUS_EQ] = ACTIONS(337), + [anon_sym_DASH_EQ] = ACTIONS(337), + [anon_sym_STAR_EQ] = ACTIONS(337), + [anon_sym_SLASH_EQ] = ACTIONS(337), + [anon_sym_return] = ACTIONS(393), + [anon_sym_yield] = ACTIONS(393), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(393), + [anon_sym_if] = ACTIONS(393), + [anon_sym_else] = ACTIONS(341), + [anon_sym_while] = ACTIONS(393), + [anon_sym_for] = ACTIONS(393), + [anon_sym_match] = ACTIONS(393), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(395), + [anon_sym_orelse] = ACTIONS(393), + [anon_sym_catch] = ACTIONS(393), + [anon_sym_or] = ACTIONS(393), + [anon_sym_and] = ACTIONS(393), + [anon_sym_EQ_EQ] = ACTIONS(395), + [anon_sym_BANG_EQ] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(395), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(395), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_try] = ACTIONS(393), + [anon_sym_DOT] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym_true] = ACTIONS(393), + [anon_sym_false] = ACTIONS(393), + [sym_none] = ACTIONS(393), + [sym_undefined] = ACTIONS(393), + [sym_sink] = ACTIONS(393), + [sym_integer] = ACTIONS(393), + [sym_float] = ACTIONS(395), + [anon_sym_DQUOTE] = ACTIONS(395), + [sym_multiline_string] = ACTIONS(395), + [sym_character] = ACTIONS(395), [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), + [STATE(39)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1018), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_error_capture] = STATE(332), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(397), + [sym__newline] = ACTIONS(237), }, - [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), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(40)] = { + [sym_type] = STATE(418), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(369), + [sym_identifier] = ACTIONS(399), + [anon_sym_import] = ACTIONS(374), + [anon_sym_hide] = ACTIONS(374), + [anon_sym_func] = ACTIONS(399), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(374), + [anon_sym_struct] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(401), + [anon_sym_RBRACE] = ACTIONS(369), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_DOLLAR] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_mut] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_void] = ACTIONS(399), + [anon_sym_anyopaque] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_int] = ACTIONS(399), + [anon_sym_float] = ACTIONS(399), + [anon_sym_range] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_isize] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_f32] = ACTIONS(399), + [anon_sym_f64] = ACTIONS(399), + [anon_sym_c_char] = ACTIONS(399), + [anon_sym_c_schar] = ACTIONS(399), + [anon_sym_c_uchar] = ACTIONS(399), + [anon_sym_c_short] = ACTIONS(399), + [anon_sym_c_ushort] = ACTIONS(399), + [anon_sym_c_int] = ACTIONS(399), + [anon_sym_c_uint] = ACTIONS(399), + [anon_sym_c_long] = ACTIONS(399), + [anon_sym_c_ulong] = ACTIONS(399), + [anon_sym_c_longlong] = ACTIONS(399), + [anon_sym_c_ulonglong] = ACTIONS(399), + [anon_sym_c_float] = ACTIONS(399), + [anon_sym_c_double] = ACTIONS(399), + [anon_sym_c_longdouble] = ACTIONS(399), + [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(399), + [anon_sym_yield] = ACTIONS(399), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_defer] = ACTIONS(399), + [anon_sym_errdefer] = ACTIONS(399), + [anon_sym_if] = ACTIONS(399), + [anon_sym_else] = ACTIONS(374), + [anon_sym_while] = ACTIONS(399), + [anon_sym_for] = ACTIONS(399), + [anon_sym_match] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_orelse] = ACTIONS(399), + [anon_sym_catch] = ACTIONS(399), + [anon_sym_or] = ACTIONS(399), + [anon_sym_and] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_try] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_true] = ACTIONS(399), + [anon_sym_false] = ACTIONS(399), + [sym_none] = ACTIONS(399), + [sym_undefined] = ACTIONS(399), + [sym_sink] = ACTIONS(399), + [sym_integer] = ACTIONS(399), + [sym_float] = ACTIONS(401), + [anon_sym_DQUOTE] = ACTIONS(401), + [sym_multiline_string] = ACTIONS(401), + [sym_character] = ACTIONS(401), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(401), }, - [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(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(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), + [STATE(41)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1206), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_error_capture] = STATE(346), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(42), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(42)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1018), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_error_capture] = STATE(348), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(417), - }, - [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(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(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(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(419), - }, - [STATE(113)] = { - [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(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(114)] = { - [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(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(115)] = { - [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(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), + [STATE(43)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1206), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_error_capture] = STATE(358), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(44), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_PIPE] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(421), }, - [STATE(116)] = { - [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(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), + [STATE(44)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1018), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_error_capture] = STATE(382), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_PIPE] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [STATE(117)] = { - [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(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), + [STATE(45)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1018), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_error_capture] = STATE(367), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(423), + [sym__newline] = ACTIONS(237), }, - [STATE(118)] = { - [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(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), + [STATE(46)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1206), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_error_capture] = STATE(365), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(45), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(425), + [sym__newline] = ACTIONS(437), }, - [STATE(119)] = { - [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(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), + [STATE(47)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1018), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_error_capture] = STATE(373), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_PIPE] = ACTIONS(223), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [STATE(120)] = { - [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(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), + [STATE(48)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1208), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1208), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [STATE(121)] = { - [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(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), + [STATE(49)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1208), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1208), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [STATE(122)] = { - [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(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), + [STATE(50)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(50), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_block_repeat1] = STATE(50), + [sym_identifier] = ACTIONS(439), + [anon_sym_func] = ACTIONS(442), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_struct] = ACTIONS(448), + [anon_sym_LPAREN] = ACTIONS(451), + [anon_sym_LBRACE] = ACTIONS(454), + [anon_sym_RBRACE] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(445), + [anon_sym_DOLLAR] = ACTIONS(459), + [anon_sym_LBRACK] = ACTIONS(462), + [anon_sym_void] = ACTIONS(465), + [anon_sym_anyopaque] = ACTIONS(465), + [anon_sym_bool] = ACTIONS(465), + [anon_sym_int] = ACTIONS(465), + [anon_sym_float] = ACTIONS(465), + [anon_sym_range] = ACTIONS(465), + [anon_sym_i8] = ACTIONS(465), + [anon_sym_i16] = ACTIONS(465), + [anon_sym_i32] = ACTIONS(465), + [anon_sym_i64] = ACTIONS(465), + [anon_sym_u8] = ACTIONS(465), + [anon_sym_u16] = ACTIONS(465), + [anon_sym_u32] = ACTIONS(465), + [anon_sym_u64] = ACTIONS(465), + [anon_sym_isize] = ACTIONS(465), + [anon_sym_usize] = ACTIONS(465), + [anon_sym_f32] = ACTIONS(465), + [anon_sym_f64] = ACTIONS(465), + [anon_sym_c_char] = ACTIONS(465), + [anon_sym_c_schar] = ACTIONS(465), + [anon_sym_c_uchar] = ACTIONS(465), + [anon_sym_c_short] = ACTIONS(465), + [anon_sym_c_ushort] = ACTIONS(465), + [anon_sym_c_int] = ACTIONS(465), + [anon_sym_c_uint] = ACTIONS(465), + [anon_sym_c_long] = ACTIONS(465), + [anon_sym_c_ulong] = ACTIONS(465), + [anon_sym_c_longlong] = ACTIONS(465), + [anon_sym_c_ulonglong] = ACTIONS(465), + [anon_sym_c_float] = ACTIONS(465), + [anon_sym_c_double] = ACTIONS(465), + [anon_sym_c_longdouble] = ACTIONS(465), + [anon_sym_return] = ACTIONS(468), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_break] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(477), + [anon_sym_defer] = ACTIONS(480), + [anon_sym_errdefer] = ACTIONS(483), + [anon_sym_if] = ACTIONS(486), + [anon_sym_while] = ACTIONS(489), + [anon_sym_for] = ACTIONS(492), + [anon_sym_match] = ACTIONS(495), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_try] = ACTIONS(498), + [anon_sym_DOT] = ACTIONS(501), + [anon_sym_true] = ACTIONS(504), + [anon_sym_false] = ACTIONS(504), + [sym_none] = ACTIONS(507), + [sym_undefined] = ACTIONS(507), + [sym_sink] = ACTIONS(510), + [sym_integer] = ACTIONS(507), + [sym_float] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(516), + [sym_multiline_string] = ACTIONS(513), + [sym_character] = ACTIONS(513), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(519), }, - [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(126)] = { - [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(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(512), - }, - [STATE(127)] = { - [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(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(514), - }, - [STATE(128)] = { - [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(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(129)] = { - [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(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(130)] = { - [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(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(131)] = { - [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(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(516), - }, - [STATE(132)] = { - [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(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(518), - }, - [STATE(133)] = { - [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(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(134)] = { - [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(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(520), - }, - [STATE(135)] = { - [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(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(136)] = { - [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(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), + [STATE(51)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1539), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1539), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(53), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(522), }, - [STATE(137)] = { - [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(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), + [STATE(52)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1539), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1539), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [STATE(138)] = { - [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(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), + [STATE(53)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1548), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1548), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(54)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1178), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1178), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(524), }, - [STATE(139)] = { - [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(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(140)] = { - [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(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), + [STATE(55)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1534), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1534), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(60), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(526), }, - [STATE(141)] = { - [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(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), + [STATE(56)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1534), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1534), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(57)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1239), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1239), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(63), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(528), }, - [STATE(142)] = { - [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(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), + [STATE(58)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1240), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1240), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [STATE(143)] = { - [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(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), + [STATE(59)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1240), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1240), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(66), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(530), }, - [STATE(144)] = { - [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(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), + [STATE(60)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1550), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1550), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [STATE(145)] = { - [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(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), + [STATE(61)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1241), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1241), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(68), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(532), }, - [STATE(146)] = { - [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(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(147)] = { - [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(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(148)] = { - [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(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), + [STATE(62)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1273), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1273), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(70), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(534), }, - [STATE(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(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), + [STATE(63)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1035), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1035), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [STATE(150)] = { - [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(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), + [STATE(64)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1035), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1035), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(73), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(536), }, - [STATE(151)] = { - [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(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), + [STATE(65)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1036), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1036), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(74), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(538), }, - [STATE(152)] = { - [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(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), + [STATE(66)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1047), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1047), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [STATE(153)] = { - [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(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(154)] = { - [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(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(155)] = { - [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(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(156)] = { - [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(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), + [STATE(67)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1048), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1048), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(76), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(540), }, - [STATE(157)] = { - [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(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), + [STATE(68)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1058), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1058), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [STATE(158)] = { - [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(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), + [STATE(69)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1058), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1058), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(79), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(542), }, - [STATE(159)] = { - [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(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), + [STATE(70)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1275), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1275), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [STATE(160)] = { - [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(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(161)] = { - [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(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(162)] = { - [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(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), + [STATE(71)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1275), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1275), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(80), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(544), }, - [STATE(163)] = { - [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(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), + [STATE(72)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1270), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1270), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(81), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(546), }, - [STATE(164)] = { - [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(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), + [STATE(73)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1142), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1142), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [STATE(165)] = { - [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(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), + [STATE(74)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1143), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1143), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(75)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1143), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1143), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(548), }, - [STATE(166)] = { - [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(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), + [STATE(76)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1144), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1144), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [STATE(167)] = { - [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(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), + [STATE(77)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1144), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1144), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(84), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(550), }, - [STATE(168)] = { - [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(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(169)] = { - [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(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), + [STATE(78)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1146), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1146), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(85), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(552), }, - [STATE(170)] = { - [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(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), + [STATE(79)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1156), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1156), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [STATE(171)] = { - [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(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), + [STATE(80)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1272), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1272), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(81)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1274), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1274), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(82)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1274), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1274), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(554), }, - [STATE(172)] = { - [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(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), + [STATE(83)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1203), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1203), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(84)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1205), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1205), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(85)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1207), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1207), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(86)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1207), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1207), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(88), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(556), }, - [STATE(173)] = { - [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(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), + [STATE(87)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1271), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1271), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [STATE(174)] = { - [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(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), + [STATE(88)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1208), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1208), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(558), + [sym__newline] = ACTIONS(237), }, - [STATE(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(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(176)] = { - [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), + [STATE(89)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(226), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_block_repeat1] = STATE(226), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(558), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(90)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1249), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1249), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(92), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(91)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1249), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1249), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(92)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1247), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1247), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(93)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1178), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1178), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(97), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(94)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1248), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1248), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(99), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(95)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1248), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1248), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(96)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1239), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1239), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(101), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(97)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1240), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1240), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(98)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1240), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1240), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(104), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(99)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1243), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1243), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(100)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1241), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1241), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(106), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(101)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1035), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1035), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(102)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1035), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1035), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(108), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(103)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1036), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1036), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(109), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(104)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1047), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1047), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(576), + [sym__newline] = ACTIONS(237), }, - [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), - [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), + [STATE(105)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1048), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1048), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(111), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(578), + }, + [STATE(106)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1058), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1058), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(107)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1058), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1058), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(114), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(580), + }, + [STATE(108)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1142), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1142), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(109)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1143), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1143), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(110)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1143), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1143), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(115), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(582), + }, + [STATE(111)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1144), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1144), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(112)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1144), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1144), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(116), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(584), + }, + [STATE(113)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1146), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1146), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(117), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(586), + }, + [STATE(114)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1156), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1156), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(115)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1203), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1203), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(116)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1205), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1205), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(117)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1207), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1207), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(118)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1207), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1207), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(119), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(588), + }, + [STATE(119)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1208), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1208), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(120)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1587), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1587), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(122), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(590), + }, + [STATE(121)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1587), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1587), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(122)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1591), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1591), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(123)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1178), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1178), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(127), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(592), + }, + [STATE(124)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1592), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1592), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(594), + }, + [STATE(125)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1592), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1592), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(126)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1239), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1239), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(131), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(596), + }, + [STATE(127)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1240), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1240), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(128)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1240), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1240), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(134), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(598), + }, + [STATE(129)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1593), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1593), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(130)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1241), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1241), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(600), + }, + [STATE(131)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1035), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1035), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(132)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1035), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1035), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(138), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(602), }, - [STATE(200)] = { - [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(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), + [STATE(133)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1036), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1036), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(139), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(604), }, - [STATE(201)] = { - [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), + [STATE(134)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1047), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1047), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(135)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1048), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1048), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(606), }, - [STATE(202)] = { - [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), + [STATE(136)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1058), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1058), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(137)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1058), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1058), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(608), + }, + [STATE(138)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1142), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1142), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(139)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1143), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1143), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(140)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1143), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1143), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(145), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(610), }, - [STATE(203)] = { - [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), + [STATE(141)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1144), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1144), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(610), + [sym__newline] = ACTIONS(237), }, - [STATE(204)] = { - [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(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), + [STATE(142)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1144), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1144), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(146), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(612), }, - [STATE(205)] = { - [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(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), + [STATE(143)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1146), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1146), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(147), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(614), + }, + [STATE(144)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1156), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1156), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(145)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1203), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1203), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(146)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1205), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1205), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(147)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1207), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1207), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(148)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1207), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1207), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(616), + }, + [STATE(149)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1208), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1208), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(150)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1268), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1268), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(152), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(618), + }, + [STATE(151)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1268), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1268), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(152)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1264), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1264), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(153)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1178), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1178), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(157), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(620), + }, + [STATE(154)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1265), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1265), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(159), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(622), + }, + [STATE(155)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1265), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1265), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(156)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1239), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1239), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(161), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(624), + }, + [STATE(157)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1240), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1240), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(158)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1240), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1240), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(328), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(626), + }, + [STATE(159)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1267), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1267), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(160)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1241), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1241), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(165), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(628), + }, + [STATE(161)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1035), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1035), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(162)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1035), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1035), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(167), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(630), + }, + [STATE(163)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1036), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1036), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(168), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(632), + }, + [STATE(164)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1048), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1048), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(170), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(634), + }, + [STATE(165)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1058), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1058), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(166)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1058), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1058), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(173), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(636), }, - [STATE(206)] = { - [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(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), + [STATE(167)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1142), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1142), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [STATE(207)] = { - [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), + [STATE(168)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1143), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1143), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(345), + [sym__newline] = ACTIONS(237), }, - [STATE(208)] = { - [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(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), + [STATE(169)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1143), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1143), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(174), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(638), }, - [STATE(209)] = { - [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(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), + [STATE(170)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1144), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1144), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(171)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1144), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1144), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(175), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(640), + }, + [STATE(172)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1146), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1146), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(642), + }, + [STATE(173)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1156), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1156), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(174)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1203), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1203), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(175)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1205), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1205), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(176)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1207), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1207), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(177)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1207), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1207), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(48), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(644), + }, + [STATE(178)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1540), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1540), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(180), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(646), + }, + [STATE(179)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1540), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1540), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(180)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1544), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1544), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(181)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1178), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1178), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(648), + }, + [STATE(182)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1549), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1549), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(187), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(650), + }, + [STATE(183)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1549), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1549), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(184)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1239), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1239), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(652), + }, + [STATE(185)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1240), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1240), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(186)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1240), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1240), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(654), + }, + [STATE(187)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1537), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1537), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(188)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1241), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1241), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(194), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(656), + }, + [STATE(189)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1035), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1035), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(190)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1035), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1035), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(658), }, - [STATE(210)] = { - [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(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(211)] = { - [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(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), + [STATE(191)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1036), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1036), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(660), }, - [STATE(212)] = { - [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(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), + [STATE(192)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1047), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1047), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [STATE(213)] = { - [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(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(214)] = { - [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(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), + [STATE(193)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1048), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1048), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(662), }, - [STATE(215)] = { - [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(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), + [STATE(194)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1058), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1058), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [STATE(216)] = { - [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(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(217)] = { - [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(39), - [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), + [STATE(195)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1058), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1058), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(202), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(664), }, - [STATE(218)] = { - [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(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), + [STATE(196)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1142), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1142), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(197)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1143), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1143), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(198)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1143), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1143), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(203), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(666), }, - [STATE(219)] = { - [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(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), + [STATE(199)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1144), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1144), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(200)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1144), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1144), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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(225)] = { - [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(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), + [STATE(201)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1146), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1146), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(205), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(670), }, - [STATE(226)] = { - [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(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), + [STATE(202)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1156), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1156), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(203)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1203), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1203), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(204)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1205), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1205), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(205)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1207), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1207), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(206)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1207), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1207), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(207), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(672), }, - [STATE(227)] = { - [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(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), + [STATE(207)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1208), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1208), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(208)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1250), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1250), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(210), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(674), }, - [STATE(228)] = { - [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(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), + [STATE(209)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1250), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1250), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [STATE(229)] = { - [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), - [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), + [STATE(210)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1252), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1252), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(211)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1245), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1245), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(213), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [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), + [STATE(212)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1245), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1245), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(213)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1251), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1251), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(214)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1601), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1601), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(216), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(215)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1601), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1601), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(216)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1620), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1620), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(217)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1622), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1622), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(219), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(680), }, - [STATE(233)] = { - [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), - [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), + [STATE(218)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1622), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1622), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(219)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1623), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1623), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(220)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1832), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1832), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(682), }, - [STATE(234)] = { - [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), - [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), + [STATE(221)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1832), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1832), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [STATE(235)] = { - [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), - [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), + [STATE(222)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1839), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1839), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(223)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1840), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1840), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(225), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(684), }, - [STATE(236)] = { - [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), - [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), + [STATE(224)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1840), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1840), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [STATE(237)] = { - [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), - [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), + [STATE(225)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1846), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1846), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(686), + [sym__newline] = ACTIONS(237), }, - [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(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), - [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), + [STATE(226)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(50), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_block_repeat1] = STATE(50), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(688), }, - [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), - [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(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), + [STATE(227)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1951), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1951), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), - [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), + [STATE(228)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1951), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1951), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(229)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1733), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1733), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(230)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1734), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1734), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(232), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(692), }, - [STATE(244)] = { - [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), - [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), + [STATE(231)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1734), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1734), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [STATE(245)] = { - [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), - [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), + [STATE(232)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1736), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1736), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [STATE(246)] = { - [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), - [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(247)] = { - [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), - [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(248)] = { - [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), - [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), + [STATE(233)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1178), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1178), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(694), }, - [STATE(249)] = { - [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), - [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(250)] = { - [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(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), + [STATE(234)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1239), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1239), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(238), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(235)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1240), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1240), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(236)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1240), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1240), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(241), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(698), + }, + [STATE(237)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1241), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1241), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(243), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(238)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1035), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1035), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(239)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1035), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1035), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(245), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(702), + }, + [STATE(240)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1036), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1036), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(246), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(241)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1047), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1047), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(242)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1048), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1048), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(248), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(243)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1058), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1058), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(244)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1058), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1058), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(251), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(245)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1142), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1142), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(246)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1143), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1143), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(247)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1143), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1143), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(252), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(248)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1144), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1144), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(249)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1144), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1144), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(253), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(250)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1146), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1146), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(254), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(251)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1156), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1156), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(252)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1203), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1203), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(253)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1205), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1205), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(254)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1207), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1207), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(255)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1207), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1207), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(256), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(256)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1208), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1208), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(257)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1178), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1178), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(259), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(258)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1239), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1239), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(262), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(259)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1240), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1240), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(260)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1240), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1240), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(265), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(261)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1241), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1241), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(267), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(262)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1035), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1035), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(263)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1035), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1035), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(269), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(264)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1036), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1036), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(270), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(265)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1047), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1047), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(266)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1048), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1048), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(272), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(267)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1058), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1058), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(268)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1058), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1058), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(275), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(269)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1142), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1142), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(270)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1143), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1143), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(271)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1143), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1143), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(276), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(272)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1144), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1144), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(273)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1144), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1144), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(277), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(274)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1146), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1146), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(278), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(275)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1156), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1156), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(276)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1203), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1203), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(277)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1205), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1205), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(278)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1207), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1207), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(279)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1207), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1207), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(280), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(280)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1208), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1208), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(281)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1178), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1178), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(283), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(282)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1239), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1239), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(283)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1240), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1240), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(284)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1240), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1240), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(289), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(285)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1241), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1241), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(291), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(286)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1035), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1035), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(287)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1035), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1035), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(293), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(288)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1036), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1036), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(294), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(752), }, - [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), + [STATE(289)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1047), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1047), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(290)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1048), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1048), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(296), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(291)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1058), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1058), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(292)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1058), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1058), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(299), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(756), + }, + [STATE(293)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1142), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1142), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(294)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1143), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1143), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(295)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1143), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1143), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(300), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(296)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1144), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1144), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(297)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1144), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1144), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(298)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1146), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1146), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(762), }, - [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(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), + [STATE(299)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1156), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1156), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(300)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1203), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1203), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(301)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1205), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1205), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(302)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1207), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1207), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(303)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1207), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1207), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(304), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(764), }, - [STATE(307)] = { - [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(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), + [STATE(304)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1208), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1208), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(305)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1178), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1178), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(307), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(766), }, - [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(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(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), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(306)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1239), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1239), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(768), }, - [STATE(310)] = { - [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(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), + [STATE(307)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1240), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1240), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(308)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1240), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1240), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(313), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(770), }, - [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(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(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), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(309)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1241), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1241), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(315), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(772), }, - [STATE(313)] = { - [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(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), + [STATE(310)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1035), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1035), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [STATE(314)] = { - [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(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), + [STATE(311)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1035), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1035), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(317), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(774), }, - [STATE(315)] = { - [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(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(316)] = { - [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(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(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), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(312)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1036), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1036), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(318), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(776), }, - [STATE(318)] = { - [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(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), + [STATE(313)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1047), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1047), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [STATE(319)] = { - [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(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), + [STATE(314)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1048), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1048), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(320), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(778), }, - [STATE(320)] = { - [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(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), + [STATE(315)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1058), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1058), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(316)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1058), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1058), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(323), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(780), }, - [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(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), + [STATE(317)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1142), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1142), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(318)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1143), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1143), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(319)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1143), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1143), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(324), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(782), }, - [STATE(326)] = { - [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(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), + [STATE(320)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1144), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1144), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [STATE(327)] = { - [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(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), + [STATE(321)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1144), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1144), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(325), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(784), }, - [STATE(328)] = { - [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(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), + [STATE(322)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1146), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1146), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(326), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(786), }, - [STATE(329)] = { - [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(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), + [STATE(323)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1156), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1156), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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), + [STATE(324)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1203), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1203), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(325)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1205), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1205), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(326)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1207), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1207), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(327)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1207), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1207), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(49), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(788), }, - [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(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), + [STATE(328)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1047), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym__branch_body] = STATE(1047), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(329)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1139), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(330)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1019), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(331), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(790), }, - [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(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), + [STATE(331)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1139), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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(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), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(332)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1140), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(333), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(792), }, - [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(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), + [STATE(333)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1232), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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(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), + [STATE(334)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1018), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(335)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1019), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(353), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(794), }, - [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(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), + [STATE(336)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1018), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(337)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1019), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(338), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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), + [STATE(338)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1139), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(339)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1140), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(340), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(798), }, - [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(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), + [STATE(340)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1232), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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(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), + [STATE(341)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1206), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(359), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(800), }, - [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(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(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(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(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), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(342)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1206), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1425), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(336), + [sym_identifier] = ACTIONS(177), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(187), + [anon_sym_yield] = ACTIONS(189), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(191), + [anon_sym_errdefer] = ACTIONS(193), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(199), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(802), }, - [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(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(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(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), + [STATE(343)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1206), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(334), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(804), }, - [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(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), + [STATE(344)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1206), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(345), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(806), }, - [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), - [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), + [STATE(345)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1018), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), - [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(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), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(346)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1019), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(347), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(808), }, - [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), - [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), + [STATE(347)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1139), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(348)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1140), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(349), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(810), }, - [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), + [STATE(349)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1232), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(577), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(97), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(107), + [anon_sym_yield] = ACTIONS(109), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(111), + [anon_sym_errdefer] = ACTIONS(113), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(119), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(350)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1206), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(351), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(351)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1018), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(352)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1019), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(354), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(353)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1139), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(354)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1139), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(355)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1140), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(362), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(356)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1206), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(357), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(357)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1018), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(358)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1019), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(329), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(359)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1018), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1421), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(125), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(133), + [anon_sym_yield] = ACTIONS(135), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(137), + [anon_sym_errdefer] = ACTIONS(139), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(145), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(360)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1232), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(361)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1140), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(377), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(362)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1232), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1396), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(15), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(49), + [anon_sym_errdefer] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(87), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(363)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1206), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(375), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(824), }, + [STATE(364)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1018), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1019), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(366)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1139), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(367)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1140), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(368), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(368)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1232), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(369)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1206), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(364), + [sym_identifier] = ACTIONS(423), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(425), + [anon_sym_yield] = ACTIONS(427), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(429), + [anon_sym_errdefer] = ACTIONS(431), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(435), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(830), }, + [STATE(370)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1018), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, [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), - [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(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(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(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(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(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(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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1019), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(832), }, - [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(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), + [STATE(372)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1139), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(373)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1140), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(374), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(834), }, - [STATE(377)] = { - [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(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), + [STATE(374)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1232), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(255), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(257), + [anon_sym_yield] = ACTIONS(259), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(261), + [anon_sym_errdefer] = ACTIONS(263), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(267), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(375)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1018), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(376)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1019), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(378), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(836), }, - [STATE(378)] = { - [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(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), + [STATE(377)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1232), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(581), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(239), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(243), + [anon_sym_yield] = ACTIONS(245), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(247), + [anon_sym_errdefer] = ACTIONS(249), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(253), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), + }, + [STATE(378)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1139), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), }, [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1140), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(380), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1232), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(733), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(151), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(159), + [anon_sym_yield] = ACTIONS(161), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(163), + [anon_sym_errdefer] = ACTIONS(165), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(171), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(381)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1206), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1427), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(370), [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_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), [anon_sym_return] = ACTIONS(257), [anon_sym_yield] = ACTIONS(259), - [anon_sym_break] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), [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), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), [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_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1116), + [sym_statement] = STATE(1140), + [sym_constant_declaration] = STATE(1116), + [sym_variable_declaration] = STATE(1116), + [sym_assignment_statement] = STATE(1116), + [sym_expression_statement] = STATE(1116), + [sym_return_statement] = STATE(1116), + [sym_yield_statement] = STATE(1116), + [sym_break_statement] = STATE(1116), + [sym_continue_statement] = STATE(1116), + [sym_defer_statement] = STATE(1116), + [sym_labeled_block] = STATE(1116), + [sym_if_statement] = STATE(1116), + [sym_while_statement] = STATE(1116), + [sym_for_statement] = STATE(1116), + [sym_match_statement] = STATE(1116), + [sym_expression] = STATE(1409), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(360), + [sym_identifier] = ACTIONS(407), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(409), + [anon_sym_yield] = ACTIONS(411), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_defer] = ACTIONS(413), + [anon_sym_errdefer] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(419), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(842), }, [STATE(383)] = { - [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(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_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_type] = STATE(2104), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(844), + [anon_sym_COLON_COLON] = ACTIONS(847), + [anon_sym_func] = ACTIONS(849), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_struct] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(856), + [anon_sym_RBRACE] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_DOLLAR] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(867), + [anon_sym_void] = ACTIONS(870), + [anon_sym_anyopaque] = ACTIONS(870), + [anon_sym_bool] = ACTIONS(870), + [anon_sym_int] = ACTIONS(870), + [anon_sym_float] = ACTIONS(870), + [anon_sym_range] = ACTIONS(870), + [anon_sym_i8] = ACTIONS(870), + [anon_sym_i16] = ACTIONS(870), + [anon_sym_i32] = ACTIONS(870), + [anon_sym_i64] = ACTIONS(870), + [anon_sym_u8] = ACTIONS(870), + [anon_sym_u16] = ACTIONS(870), + [anon_sym_u32] = ACTIONS(870), + [anon_sym_u64] = ACTIONS(870), + [anon_sym_isize] = ACTIONS(870), + [anon_sym_usize] = ACTIONS(870), + [anon_sym_f32] = ACTIONS(870), + [anon_sym_f64] = ACTIONS(870), + [anon_sym_c_char] = ACTIONS(870), + [anon_sym_c_schar] = ACTIONS(870), + [anon_sym_c_uchar] = ACTIONS(870), + [anon_sym_c_short] = ACTIONS(870), + [anon_sym_c_ushort] = ACTIONS(870), + [anon_sym_c_int] = ACTIONS(870), + [anon_sym_c_uint] = ACTIONS(870), + [anon_sym_c_long] = ACTIONS(870), + [anon_sym_c_ulong] = ACTIONS(870), + [anon_sym_c_longlong] = ACTIONS(870), + [anon_sym_c_ulonglong] = ACTIONS(870), + [anon_sym_c_float] = ACTIONS(870), + [anon_sym_c_double] = ACTIONS(870), + [anon_sym_c_longdouble] = ACTIONS(870), + [anon_sym_PLUS_EQ] = ACTIONS(859), + [anon_sym_DASH_EQ] = ACTIONS(859), + [anon_sym_STAR_EQ] = ACTIONS(859), + [anon_sym_SLASH_EQ] = ACTIONS(859), + [anon_sym_return] = ACTIONS(854), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(873), + [anon_sym_break] = ACTIONS(854), + [anon_sym_continue] = ACTIONS(854), + [anon_sym_defer] = ACTIONS(854), + [anon_sym_errdefer] = ACTIONS(854), + [anon_sym_if] = ACTIONS(854), + [anon_sym_else] = ACTIONS(854), + [anon_sym_while] = ACTIONS(854), + [anon_sym_for] = ACTIONS(854), + [anon_sym_match] = ACTIONS(854), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(859), + [anon_sym_orelse] = ACTIONS(854), + [anon_sym_catch] = ACTIONS(854), + [anon_sym_or] = ACTIONS(854), + [anon_sym_and] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(854), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(854), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(859), + [anon_sym_try] = ACTIONS(854), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_true] = ACTIONS(854), + [anon_sym_false] = ACTIONS(854), + [sym_none] = ACTIONS(854), + [sym_undefined] = ACTIONS(854), + [sym_sink] = ACTIONS(854), + [sym_integer] = ACTIONS(854), + [sym_float] = ACTIONS(859), + [anon_sym_DQUOTE] = ACTIONS(859), + [sym_multiline_string] = ACTIONS(859), + [sym_character] = ACTIONS(859), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(857), + [sym__newline] = ACTIONS(859), }, [STATE(384)] = { - [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_type] = STATE(2104), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(844), + [anon_sym_COLON_COLON] = ACTIONS(847), + [anon_sym_func] = ACTIONS(849), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_struct] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(859), + [anon_sym_RBRACE] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_DOLLAR] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(867), + [anon_sym_void] = ACTIONS(870), + [anon_sym_anyopaque] = ACTIONS(870), + [anon_sym_bool] = ACTIONS(870), + [anon_sym_int] = ACTIONS(870), + [anon_sym_float] = ACTIONS(870), + [anon_sym_range] = ACTIONS(870), + [anon_sym_i8] = ACTIONS(870), + [anon_sym_i16] = ACTIONS(870), + [anon_sym_i32] = ACTIONS(870), + [anon_sym_i64] = ACTIONS(870), + [anon_sym_u8] = ACTIONS(870), + [anon_sym_u16] = ACTIONS(870), + [anon_sym_u32] = ACTIONS(870), + [anon_sym_u64] = ACTIONS(870), + [anon_sym_isize] = ACTIONS(870), + [anon_sym_usize] = ACTIONS(870), + [anon_sym_f32] = ACTIONS(870), + [anon_sym_f64] = ACTIONS(870), + [anon_sym_c_char] = ACTIONS(870), + [anon_sym_c_schar] = ACTIONS(870), + [anon_sym_c_uchar] = ACTIONS(870), + [anon_sym_c_short] = ACTIONS(870), + [anon_sym_c_ushort] = ACTIONS(870), + [anon_sym_c_int] = ACTIONS(870), + [anon_sym_c_uint] = ACTIONS(870), + [anon_sym_c_long] = ACTIONS(870), + [anon_sym_c_ulong] = ACTIONS(870), + [anon_sym_c_longlong] = ACTIONS(870), + [anon_sym_c_ulonglong] = ACTIONS(870), + [anon_sym_c_float] = ACTIONS(870), + [anon_sym_c_double] = ACTIONS(870), + [anon_sym_c_longdouble] = ACTIONS(870), + [anon_sym_PLUS_EQ] = ACTIONS(859), + [anon_sym_DASH_EQ] = ACTIONS(859), + [anon_sym_STAR_EQ] = ACTIONS(859), + [anon_sym_SLASH_EQ] = ACTIONS(859), + [anon_sym_return] = ACTIONS(854), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_break] = ACTIONS(854), + [anon_sym_continue] = ACTIONS(854), + [anon_sym_defer] = ACTIONS(854), + [anon_sym_errdefer] = ACTIONS(854), + [anon_sym_if] = ACTIONS(854), + [anon_sym_else] = ACTIONS(854), + [anon_sym_while] = ACTIONS(854), + [anon_sym_for] = ACTIONS(854), + [anon_sym_match] = ACTIONS(854), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(859), + [anon_sym_orelse] = ACTIONS(854), + [anon_sym_catch] = ACTIONS(854), + [anon_sym_or] = ACTIONS(854), + [anon_sym_and] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(854), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(854), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(859), + [anon_sym_try] = ACTIONS(854), + [anon_sym_DOT] = ACTIONS(854), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_true] = ACTIONS(854), + [anon_sym_false] = ACTIONS(854), + [sym_none] = ACTIONS(854), + [sym_undefined] = ACTIONS(854), + [sym_sink] = ACTIONS(854), + [sym_integer] = ACTIONS(854), + [sym_float] = ACTIONS(859), + [anon_sym_DQUOTE] = ACTIONS(859), + [sym_multiline_string] = ACTIONS(859), + [sym_character] = ACTIONS(859), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(857), + [sym__newline] = ACTIONS(859), }, [STATE(385)] = { - [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_type] = STATE(2108), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(844), + [anon_sym_COLON_COLON] = ACTIONS(878), + [anon_sym_func] = ACTIONS(849), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_struct] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(856), + [anon_sym_RBRACE] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_DOLLAR] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(867), + [anon_sym_void] = ACTIONS(870), + [anon_sym_anyopaque] = ACTIONS(870), + [anon_sym_bool] = ACTIONS(870), + [anon_sym_int] = ACTIONS(870), + [anon_sym_float] = ACTIONS(870), + [anon_sym_range] = ACTIONS(870), + [anon_sym_i8] = ACTIONS(870), + [anon_sym_i16] = ACTIONS(870), + [anon_sym_i32] = ACTIONS(870), + [anon_sym_i64] = ACTIONS(870), + [anon_sym_u8] = ACTIONS(870), + [anon_sym_u16] = ACTIONS(870), + [anon_sym_u32] = ACTIONS(870), + [anon_sym_u64] = ACTIONS(870), + [anon_sym_isize] = ACTIONS(870), + [anon_sym_usize] = ACTIONS(870), + [anon_sym_f32] = ACTIONS(870), + [anon_sym_f64] = ACTIONS(870), + [anon_sym_c_char] = ACTIONS(870), + [anon_sym_c_schar] = ACTIONS(870), + [anon_sym_c_uchar] = ACTIONS(870), + [anon_sym_c_short] = ACTIONS(870), + [anon_sym_c_ushort] = ACTIONS(870), + [anon_sym_c_int] = ACTIONS(870), + [anon_sym_c_uint] = ACTIONS(870), + [anon_sym_c_long] = ACTIONS(870), + [anon_sym_c_ulong] = ACTIONS(870), + [anon_sym_c_longlong] = ACTIONS(870), + [anon_sym_c_ulonglong] = ACTIONS(870), + [anon_sym_c_float] = ACTIONS(870), + [anon_sym_c_double] = ACTIONS(870), + [anon_sym_c_longdouble] = ACTIONS(870), + [anon_sym_PLUS_EQ] = ACTIONS(859), + [anon_sym_DASH_EQ] = ACTIONS(859), + [anon_sym_STAR_EQ] = ACTIONS(859), + [anon_sym_SLASH_EQ] = ACTIONS(859), + [anon_sym_return] = ACTIONS(854), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(873), + [anon_sym_break] = ACTIONS(854), + [anon_sym_continue] = ACTIONS(854), + [anon_sym_defer] = ACTIONS(854), + [anon_sym_errdefer] = ACTIONS(854), + [anon_sym_if] = ACTIONS(854), + [anon_sym_while] = ACTIONS(854), + [anon_sym_for] = ACTIONS(854), + [anon_sym_match] = ACTIONS(854), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(859), + [anon_sym_orelse] = ACTIONS(854), + [anon_sym_catch] = ACTIONS(854), + [anon_sym_or] = ACTIONS(854), + [anon_sym_and] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(854), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(854), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(859), + [anon_sym_try] = ACTIONS(854), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_true] = ACTIONS(854), + [anon_sym_false] = ACTIONS(854), + [sym_none] = ACTIONS(854), + [sym_undefined] = ACTIONS(854), + [sym_sink] = ACTIONS(854), + [sym_integer] = ACTIONS(854), + [sym_float] = ACTIONS(859), + [anon_sym_DQUOTE] = ACTIONS(859), + [sym_multiline_string] = ACTIONS(859), + [sym_character] = ACTIONS(859), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(309), + [sym__newline] = ACTIONS(859), }, [STATE(386)] = { - [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_struct_type] = STATE(1472), + [sym_c_struct_type] = STATE(1714), + [sym_distinct_type] = STATE(1714), + [sym_alias_type] = STATE(1714), + [sym_union_type] = STATE(1714), + [sym_enum_type] = STATE(1714), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [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(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(880), + [anon_sym_import] = ACTIONS(882), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [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(221), + [anon_sym_enum] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(345), + [sym__newline] = ACTIONS(237), }, [STATE(387)] = { - [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_type] = STATE(461), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(293), + [anon_sym_func] = ACTIONS(298), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(296), + [anon_sym_EQ] = ACTIONS(296), + [anon_sym_struct] = ACTIONS(296), + [anon_sym_LPAREN] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_RBRACE] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_DOLLAR] = ACTIONS(291), + [anon_sym_QMARK] = ACTIONS(301), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(304), + [anon_sym_mut] = ACTIONS(896), + [anon_sym_LBRACK] = ACTIONS(309), + [anon_sym_void] = ACTIONS(312), + [anon_sym_anyopaque] = ACTIONS(312), + [anon_sym_bool] = ACTIONS(312), + [anon_sym_int] = ACTIONS(312), + [anon_sym_float] = ACTIONS(312), + [anon_sym_range] = ACTIONS(312), + [anon_sym_i8] = ACTIONS(312), + [anon_sym_i16] = ACTIONS(312), + [anon_sym_i32] = ACTIONS(312), + [anon_sym_i64] = ACTIONS(312), + [anon_sym_u8] = ACTIONS(312), + [anon_sym_u16] = ACTIONS(312), + [anon_sym_u32] = ACTIONS(312), + [anon_sym_u64] = ACTIONS(312), + [anon_sym_isize] = ACTIONS(312), + [anon_sym_usize] = ACTIONS(312), + [anon_sym_f32] = ACTIONS(312), + [anon_sym_f64] = ACTIONS(312), + [anon_sym_c_char] = ACTIONS(312), + [anon_sym_c_schar] = ACTIONS(312), + [anon_sym_c_uchar] = ACTIONS(312), + [anon_sym_c_short] = ACTIONS(312), + [anon_sym_c_ushort] = ACTIONS(312), + [anon_sym_c_int] = ACTIONS(312), + [anon_sym_c_uint] = ACTIONS(312), + [anon_sym_c_long] = ACTIONS(312), + [anon_sym_c_ulong] = ACTIONS(312), + [anon_sym_c_longlong] = ACTIONS(312), + [anon_sym_c_ulonglong] = ACTIONS(312), + [anon_sym_c_float] = ACTIONS(312), + [anon_sym_c_double] = ACTIONS(312), + [anon_sym_c_longdouble] = ACTIONS(312), + [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(296), + [anon_sym_yield] = ACTIONS(296), + [anon_sym_break] = ACTIONS(296), + [anon_sym_continue] = ACTIONS(296), + [anon_sym_defer] = ACTIONS(296), + [anon_sym_errdefer] = ACTIONS(296), + [anon_sym_if] = ACTIONS(296), + [anon_sym_else] = ACTIONS(296), + [anon_sym_while] = ACTIONS(296), + [anon_sym_for] = ACTIONS(296), + [anon_sym_match] = ACTIONS(296), + [anon_sym_DOT_DOT] = ACTIONS(296), + [anon_sym_DOT_DOT_EQ] = ACTIONS(291), + [anon_sym_orelse] = ACTIONS(296), + [anon_sym_catch] = ACTIONS(296), + [anon_sym_or] = ACTIONS(296), + [anon_sym_and] = ACTIONS(296), + [anon_sym_EQ_EQ] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(291), + [anon_sym_LT] = ACTIONS(296), + [anon_sym_LT_EQ] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(296), + [anon_sym_GT_EQ] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_SLASH] = ACTIONS(296), + [anon_sym_AMP] = ACTIONS(291), + [anon_sym_try] = ACTIONS(296), + [anon_sym_DOT] = ACTIONS(296), + [anon_sym_CARET] = ACTIONS(291), + [anon_sym_true] = ACTIONS(296), + [anon_sym_false] = ACTIONS(296), + [sym_none] = ACTIONS(296), + [sym_undefined] = ACTIONS(296), + [sym_sink] = ACTIONS(296), + [sym_integer] = ACTIONS(296), + [sym_float] = ACTIONS(291), + [anon_sym_DQUOTE] = ACTIONS(291), + [sym_multiline_string] = ACTIONS(291), + [sym_character] = ACTIONS(291), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(576), + [sym__newline] = ACTIONS(291), }, [STATE(388)] = { - [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_type] = STATE(427), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(315), + [anon_sym_func] = ACTIONS(318), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(281), + [anon_sym_EQ] = ACTIONS(281), + [anon_sym_struct] = ACTIONS(281), + [anon_sym_LPAREN] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(277), + [anon_sym_RBRACE] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(277), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(324), + [anon_sym_mut] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(329), + [anon_sym_void] = ACTIONS(332), + [anon_sym_anyopaque] = ACTIONS(332), + [anon_sym_bool] = ACTIONS(332), + [anon_sym_int] = ACTIONS(332), + [anon_sym_float] = ACTIONS(332), + [anon_sym_range] = ACTIONS(332), + [anon_sym_i8] = ACTIONS(332), + [anon_sym_i16] = ACTIONS(332), + [anon_sym_i32] = ACTIONS(332), + [anon_sym_i64] = ACTIONS(332), + [anon_sym_u8] = ACTIONS(332), + [anon_sym_u16] = ACTIONS(332), + [anon_sym_u32] = ACTIONS(332), + [anon_sym_u64] = ACTIONS(332), + [anon_sym_isize] = ACTIONS(332), + [anon_sym_usize] = ACTIONS(332), + [anon_sym_f32] = ACTIONS(332), + [anon_sym_f64] = ACTIONS(332), + [anon_sym_c_char] = ACTIONS(332), + [anon_sym_c_schar] = ACTIONS(332), + [anon_sym_c_uchar] = ACTIONS(332), + [anon_sym_c_short] = ACTIONS(332), + [anon_sym_c_ushort] = ACTIONS(332), + [anon_sym_c_int] = ACTIONS(332), + [anon_sym_c_uint] = ACTIONS(332), + [anon_sym_c_long] = ACTIONS(332), + [anon_sym_c_ulong] = ACTIONS(332), + [anon_sym_c_longlong] = ACTIONS(332), + [anon_sym_c_ulonglong] = ACTIONS(332), + [anon_sym_c_float] = ACTIONS(332), + [anon_sym_c_double] = ACTIONS(332), + [anon_sym_c_longdouble] = ACTIONS(332), + [anon_sym_PLUS_EQ] = ACTIONS(277), + [anon_sym_DASH_EQ] = ACTIONS(277), + [anon_sym_STAR_EQ] = ACTIONS(277), + [anon_sym_SLASH_EQ] = ACTIONS(277), + [anon_sym_return] = ACTIONS(281), + [anon_sym_yield] = ACTIONS(281), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_defer] = ACTIONS(281), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(281), + [anon_sym_else] = ACTIONS(281), + [anon_sym_while] = ACTIONS(281), + [anon_sym_for] = ACTIONS(281), + [anon_sym_match] = ACTIONS(281), + [anon_sym_DOT_DOT] = ACTIONS(281), + [anon_sym_DOT_DOT_EQ] = ACTIONS(277), + [anon_sym_orelse] = ACTIONS(281), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_or] = ACTIONS(281), + [anon_sym_and] = ACTIONS(281), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ] = ACTIONS(277), + [anon_sym_LT] = ACTIONS(281), + [anon_sym_LT_EQ] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(281), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(281), + [anon_sym_SLASH] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_try] = ACTIONS(281), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_CARET] = ACTIONS(277), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [sym_none] = ACTIONS(281), + [sym_undefined] = ACTIONS(281), + [sym_sink] = ACTIONS(281), + [sym_integer] = ACTIONS(281), + [sym_float] = ACTIONS(277), + [anon_sym_DQUOTE] = ACTIONS(277), + [sym_multiline_string] = ACTIONS(277), + [sym_character] = ACTIONS(277), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(576), + [sym__newline] = ACTIONS(277), }, [STATE(389)] = { - [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(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_type] = STATE(426), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(315), + [anon_sym_func] = ACTIONS(318), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(281), + [anon_sym_EQ] = ACTIONS(281), + [anon_sym_struct] = ACTIONS(281), + [anon_sym_LPAREN] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(277), + [anon_sym_RBRACE] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(277), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(324), + [anon_sym_mut] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(329), + [anon_sym_void] = ACTIONS(332), + [anon_sym_anyopaque] = ACTIONS(332), + [anon_sym_bool] = ACTIONS(332), + [anon_sym_int] = ACTIONS(332), + [anon_sym_float] = ACTIONS(332), + [anon_sym_range] = ACTIONS(332), + [anon_sym_i8] = ACTIONS(332), + [anon_sym_i16] = ACTIONS(332), + [anon_sym_i32] = ACTIONS(332), + [anon_sym_i64] = ACTIONS(332), + [anon_sym_u8] = ACTIONS(332), + [anon_sym_u16] = ACTIONS(332), + [anon_sym_u32] = ACTIONS(332), + [anon_sym_u64] = ACTIONS(332), + [anon_sym_isize] = ACTIONS(332), + [anon_sym_usize] = ACTIONS(332), + [anon_sym_f32] = ACTIONS(332), + [anon_sym_f64] = ACTIONS(332), + [anon_sym_c_char] = ACTIONS(332), + [anon_sym_c_schar] = ACTIONS(332), + [anon_sym_c_uchar] = ACTIONS(332), + [anon_sym_c_short] = ACTIONS(332), + [anon_sym_c_ushort] = ACTIONS(332), + [anon_sym_c_int] = ACTIONS(332), + [anon_sym_c_uint] = ACTIONS(332), + [anon_sym_c_long] = ACTIONS(332), + [anon_sym_c_ulong] = ACTIONS(332), + [anon_sym_c_longlong] = ACTIONS(332), + [anon_sym_c_ulonglong] = ACTIONS(332), + [anon_sym_c_float] = ACTIONS(332), + [anon_sym_c_double] = ACTIONS(332), + [anon_sym_c_longdouble] = ACTIONS(332), + [anon_sym_PLUS_EQ] = ACTIONS(277), + [anon_sym_DASH_EQ] = ACTIONS(277), + [anon_sym_STAR_EQ] = ACTIONS(277), + [anon_sym_SLASH_EQ] = ACTIONS(277), + [anon_sym_return] = ACTIONS(281), + [anon_sym_yield] = ACTIONS(281), + [anon_sym_break] = ACTIONS(281), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_defer] = ACTIONS(281), + [anon_sym_errdefer] = ACTIONS(281), + [anon_sym_if] = ACTIONS(281), + [anon_sym_else] = ACTIONS(281), + [anon_sym_while] = ACTIONS(281), + [anon_sym_for] = ACTIONS(281), + [anon_sym_match] = ACTIONS(281), + [anon_sym_DOT_DOT] = ACTIONS(281), + [anon_sym_DOT_DOT_EQ] = ACTIONS(277), + [anon_sym_orelse] = ACTIONS(281), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_or] = ACTIONS(281), + [anon_sym_and] = ACTIONS(281), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ] = ACTIONS(277), + [anon_sym_LT] = ACTIONS(281), + [anon_sym_LT_EQ] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(281), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(281), + [anon_sym_SLASH] = ACTIONS(281), + [anon_sym_AMP] = ACTIONS(277), + [anon_sym_try] = ACTIONS(281), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_CARET] = ACTIONS(277), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [sym_none] = ACTIONS(281), + [sym_undefined] = ACTIONS(281), + [sym_sink] = ACTIONS(281), + [sym_integer] = ACTIONS(281), + [sym_float] = ACTIONS(277), + [anon_sym_DQUOTE] = ACTIONS(277), + [sym_multiline_string] = ACTIONS(277), + [sym_character] = ACTIONS(277), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(857), + [sym__newline] = ACTIONS(277), }, [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_type] = STATE(449), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(350), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(341), + [anon_sym_struct] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_LBRACE] = ACTIONS(337), + [anon_sym_RBRACE] = ACTIONS(337), + [anon_sym_DASH] = ACTIONS(341), + [anon_sym_DOLLAR] = ACTIONS(337), + [anon_sym_QMARK] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(287), + [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(337), + [anon_sym_DASH_EQ] = ACTIONS(337), + [anon_sym_STAR_EQ] = ACTIONS(337), + [anon_sym_SLASH_EQ] = ACTIONS(337), + [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(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(337), + [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(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_LT_EQ] = ACTIONS(337), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(337), + [anon_sym_PLUS] = ACTIONS(341), + [anon_sym_SLASH] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_try] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(341), + [anon_sym_CARET] = ACTIONS(337), + [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(337), + [anon_sym_DQUOTE] = ACTIONS(337), + [sym_multiline_string] = ACTIONS(337), + [sym_character] = ACTIONS(337), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(337), }, [STATE(391)] = { - [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(902), - }, - [STATE(392)] = { - [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(610), - }, - [STATE(393)] = { - [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(610), - }, - [STATE(394)] = { - [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(857), - }, - [STATE(395)] = { - [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_struct_type] = STATE(1468), + [sym_c_struct_type] = STATE(1568), + [sym_distinct_type] = STATE(1568), + [sym_alias_type] = STATE(1568), + [sym_union_type] = STATE(1568), + [sym_enum_type] = STATE(1568), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1651), + [sym_labeled_block] = STATE(1651), + [sym_if_statement] = STATE(1651), + [sym_while_statement] = STATE(1651), + [sym_for_statement] = STATE(1651), + [sym_match_statement] = STATE(1651), + [sym__value] = STATE(1651), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(386), + [sym_identifier] = ACTIONS(880), + [anon_sym_import] = ACTIONS(900), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_c_struct] = ACTIONS(884), + [sym_opaque_type] = ACTIONS(902), + [anon_sym_distinct] = ACTIONS(888), + [anon_sym_alias] = ACTIONS(890), + [anon_sym_union] = ACTIONS(892), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_enum] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(904), }, - [STATE(396)] = { - [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), + [STATE(392)] = { + [sym_type] = STATE(418), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(371), + [anon_sym_func] = ACTIONS(376), + [anon_sym_c_func] = ACTIONS(283), + [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(287), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_mut] = ACTIONS(403), + [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(911), + [sym__newline] = ACTIONS(369), + }, + [STATE(393)] = { + [sym_type] = STATE(451), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(347), + [anon_sym_func] = ACTIONS(350), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(341), + [anon_sym_struct] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_LBRACE] = ACTIONS(337), + [anon_sym_RBRACE] = ACTIONS(337), + [anon_sym_DASH] = ACTIONS(341), + [anon_sym_DOLLAR] = ACTIONS(337), + [anon_sym_QMARK] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(356), + [anon_sym_mut] = ACTIONS(397), + [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(337), + [anon_sym_DASH_EQ] = ACTIONS(337), + [anon_sym_STAR_EQ] = ACTIONS(337), + [anon_sym_SLASH_EQ] = ACTIONS(337), + [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(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(337), + [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(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_LT_EQ] = ACTIONS(337), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(337), + [anon_sym_PLUS] = ACTIONS(341), + [anon_sym_SLASH] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_try] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(341), + [anon_sym_CARET] = ACTIONS(337), + [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(337), + [anon_sym_DQUOTE] = ACTIONS(337), + [sym_multiline_string] = ACTIONS(337), + [sym_character] = ACTIONS(337), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(337), + }, + [STATE(394)] = { + [aux_sym_type_repeat1] = STATE(398), + [ts_builtin_sym_end] = ACTIONS(906), + [sym_identifier] = ACTIONS(908), + [anon_sym_COLON_COLON] = ACTIONS(906), + [anon_sym_import] = ACTIONS(908), + [anon_sym_hide] = ACTIONS(908), + [anon_sym_func] = ACTIONS(908), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_EQ] = ACTIONS(908), + [anon_sym_struct] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(906), + [anon_sym_RPAREN] = ACTIONS(906), + [anon_sym_LBRACE] = ACTIONS(906), + [anon_sym_COMMA] = ACTIONS(906), + [anon_sym_RBRACE] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(908), + [anon_sym_DOLLAR] = ACTIONS(906), + [anon_sym_PIPE] = ACTIONS(906), + [anon_sym_QMARK] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(908), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_SEMI] = ACTIONS(906), + [anon_sym_RBRACK] = ACTIONS(906), + [anon_sym_void] = ACTIONS(908), + [anon_sym_anyopaque] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_int] = ACTIONS(908), + [anon_sym_float] = ACTIONS(908), + [anon_sym_range] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_c_char] = ACTIONS(908), + [anon_sym_c_schar] = ACTIONS(908), + [anon_sym_c_uchar] = ACTIONS(908), + [anon_sym_c_short] = ACTIONS(908), + [anon_sym_c_ushort] = ACTIONS(908), + [anon_sym_c_int] = ACTIONS(908), + [anon_sym_c_uint] = ACTIONS(908), + [anon_sym_c_long] = ACTIONS(908), + [anon_sym_c_ulong] = ACTIONS(908), + [anon_sym_c_longlong] = ACTIONS(908), + [anon_sym_c_ulonglong] = ACTIONS(908), + [anon_sym_c_float] = ACTIONS(908), + [anon_sym_c_double] = ACTIONS(908), + [anon_sym_c_longdouble] = ACTIONS(908), + [anon_sym_PLUS_EQ] = ACTIONS(906), + [anon_sym_DASH_EQ] = ACTIONS(906), + [anon_sym_STAR_EQ] = ACTIONS(906), + [anon_sym_SLASH_EQ] = ACTIONS(906), + [anon_sym_return] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(908), + [anon_sym_COLON] = ACTIONS(908), + [anon_sym_break] = ACTIONS(908), + [anon_sym_continue] = ACTIONS(908), + [anon_sym_defer] = ACTIONS(908), + [anon_sym_errdefer] = ACTIONS(908), + [anon_sym_if] = ACTIONS(908), + [anon_sym_else] = ACTIONS(908), + [anon_sym_while] = ACTIONS(908), + [anon_sym_for] = ACTIONS(908), + [anon_sym_match] = ACTIONS(908), + [anon_sym_DOT_DOT] = ACTIONS(908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(906), + [anon_sym_orelse] = ACTIONS(908), + [anon_sym_catch] = ACTIONS(908), + [anon_sym_or] = ACTIONS(908), + [anon_sym_and] = ACTIONS(908), + [anon_sym_EQ_EQ] = ACTIONS(906), + [anon_sym_BANG_EQ] = ACTIONS(906), + [anon_sym_LT] = ACTIONS(908), + [anon_sym_LT_EQ] = ACTIONS(906), + [anon_sym_GT] = ACTIONS(908), + [anon_sym_GT_EQ] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(908), + [anon_sym_SLASH] = ACTIONS(908), + [anon_sym_AMP] = ACTIONS(906), + [anon_sym_try] = ACTIONS(908), + [anon_sym_DOT] = ACTIONS(908), + [anon_sym_CARET] = ACTIONS(906), + [anon_sym_true] = ACTIONS(908), + [anon_sym_false] = ACTIONS(908), + [sym_none] = ACTIONS(908), + [sym_undefined] = ACTIONS(908), + [sym_sink] = ACTIONS(908), + [sym_integer] = ACTIONS(908), + [sym_float] = ACTIONS(906), + [anon_sym_DQUOTE] = ACTIONS(906), + [sym_multiline_string] = ACTIONS(906), + [sym_character] = ACTIONS(906), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(906), + }, + [STATE(395)] = { + [sym_struct_type] = STATE(1469), + [sym_c_struct_type] = STATE(1717), + [sym_distinct_type] = STATE(1717), + [sym_alias_type] = STATE(1717), + [sym_union_type] = STATE(1717), + [sym_enum_type] = STATE(1717), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [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(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_c_struct] = ACTIONS(884), + [sym_opaque_type] = ACTIONS(910), + [anon_sym_distinct] = ACTIONS(888), + [anon_sym_alias] = ACTIONS(890), + [anon_sym_union] = ACTIONS(892), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_enum] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(396)] = { + [aux_sym_type_repeat1] = STATE(396), + [ts_builtin_sym_end] = ACTIONS(912), + [sym_identifier] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_import] = ACTIONS(914), + [anon_sym_hide] = ACTIONS(914), + [anon_sym_func] = ACTIONS(914), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_EQ] = ACTIONS(914), + [anon_sym_struct] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(912), + [anon_sym_RPAREN] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(912), + [anon_sym_COMMA] = ACTIONS(912), + [anon_sym_RBRACE] = ACTIONS(912), + [anon_sym_DASH] = ACTIONS(914), + [anon_sym_DOLLAR] = ACTIONS(912), + [anon_sym_PIPE] = ACTIONS(916), + [anon_sym_QMARK] = ACTIONS(912), + [anon_sym_STAR] = ACTIONS(914), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_SEMI] = ACTIONS(912), + [anon_sym_RBRACK] = ACTIONS(912), + [anon_sym_void] = ACTIONS(914), + [anon_sym_anyopaque] = ACTIONS(914), + [anon_sym_bool] = ACTIONS(914), + [anon_sym_int] = ACTIONS(914), + [anon_sym_float] = ACTIONS(914), + [anon_sym_range] = ACTIONS(914), + [anon_sym_i8] = ACTIONS(914), + [anon_sym_i16] = ACTIONS(914), + [anon_sym_i32] = ACTIONS(914), + [anon_sym_i64] = ACTIONS(914), + [anon_sym_u8] = ACTIONS(914), + [anon_sym_u16] = ACTIONS(914), + [anon_sym_u32] = ACTIONS(914), + [anon_sym_u64] = ACTIONS(914), + [anon_sym_isize] = ACTIONS(914), + [anon_sym_usize] = ACTIONS(914), + [anon_sym_f32] = ACTIONS(914), + [anon_sym_f64] = ACTIONS(914), + [anon_sym_c_char] = ACTIONS(914), + [anon_sym_c_schar] = ACTIONS(914), + [anon_sym_c_uchar] = ACTIONS(914), + [anon_sym_c_short] = ACTIONS(914), + [anon_sym_c_ushort] = ACTIONS(914), + [anon_sym_c_int] = ACTIONS(914), + [anon_sym_c_uint] = ACTIONS(914), + [anon_sym_c_long] = ACTIONS(914), + [anon_sym_c_ulong] = ACTIONS(914), + [anon_sym_c_longlong] = ACTIONS(914), + [anon_sym_c_ulonglong] = ACTIONS(914), + [anon_sym_c_float] = ACTIONS(914), + [anon_sym_c_double] = ACTIONS(914), + [anon_sym_c_longdouble] = ACTIONS(914), + [anon_sym_PLUS_EQ] = ACTIONS(912), + [anon_sym_DASH_EQ] = ACTIONS(912), + [anon_sym_STAR_EQ] = ACTIONS(912), + [anon_sym_SLASH_EQ] = ACTIONS(912), + [anon_sym_return] = ACTIONS(914), + [anon_sym_yield] = ACTIONS(914), + [anon_sym_COLON] = ACTIONS(914), + [anon_sym_break] = ACTIONS(914), + [anon_sym_continue] = ACTIONS(914), + [anon_sym_defer] = ACTIONS(914), + [anon_sym_errdefer] = ACTIONS(914), + [anon_sym_if] = ACTIONS(914), + [anon_sym_else] = ACTIONS(914), + [anon_sym_while] = ACTIONS(914), + [anon_sym_for] = ACTIONS(914), + [anon_sym_match] = ACTIONS(914), + [anon_sym_DOT_DOT] = ACTIONS(914), + [anon_sym_DOT_DOT_EQ] = ACTIONS(912), + [anon_sym_orelse] = ACTIONS(914), + [anon_sym_catch] = ACTIONS(914), + [anon_sym_or] = ACTIONS(914), + [anon_sym_and] = ACTIONS(914), + [anon_sym_EQ_EQ] = ACTIONS(912), + [anon_sym_BANG_EQ] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(914), + [anon_sym_LT_EQ] = ACTIONS(912), + [anon_sym_GT] = ACTIONS(914), + [anon_sym_GT_EQ] = ACTIONS(912), + [anon_sym_PLUS] = ACTIONS(914), + [anon_sym_SLASH] = ACTIONS(914), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_try] = ACTIONS(914), + [anon_sym_DOT] = ACTIONS(914), + [anon_sym_CARET] = ACTIONS(912), + [anon_sym_true] = ACTIONS(914), + [anon_sym_false] = ACTIONS(914), + [sym_none] = ACTIONS(914), + [sym_undefined] = ACTIONS(914), + [sym_sink] = ACTIONS(914), + [sym_integer] = ACTIONS(914), + [sym_float] = ACTIONS(912), + [anon_sym_DQUOTE] = ACTIONS(912), + [sym_multiline_string] = ACTIONS(912), + [sym_character] = ACTIONS(912), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(912), }, [STATE(397)] = { - [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_struct_type] = STATE(1476), + [sym_c_struct_type] = STATE(1653), + [sym_distinct_type] = STATE(1653), + [sym_alias_type] = STATE(1653), + [sym_union_type] = STATE(1653), + [sym_enum_type] = STATE(1653), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1677), + [sym_labeled_block] = STATE(1677), + [sym_if_statement] = STATE(1677), + [sym_while_statement] = STATE(1677), + [sym_for_statement] = STATE(1677), + [sym_match_statement] = STATE(1677), + [sym__value] = STATE(1677), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(395), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_c_struct] = ACTIONS(884), + [sym_opaque_type] = ACTIONS(919), + [anon_sym_distinct] = ACTIONS(888), + [anon_sym_alias] = ACTIONS(890), + [anon_sym_union] = ACTIONS(892), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_enum] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(917), + [sym__newline] = ACTIONS(921), }, [STATE(398)] = { - [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), + [aux_sym_type_repeat1] = STATE(396), + [ts_builtin_sym_end] = ACTIONS(923), + [sym_identifier] = ACTIONS(925), + [anon_sym_COLON_COLON] = ACTIONS(923), + [anon_sym_import] = ACTIONS(925), + [anon_sym_hide] = ACTIONS(925), + [anon_sym_func] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_EQ] = ACTIONS(925), + [anon_sym_struct] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(923), + [anon_sym_RPAREN] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(923), + [anon_sym_COMMA] = ACTIONS(923), + [anon_sym_RBRACE] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_DOLLAR] = ACTIONS(923), + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_QMARK] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(923), + [anon_sym_RBRACK] = ACTIONS(923), + [anon_sym_void] = ACTIONS(925), + [anon_sym_anyopaque] = ACTIONS(925), + [anon_sym_bool] = ACTIONS(925), + [anon_sym_int] = ACTIONS(925), + [anon_sym_float] = ACTIONS(925), + [anon_sym_range] = ACTIONS(925), + [anon_sym_i8] = ACTIONS(925), + [anon_sym_i16] = ACTIONS(925), + [anon_sym_i32] = ACTIONS(925), + [anon_sym_i64] = ACTIONS(925), + [anon_sym_u8] = ACTIONS(925), + [anon_sym_u16] = ACTIONS(925), + [anon_sym_u32] = ACTIONS(925), + [anon_sym_u64] = ACTIONS(925), + [anon_sym_isize] = ACTIONS(925), + [anon_sym_usize] = ACTIONS(925), + [anon_sym_f32] = ACTIONS(925), + [anon_sym_f64] = ACTIONS(925), + [anon_sym_c_char] = ACTIONS(925), + [anon_sym_c_schar] = ACTIONS(925), + [anon_sym_c_uchar] = ACTIONS(925), + [anon_sym_c_short] = ACTIONS(925), + [anon_sym_c_ushort] = ACTIONS(925), + [anon_sym_c_int] = ACTIONS(925), + [anon_sym_c_uint] = ACTIONS(925), + [anon_sym_c_long] = ACTIONS(925), + [anon_sym_c_ulong] = ACTIONS(925), + [anon_sym_c_longlong] = ACTIONS(925), + [anon_sym_c_ulonglong] = ACTIONS(925), + [anon_sym_c_float] = ACTIONS(925), + [anon_sym_c_double] = ACTIONS(925), + [anon_sym_c_longdouble] = ACTIONS(925), + [anon_sym_PLUS_EQ] = ACTIONS(923), + [anon_sym_DASH_EQ] = ACTIONS(923), + [anon_sym_STAR_EQ] = ACTIONS(923), + [anon_sym_SLASH_EQ] = ACTIONS(923), + [anon_sym_return] = ACTIONS(925), + [anon_sym_yield] = ACTIONS(925), + [anon_sym_COLON] = ACTIONS(925), + [anon_sym_break] = ACTIONS(925), + [anon_sym_continue] = ACTIONS(925), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(925), + [anon_sym_if] = ACTIONS(925), + [anon_sym_else] = ACTIONS(925), + [anon_sym_while] = ACTIONS(925), + [anon_sym_for] = ACTIONS(925), + [anon_sym_match] = ACTIONS(925), + [anon_sym_DOT_DOT] = ACTIONS(925), + [anon_sym_DOT_DOT_EQ] = ACTIONS(923), + [anon_sym_orelse] = ACTIONS(925), + [anon_sym_catch] = ACTIONS(925), + [anon_sym_or] = ACTIONS(925), + [anon_sym_and] = ACTIONS(925), + [anon_sym_EQ_EQ] = ACTIONS(923), + [anon_sym_BANG_EQ] = ACTIONS(923), + [anon_sym_LT] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(923), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_GT_EQ] = ACTIONS(923), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(923), + [anon_sym_try] = ACTIONS(925), + [anon_sym_DOT] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(923), + [anon_sym_true] = ACTIONS(925), + [anon_sym_false] = ACTIONS(925), + [sym_none] = ACTIONS(925), + [sym_undefined] = ACTIONS(925), + [sym_sink] = ACTIONS(925), + [sym_integer] = ACTIONS(925), + [sym_float] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(923), + [sym_multiline_string] = ACTIONS(923), + [sym_character] = ACTIONS(923), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(921), + [sym__newline] = ACTIONS(923), }, [STATE(399)] = { - [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), + [aux_sym_type_repeat1] = STATE(401), + [ts_builtin_sym_end] = ACTIONS(906), + [sym_identifier] = ACTIONS(908), + [anon_sym_COLON_COLON] = ACTIONS(906), + [anon_sym_import] = ACTIONS(908), + [anon_sym_hide] = ACTIONS(908), + [anon_sym_func] = ACTIONS(908), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_EQ] = ACTIONS(908), + [anon_sym_struct] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(906), + [anon_sym_RPAREN] = ACTIONS(906), + [anon_sym_LBRACE] = ACTIONS(906), + [anon_sym_COMMA] = ACTIONS(906), + [anon_sym_RBRACE] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(908), + [anon_sym_DOLLAR] = ACTIONS(906), + [anon_sym_PIPE] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(908), + [anon_sym_LBRACK] = ACTIONS(906), + [anon_sym_SEMI] = ACTIONS(906), + [anon_sym_RBRACK] = ACTIONS(906), + [anon_sym_void] = ACTIONS(908), + [anon_sym_anyopaque] = ACTIONS(908), + [anon_sym_bool] = ACTIONS(908), + [anon_sym_int] = ACTIONS(908), + [anon_sym_float] = ACTIONS(908), + [anon_sym_range] = ACTIONS(908), + [anon_sym_i8] = ACTIONS(908), + [anon_sym_i16] = ACTIONS(908), + [anon_sym_i32] = ACTIONS(908), + [anon_sym_i64] = ACTIONS(908), + [anon_sym_u8] = ACTIONS(908), + [anon_sym_u16] = ACTIONS(908), + [anon_sym_u32] = ACTIONS(908), + [anon_sym_u64] = ACTIONS(908), + [anon_sym_isize] = ACTIONS(908), + [anon_sym_usize] = ACTIONS(908), + [anon_sym_f32] = ACTIONS(908), + [anon_sym_f64] = ACTIONS(908), + [anon_sym_c_char] = ACTIONS(908), + [anon_sym_c_schar] = ACTIONS(908), + [anon_sym_c_uchar] = ACTIONS(908), + [anon_sym_c_short] = ACTIONS(908), + [anon_sym_c_ushort] = ACTIONS(908), + [anon_sym_c_int] = ACTIONS(908), + [anon_sym_c_uint] = ACTIONS(908), + [anon_sym_c_long] = ACTIONS(908), + [anon_sym_c_ulong] = ACTIONS(908), + [anon_sym_c_longlong] = ACTIONS(908), + [anon_sym_c_ulonglong] = ACTIONS(908), + [anon_sym_c_float] = ACTIONS(908), + [anon_sym_c_double] = ACTIONS(908), + [anon_sym_c_longdouble] = ACTIONS(908), + [anon_sym_PLUS_EQ] = ACTIONS(906), + [anon_sym_DASH_EQ] = ACTIONS(906), + [anon_sym_STAR_EQ] = ACTIONS(906), + [anon_sym_SLASH_EQ] = ACTIONS(906), + [anon_sym_return] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(908), + [anon_sym_COLON] = ACTIONS(908), + [anon_sym_break] = ACTIONS(908), + [anon_sym_continue] = ACTIONS(908), + [anon_sym_defer] = ACTIONS(908), + [anon_sym_errdefer] = ACTIONS(908), + [anon_sym_if] = ACTIONS(908), + [anon_sym_else] = ACTIONS(908), + [anon_sym_while] = ACTIONS(908), + [anon_sym_for] = ACTIONS(908), + [anon_sym_match] = ACTIONS(908), + [anon_sym_DOT_DOT] = ACTIONS(908), + [anon_sym_DOT_DOT_EQ] = ACTIONS(906), + [anon_sym_orelse] = ACTIONS(908), + [anon_sym_catch] = ACTIONS(908), + [anon_sym_or] = ACTIONS(908), + [anon_sym_and] = ACTIONS(908), + [anon_sym_EQ_EQ] = ACTIONS(906), + [anon_sym_BANG_EQ] = ACTIONS(906), + [anon_sym_LT] = ACTIONS(908), + [anon_sym_LT_EQ] = ACTIONS(906), + [anon_sym_GT] = ACTIONS(908), + [anon_sym_GT_EQ] = ACTIONS(906), + [anon_sym_PLUS] = ACTIONS(908), + [anon_sym_SLASH] = ACTIONS(908), + [anon_sym_AMP] = ACTIONS(906), + [anon_sym_try] = ACTIONS(908), + [anon_sym_DOT] = ACTIONS(908), + [anon_sym_CARET] = ACTIONS(906), + [anon_sym_true] = ACTIONS(908), + [anon_sym_false] = ACTIONS(908), + [sym_none] = ACTIONS(908), + [sym_undefined] = ACTIONS(908), + [sym_sink] = ACTIONS(908), + [sym_integer] = ACTIONS(908), + [sym_float] = ACTIONS(906), + [anon_sym_DQUOTE] = ACTIONS(906), + [sym_multiline_string] = ACTIONS(906), + [sym_character] = ACTIONS(906), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(917), + [sym__newline] = ACTIONS(906), }, [STATE(400)] = { - [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_type] = STATE(2108), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(844), + [anon_sym_COLON_COLON] = ACTIONS(878), + [anon_sym_func] = ACTIONS(849), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_struct] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(859), + [anon_sym_RBRACE] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_DOLLAR] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(867), + [anon_sym_void] = ACTIONS(870), + [anon_sym_anyopaque] = ACTIONS(870), + [anon_sym_bool] = ACTIONS(870), + [anon_sym_int] = ACTIONS(870), + [anon_sym_float] = ACTIONS(870), + [anon_sym_range] = ACTIONS(870), + [anon_sym_i8] = ACTIONS(870), + [anon_sym_i16] = ACTIONS(870), + [anon_sym_i32] = ACTIONS(870), + [anon_sym_i64] = ACTIONS(870), + [anon_sym_u8] = ACTIONS(870), + [anon_sym_u16] = ACTIONS(870), + [anon_sym_u32] = ACTIONS(870), + [anon_sym_u64] = ACTIONS(870), + [anon_sym_isize] = ACTIONS(870), + [anon_sym_usize] = ACTIONS(870), + [anon_sym_f32] = ACTIONS(870), + [anon_sym_f64] = ACTIONS(870), + [anon_sym_c_char] = ACTIONS(870), + [anon_sym_c_schar] = ACTIONS(870), + [anon_sym_c_uchar] = ACTIONS(870), + [anon_sym_c_short] = ACTIONS(870), + [anon_sym_c_ushort] = ACTIONS(870), + [anon_sym_c_int] = ACTIONS(870), + [anon_sym_c_uint] = ACTIONS(870), + [anon_sym_c_long] = ACTIONS(870), + [anon_sym_c_ulong] = ACTIONS(870), + [anon_sym_c_longlong] = ACTIONS(870), + [anon_sym_c_ulonglong] = ACTIONS(870), + [anon_sym_c_float] = ACTIONS(870), + [anon_sym_c_double] = ACTIONS(870), + [anon_sym_c_longdouble] = ACTIONS(870), + [anon_sym_PLUS_EQ] = ACTIONS(859), + [anon_sym_DASH_EQ] = ACTIONS(859), + [anon_sym_STAR_EQ] = ACTIONS(859), + [anon_sym_SLASH_EQ] = ACTIONS(859), + [anon_sym_return] = ACTIONS(854), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_break] = ACTIONS(854), + [anon_sym_continue] = ACTIONS(854), + [anon_sym_defer] = ACTIONS(854), + [anon_sym_errdefer] = ACTIONS(854), + [anon_sym_if] = ACTIONS(854), + [anon_sym_while] = ACTIONS(854), + [anon_sym_for] = ACTIONS(854), + [anon_sym_match] = ACTIONS(854), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(859), + [anon_sym_orelse] = ACTIONS(854), + [anon_sym_catch] = ACTIONS(854), + [anon_sym_or] = ACTIONS(854), + [anon_sym_and] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(854), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(854), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(859), + [anon_sym_try] = ACTIONS(854), + [anon_sym_DOT] = ACTIONS(854), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_true] = ACTIONS(854), + [anon_sym_false] = ACTIONS(854), + [sym_none] = ACTIONS(854), + [sym_undefined] = ACTIONS(854), + [sym_sink] = ACTIONS(854), + [sym_integer] = ACTIONS(854), + [sym_float] = ACTIONS(859), + [anon_sym_DQUOTE] = ACTIONS(859), + [sym_multiline_string] = ACTIONS(859), + [sym_character] = ACTIONS(859), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(921), + [sym__newline] = ACTIONS(859), }, [STATE(401)] = { - [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), + [aux_sym_type_repeat1] = STATE(396), + [ts_builtin_sym_end] = ACTIONS(923), + [sym_identifier] = ACTIONS(925), + [anon_sym_COLON_COLON] = ACTIONS(923), + [anon_sym_import] = ACTIONS(925), + [anon_sym_hide] = ACTIONS(925), + [anon_sym_func] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(925), + [anon_sym_EQ] = ACTIONS(925), + [anon_sym_struct] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(923), + [anon_sym_RPAREN] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(923), + [anon_sym_COMMA] = ACTIONS(923), + [anon_sym_RBRACE] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(925), + [anon_sym_DOLLAR] = ACTIONS(923), [anon_sym_PIPE] = ACTIONS(927), - [anon_sym_QMARK] = ACTIONS(31), - [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(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), + [anon_sym_QMARK] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(923), + [anon_sym_RBRACK] = ACTIONS(923), + [anon_sym_void] = ACTIONS(925), + [anon_sym_anyopaque] = ACTIONS(925), + [anon_sym_bool] = ACTIONS(925), + [anon_sym_int] = ACTIONS(925), + [anon_sym_float] = ACTIONS(925), + [anon_sym_range] = ACTIONS(925), + [anon_sym_i8] = ACTIONS(925), + [anon_sym_i16] = ACTIONS(925), + [anon_sym_i32] = ACTIONS(925), + [anon_sym_i64] = ACTIONS(925), + [anon_sym_u8] = ACTIONS(925), + [anon_sym_u16] = ACTIONS(925), + [anon_sym_u32] = ACTIONS(925), + [anon_sym_u64] = ACTIONS(925), + [anon_sym_isize] = ACTIONS(925), + [anon_sym_usize] = ACTIONS(925), + [anon_sym_f32] = ACTIONS(925), + [anon_sym_f64] = ACTIONS(925), + [anon_sym_c_char] = ACTIONS(925), + [anon_sym_c_schar] = ACTIONS(925), + [anon_sym_c_uchar] = ACTIONS(925), + [anon_sym_c_short] = ACTIONS(925), + [anon_sym_c_ushort] = ACTIONS(925), + [anon_sym_c_int] = ACTIONS(925), + [anon_sym_c_uint] = ACTIONS(925), + [anon_sym_c_long] = ACTIONS(925), + [anon_sym_c_ulong] = ACTIONS(925), + [anon_sym_c_longlong] = ACTIONS(925), + [anon_sym_c_ulonglong] = ACTIONS(925), + [anon_sym_c_float] = ACTIONS(925), + [anon_sym_c_double] = ACTIONS(925), + [anon_sym_c_longdouble] = ACTIONS(925), + [anon_sym_PLUS_EQ] = ACTIONS(923), + [anon_sym_DASH_EQ] = ACTIONS(923), + [anon_sym_STAR_EQ] = ACTIONS(923), + [anon_sym_SLASH_EQ] = ACTIONS(923), + [anon_sym_return] = ACTIONS(925), + [anon_sym_yield] = ACTIONS(925), + [anon_sym_COLON] = ACTIONS(925), + [anon_sym_break] = ACTIONS(925), + [anon_sym_continue] = ACTIONS(925), + [anon_sym_defer] = ACTIONS(925), + [anon_sym_errdefer] = ACTIONS(925), + [anon_sym_if] = ACTIONS(925), + [anon_sym_else] = ACTIONS(925), + [anon_sym_while] = ACTIONS(925), + [anon_sym_for] = ACTIONS(925), + [anon_sym_match] = ACTIONS(925), + [anon_sym_DOT_DOT] = ACTIONS(925), + [anon_sym_DOT_DOT_EQ] = ACTIONS(923), + [anon_sym_orelse] = ACTIONS(925), + [anon_sym_catch] = ACTIONS(925), + [anon_sym_or] = ACTIONS(925), + [anon_sym_and] = ACTIONS(925), + [anon_sym_EQ_EQ] = ACTIONS(923), + [anon_sym_BANG_EQ] = ACTIONS(923), + [anon_sym_LT] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(923), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_GT_EQ] = ACTIONS(923), + [anon_sym_PLUS] = ACTIONS(925), + [anon_sym_SLASH] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(923), + [anon_sym_try] = ACTIONS(925), + [anon_sym_DOT] = ACTIONS(925), + [anon_sym_CARET] = ACTIONS(923), + [anon_sym_true] = ACTIONS(925), + [anon_sym_false] = ACTIONS(925), + [sym_none] = ACTIONS(925), + [sym_undefined] = ACTIONS(925), + [sym_sink] = ACTIONS(925), + [sym_integer] = ACTIONS(925), + [sym_float] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(923), + [sym_multiline_string] = ACTIONS(923), + [sym_character] = ACTIONS(923), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(927), + [sym__newline] = ACTIONS(923), }, [STATE(402)] = { + [sym_argument_list] = STATE(457), + [ts_builtin_sym_end] = ACTIONS(929), + [sym_identifier] = ACTIONS(931), + [anon_sym_COLON_COLON] = ACTIONS(929), + [anon_sym_import] = ACTIONS(931), + [anon_sym_hide] = ACTIONS(931), + [anon_sym_func] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_EQ] = ACTIONS(931), + [anon_sym_struct] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_COMMA] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_PIPE] = ACTIONS(929), + [anon_sym_QMARK] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(929), + [anon_sym_RBRACK] = ACTIONS(929), + [anon_sym_void] = ACTIONS(931), + [anon_sym_anyopaque] = ACTIONS(931), + [anon_sym_bool] = ACTIONS(931), + [anon_sym_int] = ACTIONS(931), + [anon_sym_float] = ACTIONS(931), + [anon_sym_range] = ACTIONS(931), + [anon_sym_i8] = ACTIONS(931), + [anon_sym_i16] = ACTIONS(931), + [anon_sym_i32] = ACTIONS(931), + [anon_sym_i64] = ACTIONS(931), + [anon_sym_u8] = ACTIONS(931), + [anon_sym_u16] = ACTIONS(931), + [anon_sym_u32] = ACTIONS(931), + [anon_sym_u64] = ACTIONS(931), + [anon_sym_isize] = ACTIONS(931), + [anon_sym_usize] = ACTIONS(931), + [anon_sym_f32] = ACTIONS(931), + [anon_sym_f64] = ACTIONS(931), + [anon_sym_c_char] = ACTIONS(931), + [anon_sym_c_schar] = ACTIONS(931), + [anon_sym_c_uchar] = ACTIONS(931), + [anon_sym_c_short] = ACTIONS(931), + [anon_sym_c_ushort] = ACTIONS(931), + [anon_sym_c_int] = ACTIONS(931), + [anon_sym_c_uint] = ACTIONS(931), + [anon_sym_c_long] = ACTIONS(931), + [anon_sym_c_ulong] = ACTIONS(931), + [anon_sym_c_longlong] = ACTIONS(931), + [anon_sym_c_ulonglong] = ACTIONS(931), + [anon_sym_c_float] = ACTIONS(931), + [anon_sym_c_double] = ACTIONS(931), + [anon_sym_c_longdouble] = ACTIONS(931), + [anon_sym_PLUS_EQ] = ACTIONS(929), + [anon_sym_DASH_EQ] = ACTIONS(929), + [anon_sym_STAR_EQ] = ACTIONS(929), + [anon_sym_SLASH_EQ] = ACTIONS(929), + [anon_sym_return] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(931), + [anon_sym_COLON] = ACTIONS(931), + [anon_sym_break] = ACTIONS(931), + [anon_sym_continue] = ACTIONS(931), + [anon_sym_defer] = ACTIONS(931), + [anon_sym_errdefer] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_else] = ACTIONS(931), + [anon_sym_while] = ACTIONS(931), + [anon_sym_for] = ACTIONS(931), + [anon_sym_match] = ACTIONS(931), + [anon_sym_DOT_DOT] = ACTIONS(931), + [anon_sym_DOT_DOT_EQ] = ACTIONS(929), + [anon_sym_orelse] = ACTIONS(931), + [anon_sym_catch] = ACTIONS(931), + [anon_sym_or] = ACTIONS(931), + [anon_sym_and] = ACTIONS(931), + [anon_sym_EQ_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_LT_EQ] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_GT_EQ] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_SLASH] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(929), + [anon_sym_try] = ACTIONS(931), + [anon_sym_DOT] = ACTIONS(931), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym_true] = ACTIONS(931), + [anon_sym_false] = ACTIONS(931), + [sym_none] = ACTIONS(931), + [sym_undefined] = ACTIONS(931), + [sym_sink] = ACTIONS(931), + [sym_integer] = ACTIONS(931), + [sym_float] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(929), + [sym_multiline_string] = ACTIONS(929), + [sym_character] = ACTIONS(929), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(929), + }, + [STATE(403)] = { [ts_builtin_sym_end] = ACTIONS(935), [sym_identifier] = ACTIONS(937), [anon_sym_COLON_COLON] = ACTIONS(935), [anon_sym_import] = ACTIONS(937), + [anon_sym_hide] = ACTIONS(937), [anon_sym_func] = ACTIONS(937), [anon_sym_BANG] = ACTIONS(937), [anon_sym_EQ] = ACTIONS(937), @@ -52658,11 +52994,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(935), }, - [STATE(403)] = { + [STATE(404)] = { [ts_builtin_sym_end] = ACTIONS(939), [sym_identifier] = ACTIONS(941), [anon_sym_COLON_COLON] = ACTIONS(939), [anon_sym_import] = ACTIONS(941), + [anon_sym_hide] = ACTIONS(941), [anon_sym_func] = ACTIONS(941), [anon_sym_BANG] = ACTIONS(941), [anon_sym_EQ] = ACTIONS(941), @@ -52759,11 +53096,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(939), }, - [STATE(404)] = { + [STATE(405)] = { [ts_builtin_sym_end] = ACTIONS(943), [sym_identifier] = ACTIONS(945), [anon_sym_COLON_COLON] = ACTIONS(943), [anon_sym_import] = ACTIONS(945), + [anon_sym_hide] = ACTIONS(945), [anon_sym_func] = ACTIONS(945), [anon_sym_BANG] = ACTIONS(945), [anon_sym_EQ] = ACTIONS(945), @@ -52860,11 +53198,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(943), }, - [STATE(405)] = { + [STATE(406)] = { [ts_builtin_sym_end] = ACTIONS(947), [sym_identifier] = ACTIONS(949), [anon_sym_COLON_COLON] = ACTIONS(947), [anon_sym_import] = ACTIONS(949), + [anon_sym_hide] = ACTIONS(949), [anon_sym_func] = ACTIONS(949), [anon_sym_BANG] = ACTIONS(949), [anon_sym_EQ] = ACTIONS(949), @@ -52961,13 +53300,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(947), }, - [STATE(406)] = { + [STATE(407)] = { [ts_builtin_sym_end] = ACTIONS(951), [sym_identifier] = ACTIONS(953), [anon_sym_COLON_COLON] = ACTIONS(951), [anon_sym_import] = ACTIONS(953), + [anon_sym_hide] = ACTIONS(953), [anon_sym_func] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(955), + [anon_sym_BANG] = ACTIONS(953), [anon_sym_EQ] = ACTIONS(953), [anon_sym_struct] = ACTIONS(953), [anon_sym_LPAREN] = ACTIONS(951), @@ -53062,720 +53402,830 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(951), }, - [STATE(407)] = { - [ts_builtin_sym_end] = ACTIONS(957), - [sym_identifier] = ACTIONS(959), - [anon_sym_COLON_COLON] = ACTIONS(957), - [anon_sym_import] = ACTIONS(959), - [anon_sym_func] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_EQ] = ACTIONS(959), - [anon_sym_struct] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(957), - [anon_sym_RPAREN] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(957), - [anon_sym_COMMA] = ACTIONS(957), - [anon_sym_RBRACE] = ACTIONS(957), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_PIPE] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(957), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(957), - [anon_sym_SEMI] = ACTIONS(957), - [anon_sym_RBRACK] = ACTIONS(957), - [anon_sym_void] = ACTIONS(959), - [anon_sym_anyopaque] = ACTIONS(959), - [anon_sym_bool] = ACTIONS(959), - [anon_sym_int] = ACTIONS(959), - [anon_sym_float] = ACTIONS(959), - [anon_sym_range] = ACTIONS(959), - [anon_sym_i8] = ACTIONS(959), - [anon_sym_i16] = ACTIONS(959), - [anon_sym_i32] = ACTIONS(959), - [anon_sym_i64] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(959), - [anon_sym_u16] = ACTIONS(959), - [anon_sym_u32] = ACTIONS(959), - [anon_sym_u64] = ACTIONS(959), - [anon_sym_isize] = ACTIONS(959), - [anon_sym_usize] = ACTIONS(959), - [anon_sym_f32] = ACTIONS(959), - [anon_sym_f64] = ACTIONS(959), - [anon_sym_c_char] = ACTIONS(959), - [anon_sym_c_schar] = ACTIONS(959), - [anon_sym_c_uchar] = ACTIONS(959), - [anon_sym_c_short] = ACTIONS(959), - [anon_sym_c_ushort] = ACTIONS(959), - [anon_sym_c_int] = ACTIONS(959), - [anon_sym_c_uint] = ACTIONS(959), - [anon_sym_c_long] = ACTIONS(959), - [anon_sym_c_ulong] = ACTIONS(959), - [anon_sym_c_longlong] = ACTIONS(959), - [anon_sym_c_ulonglong] = ACTIONS(959), - [anon_sym_c_float] = ACTIONS(959), - [anon_sym_c_double] = ACTIONS(959), - [anon_sym_c_longdouble] = ACTIONS(959), - [anon_sym_PLUS_EQ] = ACTIONS(957), - [anon_sym_DASH_EQ] = ACTIONS(957), - [anon_sym_STAR_EQ] = ACTIONS(957), - [anon_sym_SLASH_EQ] = ACTIONS(957), - [anon_sym_return] = ACTIONS(959), - [anon_sym_yield] = ACTIONS(959), - [anon_sym_COLON] = ACTIONS(959), - [anon_sym_break] = ACTIONS(959), - [anon_sym_continue] = ACTIONS(959), - [anon_sym_defer] = ACTIONS(959), - [anon_sym_errdefer] = ACTIONS(959), - [anon_sym_if] = ACTIONS(959), - [anon_sym_else] = ACTIONS(959), - [anon_sym_while] = ACTIONS(959), - [anon_sym_for] = ACTIONS(959), - [anon_sym_match] = ACTIONS(959), - [anon_sym_DOT_DOT] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(957), - [anon_sym_orelse] = ACTIONS(959), - [anon_sym_catch] = ACTIONS(959), - [anon_sym_or] = ACTIONS(959), - [anon_sym_and] = ACTIONS(959), - [anon_sym_EQ_EQ] = ACTIONS(957), - [anon_sym_BANG_EQ] = ACTIONS(957), - [anon_sym_LT] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(957), - [anon_sym_GT] = ACTIONS(959), - [anon_sym_GT_EQ] = ACTIONS(957), - [anon_sym_PLUS] = ACTIONS(959), - [anon_sym_SLASH] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(957), - [anon_sym_try] = ACTIONS(959), - [anon_sym_DOT] = ACTIONS(959), - [anon_sym_CARET] = ACTIONS(957), - [anon_sym_true] = ACTIONS(959), - [anon_sym_false] = ACTIONS(959), - [sym_none] = ACTIONS(959), - [sym_undefined] = ACTIONS(959), - [sym_sink] = ACTIONS(959), - [sym_integer] = ACTIONS(959), - [sym_float] = ACTIONS(957), - [anon_sym_DQUOTE] = ACTIONS(957), - [sym_multiline_string] = ACTIONS(957), - [sym_character] = ACTIONS(957), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(957), - }, [STATE(408)] = { - [ts_builtin_sym_end] = ACTIONS(961), - [sym_identifier] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(961), - [anon_sym_import] = ACTIONS(963), - [anon_sym_func] = ACTIONS(963), - [anon_sym_BANG] = ACTIONS(963), - [anon_sym_EQ] = ACTIONS(963), - [anon_sym_struct] = ACTIONS(963), - [anon_sym_LPAREN] = ACTIONS(961), - [anon_sym_RPAREN] = ACTIONS(961), - [anon_sym_LBRACE] = ACTIONS(961), - [anon_sym_COMMA] = ACTIONS(961), - [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(963), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(961), - [anon_sym_QMARK] = ACTIONS(961), - [anon_sym_STAR] = ACTIONS(963), - [anon_sym_LBRACK] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_RBRACK] = ACTIONS(961), - [anon_sym_void] = ACTIONS(963), - [anon_sym_anyopaque] = ACTIONS(963), - [anon_sym_bool] = ACTIONS(963), - [anon_sym_int] = ACTIONS(963), - [anon_sym_float] = ACTIONS(963), - [anon_sym_range] = ACTIONS(963), - [anon_sym_i8] = ACTIONS(963), - [anon_sym_i16] = ACTIONS(963), - [anon_sym_i32] = ACTIONS(963), - [anon_sym_i64] = ACTIONS(963), - [anon_sym_u8] = ACTIONS(963), - [anon_sym_u16] = ACTIONS(963), - [anon_sym_u32] = ACTIONS(963), - [anon_sym_u64] = ACTIONS(963), - [anon_sym_isize] = ACTIONS(963), - [anon_sym_usize] = ACTIONS(963), - [anon_sym_f32] = ACTIONS(963), - [anon_sym_f64] = ACTIONS(963), - [anon_sym_c_char] = ACTIONS(963), - [anon_sym_c_schar] = ACTIONS(963), - [anon_sym_c_uchar] = ACTIONS(963), - [anon_sym_c_short] = ACTIONS(963), - [anon_sym_c_ushort] = ACTIONS(963), - [anon_sym_c_int] = ACTIONS(963), - [anon_sym_c_uint] = ACTIONS(963), - [anon_sym_c_long] = ACTIONS(963), - [anon_sym_c_ulong] = ACTIONS(963), - [anon_sym_c_longlong] = ACTIONS(963), - [anon_sym_c_ulonglong] = ACTIONS(963), - [anon_sym_c_float] = ACTIONS(963), - [anon_sym_c_double] = ACTIONS(963), - [anon_sym_c_longdouble] = ACTIONS(963), - [anon_sym_PLUS_EQ] = ACTIONS(961), - [anon_sym_DASH_EQ] = ACTIONS(961), - [anon_sym_STAR_EQ] = ACTIONS(961), - [anon_sym_SLASH_EQ] = ACTIONS(961), - [anon_sym_return] = ACTIONS(963), - [anon_sym_yield] = ACTIONS(963), - [anon_sym_COLON] = ACTIONS(963), - [anon_sym_break] = ACTIONS(963), - [anon_sym_continue] = ACTIONS(963), - [anon_sym_defer] = ACTIONS(963), - [anon_sym_errdefer] = ACTIONS(963), - [anon_sym_if] = ACTIONS(963), - [anon_sym_else] = ACTIONS(963), - [anon_sym_while] = ACTIONS(963), - [anon_sym_for] = ACTIONS(963), - [anon_sym_match] = ACTIONS(963), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_DOT_DOT_EQ] = ACTIONS(961), - [anon_sym_orelse] = ACTIONS(963), - [anon_sym_catch] = ACTIONS(963), - [anon_sym_or] = ACTIONS(963), - [anon_sym_and] = ACTIONS(963), - [anon_sym_EQ_EQ] = ACTIONS(961), - [anon_sym_BANG_EQ] = ACTIONS(961), - [anon_sym_LT] = ACTIONS(963), - [anon_sym_LT_EQ] = ACTIONS(961), - [anon_sym_GT] = ACTIONS(963), - [anon_sym_GT_EQ] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(963), - [anon_sym_SLASH] = ACTIONS(963), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_try] = ACTIONS(963), - [anon_sym_DOT] = ACTIONS(963), - [anon_sym_CARET] = ACTIONS(961), - [anon_sym_true] = ACTIONS(963), - [anon_sym_false] = ACTIONS(963), - [sym_none] = ACTIONS(963), - [sym_undefined] = ACTIONS(963), - [sym_sink] = ACTIONS(963), - [sym_integer] = ACTIONS(963), - [sym_float] = ACTIONS(961), - [anon_sym_DQUOTE] = ACTIONS(961), - [sym_multiline_string] = ACTIONS(961), - [sym_character] = ACTIONS(961), + [ts_builtin_sym_end] = ACTIONS(955), + [sym_identifier] = ACTIONS(957), + [anon_sym_COLON_COLON] = ACTIONS(955), + [anon_sym_import] = ACTIONS(957), + [anon_sym_hide] = ACTIONS(957), + [anon_sym_func] = ACTIONS(957), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_EQ] = ACTIONS(957), + [anon_sym_struct] = ACTIONS(957), + [anon_sym_LPAREN] = ACTIONS(955), + [anon_sym_RPAREN] = ACTIONS(955), + [anon_sym_LBRACE] = ACTIONS(955), + [anon_sym_COMMA] = ACTIONS(955), + [anon_sym_RBRACE] = ACTIONS(955), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_DOLLAR] = ACTIONS(955), + [anon_sym_PIPE] = ACTIONS(955), + [anon_sym_QMARK] = ACTIONS(955), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_LBRACK] = ACTIONS(955), + [anon_sym_SEMI] = ACTIONS(955), + [anon_sym_RBRACK] = ACTIONS(955), + [anon_sym_void] = ACTIONS(957), + [anon_sym_anyopaque] = ACTIONS(957), + [anon_sym_bool] = ACTIONS(957), + [anon_sym_int] = ACTIONS(957), + [anon_sym_float] = ACTIONS(957), + [anon_sym_range] = ACTIONS(957), + [anon_sym_i8] = ACTIONS(957), + [anon_sym_i16] = ACTIONS(957), + [anon_sym_i32] = ACTIONS(957), + [anon_sym_i64] = ACTIONS(957), + [anon_sym_u8] = ACTIONS(957), + [anon_sym_u16] = ACTIONS(957), + [anon_sym_u32] = ACTIONS(957), + [anon_sym_u64] = ACTIONS(957), + [anon_sym_isize] = ACTIONS(957), + [anon_sym_usize] = ACTIONS(957), + [anon_sym_f32] = ACTIONS(957), + [anon_sym_f64] = ACTIONS(957), + [anon_sym_c_char] = ACTIONS(957), + [anon_sym_c_schar] = ACTIONS(957), + [anon_sym_c_uchar] = ACTIONS(957), + [anon_sym_c_short] = ACTIONS(957), + [anon_sym_c_ushort] = ACTIONS(957), + [anon_sym_c_int] = ACTIONS(957), + [anon_sym_c_uint] = ACTIONS(957), + [anon_sym_c_long] = ACTIONS(957), + [anon_sym_c_ulong] = ACTIONS(957), + [anon_sym_c_longlong] = ACTIONS(957), + [anon_sym_c_ulonglong] = ACTIONS(957), + [anon_sym_c_float] = ACTIONS(957), + [anon_sym_c_double] = ACTIONS(957), + [anon_sym_c_longdouble] = ACTIONS(957), + [anon_sym_PLUS_EQ] = ACTIONS(955), + [anon_sym_DASH_EQ] = ACTIONS(955), + [anon_sym_STAR_EQ] = ACTIONS(955), + [anon_sym_SLASH_EQ] = ACTIONS(955), + [anon_sym_return] = ACTIONS(957), + [anon_sym_yield] = ACTIONS(957), + [anon_sym_COLON] = ACTIONS(957), + [anon_sym_break] = ACTIONS(957), + [anon_sym_continue] = ACTIONS(957), + [anon_sym_defer] = ACTIONS(957), + [anon_sym_errdefer] = ACTIONS(957), + [anon_sym_if] = ACTIONS(957), + [anon_sym_else] = ACTIONS(957), + [anon_sym_while] = ACTIONS(957), + [anon_sym_for] = ACTIONS(957), + [anon_sym_match] = ACTIONS(957), + [anon_sym_DOT_DOT] = ACTIONS(957), + [anon_sym_DOT_DOT_EQ] = ACTIONS(955), + [anon_sym_orelse] = ACTIONS(957), + [anon_sym_catch] = ACTIONS(957), + [anon_sym_or] = ACTIONS(957), + [anon_sym_and] = ACTIONS(957), + [anon_sym_EQ_EQ] = ACTIONS(955), + [anon_sym_BANG_EQ] = ACTIONS(955), + [anon_sym_LT] = ACTIONS(957), + [anon_sym_LT_EQ] = ACTIONS(955), + [anon_sym_GT] = ACTIONS(957), + [anon_sym_GT_EQ] = ACTIONS(955), + [anon_sym_PLUS] = ACTIONS(957), + [anon_sym_SLASH] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(955), + [anon_sym_try] = ACTIONS(957), + [anon_sym_DOT] = ACTIONS(957), + [anon_sym_CARET] = ACTIONS(955), + [anon_sym_true] = ACTIONS(957), + [anon_sym_false] = ACTIONS(957), + [sym_none] = ACTIONS(957), + [sym_undefined] = ACTIONS(957), + [sym_sink] = ACTIONS(957), + [sym_integer] = ACTIONS(957), + [sym_float] = ACTIONS(955), + [anon_sym_DQUOTE] = ACTIONS(955), + [sym_multiline_string] = ACTIONS(955), + [sym_character] = ACTIONS(955), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(961), + [sym__newline] = ACTIONS(955), }, [STATE(409)] = { - [ts_builtin_sym_end] = ACTIONS(965), - [sym_identifier] = ACTIONS(967), - [anon_sym_COLON_COLON] = ACTIONS(965), - [anon_sym_import] = ACTIONS(967), - [anon_sym_func] = ACTIONS(967), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_EQ] = ACTIONS(967), - [anon_sym_struct] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(965), - [anon_sym_RPAREN] = ACTIONS(965), - [anon_sym_LBRACE] = ACTIONS(965), - [anon_sym_COMMA] = ACTIONS(965), - [anon_sym_RBRACE] = ACTIONS(965), - [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_SEMI] = ACTIONS(965), - [anon_sym_RBRACK] = 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(965), - [anon_sym_DASH_EQ] = ACTIONS(965), - [anon_sym_STAR_EQ] = ACTIONS(965), - [anon_sym_SLASH_EQ] = ACTIONS(965), - [anon_sym_return] = ACTIONS(967), - [anon_sym_yield] = ACTIONS(967), - [anon_sym_COLON] = 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(967), - [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), + [ts_builtin_sym_end] = ACTIONS(959), + [sym_identifier] = ACTIONS(961), + [anon_sym_COLON_COLON] = ACTIONS(959), + [anon_sym_import] = ACTIONS(961), + [anon_sym_hide] = ACTIONS(961), + [anon_sym_func] = ACTIONS(961), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_struct] = ACTIONS(961), + [anon_sym_LPAREN] = ACTIONS(959), + [anon_sym_RPAREN] = ACTIONS(959), + [anon_sym_LBRACE] = ACTIONS(959), + [anon_sym_COMMA] = ACTIONS(959), + [anon_sym_RBRACE] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(959), + [anon_sym_QMARK] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(959), + [anon_sym_RBRACK] = ACTIONS(959), + [anon_sym_void] = ACTIONS(961), + [anon_sym_anyopaque] = ACTIONS(961), + [anon_sym_bool] = ACTIONS(961), + [anon_sym_int] = ACTIONS(961), + [anon_sym_float] = ACTIONS(961), + [anon_sym_range] = ACTIONS(961), + [anon_sym_i8] = ACTIONS(961), + [anon_sym_i16] = ACTIONS(961), + [anon_sym_i32] = ACTIONS(961), + [anon_sym_i64] = ACTIONS(961), + [anon_sym_u8] = ACTIONS(961), + [anon_sym_u16] = ACTIONS(961), + [anon_sym_u32] = ACTIONS(961), + [anon_sym_u64] = ACTIONS(961), + [anon_sym_isize] = ACTIONS(961), + [anon_sym_usize] = ACTIONS(961), + [anon_sym_f32] = ACTIONS(961), + [anon_sym_f64] = ACTIONS(961), + [anon_sym_c_char] = ACTIONS(961), + [anon_sym_c_schar] = ACTIONS(961), + [anon_sym_c_uchar] = ACTIONS(961), + [anon_sym_c_short] = ACTIONS(961), + [anon_sym_c_ushort] = ACTIONS(961), + [anon_sym_c_int] = ACTIONS(961), + [anon_sym_c_uint] = ACTIONS(961), + [anon_sym_c_long] = ACTIONS(961), + [anon_sym_c_ulong] = ACTIONS(961), + [anon_sym_c_longlong] = ACTIONS(961), + [anon_sym_c_ulonglong] = ACTIONS(961), + [anon_sym_c_float] = ACTIONS(961), + [anon_sym_c_double] = ACTIONS(961), + [anon_sym_c_longdouble] = ACTIONS(961), + [anon_sym_PLUS_EQ] = ACTIONS(959), + [anon_sym_DASH_EQ] = ACTIONS(959), + [anon_sym_STAR_EQ] = ACTIONS(959), + [anon_sym_SLASH_EQ] = ACTIONS(959), + [anon_sym_return] = ACTIONS(961), + [anon_sym_yield] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_break] = ACTIONS(961), + [anon_sym_continue] = ACTIONS(961), + [anon_sym_defer] = ACTIONS(961), + [anon_sym_errdefer] = ACTIONS(961), + [anon_sym_if] = ACTIONS(961), + [anon_sym_else] = ACTIONS(961), + [anon_sym_while] = ACTIONS(961), + [anon_sym_for] = ACTIONS(961), + [anon_sym_match] = ACTIONS(961), + [anon_sym_DOT_DOT] = ACTIONS(961), + [anon_sym_DOT_DOT_EQ] = ACTIONS(959), + [anon_sym_orelse] = ACTIONS(961), + [anon_sym_catch] = ACTIONS(961), + [anon_sym_or] = ACTIONS(961), + [anon_sym_and] = ACTIONS(961), + [anon_sym_EQ_EQ] = ACTIONS(959), + [anon_sym_BANG_EQ] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(959), + [anon_sym_GT] = ACTIONS(961), + [anon_sym_GT_EQ] = ACTIONS(959), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_try] = ACTIONS(961), + [anon_sym_DOT] = ACTIONS(961), + [anon_sym_CARET] = ACTIONS(959), + [anon_sym_true] = ACTIONS(961), + [anon_sym_false] = ACTIONS(961), + [sym_none] = ACTIONS(961), + [sym_undefined] = ACTIONS(961), + [sym_sink] = ACTIONS(961), + [sym_integer] = ACTIONS(961), + [sym_float] = ACTIONS(959), + [anon_sym_DQUOTE] = ACTIONS(959), + [sym_multiline_string] = ACTIONS(959), + [sym_character] = ACTIONS(959), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(965), + [sym__newline] = ACTIONS(959), }, [STATE(410)] = { - [ts_builtin_sym_end] = ACTIONS(969), - [sym_identifier] = ACTIONS(971), - [anon_sym_COLON_COLON] = ACTIONS(969), - [anon_sym_import] = ACTIONS(971), - [anon_sym_func] = ACTIONS(971), - [anon_sym_BANG] = ACTIONS(971), - [anon_sym_EQ] = ACTIONS(971), - [anon_sym_struct] = ACTIONS(971), - [anon_sym_LPAREN] = ACTIONS(969), - [anon_sym_RPAREN] = ACTIONS(969), - [anon_sym_LBRACE] = ACTIONS(969), - [anon_sym_COMMA] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(971), - [anon_sym_DOLLAR] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_QMARK] = ACTIONS(969), - [anon_sym_STAR] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_RBRACK] = ACTIONS(969), - [anon_sym_void] = ACTIONS(971), - [anon_sym_anyopaque] = ACTIONS(971), - [anon_sym_bool] = ACTIONS(971), - [anon_sym_int] = ACTIONS(971), - [anon_sym_float] = ACTIONS(971), - [anon_sym_range] = ACTIONS(971), - [anon_sym_i8] = ACTIONS(971), - [anon_sym_i16] = ACTIONS(971), - [anon_sym_i32] = ACTIONS(971), - [anon_sym_i64] = ACTIONS(971), - [anon_sym_u8] = ACTIONS(971), - [anon_sym_u16] = ACTIONS(971), - [anon_sym_u32] = ACTIONS(971), - [anon_sym_u64] = ACTIONS(971), - [anon_sym_isize] = ACTIONS(971), - [anon_sym_usize] = ACTIONS(971), - [anon_sym_f32] = ACTIONS(971), - [anon_sym_f64] = ACTIONS(971), - [anon_sym_c_char] = ACTIONS(971), - [anon_sym_c_schar] = ACTIONS(971), - [anon_sym_c_uchar] = ACTIONS(971), - [anon_sym_c_short] = ACTIONS(971), - [anon_sym_c_ushort] = ACTIONS(971), - [anon_sym_c_int] = ACTIONS(971), - [anon_sym_c_uint] = ACTIONS(971), - [anon_sym_c_long] = ACTIONS(971), - [anon_sym_c_ulong] = ACTIONS(971), - [anon_sym_c_longlong] = ACTIONS(971), - [anon_sym_c_ulonglong] = ACTIONS(971), - [anon_sym_c_float] = ACTIONS(971), - [anon_sym_c_double] = ACTIONS(971), - [anon_sym_c_longdouble] = ACTIONS(971), - [anon_sym_PLUS_EQ] = ACTIONS(969), - [anon_sym_DASH_EQ] = ACTIONS(969), - [anon_sym_STAR_EQ] = ACTIONS(969), - [anon_sym_SLASH_EQ] = ACTIONS(969), - [anon_sym_return] = ACTIONS(971), - [anon_sym_yield] = ACTIONS(971), - [anon_sym_COLON] = ACTIONS(971), - [anon_sym_break] = ACTIONS(971), - [anon_sym_continue] = ACTIONS(971), - [anon_sym_defer] = ACTIONS(971), - [anon_sym_errdefer] = ACTIONS(971), - [anon_sym_if] = ACTIONS(971), - [anon_sym_else] = ACTIONS(971), - [anon_sym_while] = ACTIONS(971), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(971), - [anon_sym_DOT_DOT] = ACTIONS(971), - [anon_sym_DOT_DOT_EQ] = ACTIONS(969), - [anon_sym_orelse] = ACTIONS(971), - [anon_sym_catch] = ACTIONS(971), - [anon_sym_or] = ACTIONS(971), - [anon_sym_and] = ACTIONS(971), - [anon_sym_EQ_EQ] = ACTIONS(969), - [anon_sym_BANG_EQ] = ACTIONS(969), - [anon_sym_LT] = ACTIONS(971), - [anon_sym_LT_EQ] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(971), - [anon_sym_GT_EQ] = ACTIONS(969), - [anon_sym_PLUS] = ACTIONS(971), - [anon_sym_SLASH] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(969), - [anon_sym_try] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(971), - [anon_sym_CARET] = ACTIONS(969), - [anon_sym_true] = ACTIONS(971), - [anon_sym_false] = ACTIONS(971), - [sym_none] = ACTIONS(971), - [sym_undefined] = ACTIONS(971), - [sym_sink] = ACTIONS(971), - [sym_integer] = ACTIONS(971), - [sym_float] = ACTIONS(969), - [anon_sym_DQUOTE] = ACTIONS(969), - [sym_multiline_string] = ACTIONS(969), - [sym_character] = ACTIONS(969), + [ts_builtin_sym_end] = ACTIONS(963), + [sym_identifier] = ACTIONS(965), + [anon_sym_COLON_COLON] = ACTIONS(963), + [anon_sym_import] = ACTIONS(965), + [anon_sym_hide] = ACTIONS(965), + [anon_sym_func] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_struct] = ACTIONS(965), + [anon_sym_LPAREN] = ACTIONS(963), + [anon_sym_RPAREN] = ACTIONS(963), + [anon_sym_LBRACE] = ACTIONS(963), + [anon_sym_COMMA] = ACTIONS(963), + [anon_sym_RBRACE] = ACTIONS(963), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_QMARK] = ACTIONS(963), + [anon_sym_STAR] = ACTIONS(965), + [anon_sym_LBRACK] = ACTIONS(963), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_RBRACK] = ACTIONS(963), + [anon_sym_void] = ACTIONS(965), + [anon_sym_anyopaque] = ACTIONS(965), + [anon_sym_bool] = ACTIONS(965), + [anon_sym_int] = ACTIONS(965), + [anon_sym_float] = ACTIONS(965), + [anon_sym_range] = ACTIONS(965), + [anon_sym_i8] = ACTIONS(965), + [anon_sym_i16] = ACTIONS(965), + [anon_sym_i32] = ACTIONS(965), + [anon_sym_i64] = ACTIONS(965), + [anon_sym_u8] = ACTIONS(965), + [anon_sym_u16] = ACTIONS(965), + [anon_sym_u32] = ACTIONS(965), + [anon_sym_u64] = ACTIONS(965), + [anon_sym_isize] = ACTIONS(965), + [anon_sym_usize] = ACTIONS(965), + [anon_sym_f32] = ACTIONS(965), + [anon_sym_f64] = ACTIONS(965), + [anon_sym_c_char] = ACTIONS(965), + [anon_sym_c_schar] = ACTIONS(965), + [anon_sym_c_uchar] = ACTIONS(965), + [anon_sym_c_short] = ACTIONS(965), + [anon_sym_c_ushort] = ACTIONS(965), + [anon_sym_c_int] = ACTIONS(965), + [anon_sym_c_uint] = ACTIONS(965), + [anon_sym_c_long] = ACTIONS(965), + [anon_sym_c_ulong] = ACTIONS(965), + [anon_sym_c_longlong] = ACTIONS(965), + [anon_sym_c_ulonglong] = ACTIONS(965), + [anon_sym_c_float] = ACTIONS(965), + [anon_sym_c_double] = ACTIONS(965), + [anon_sym_c_longdouble] = ACTIONS(965), + [anon_sym_PLUS_EQ] = ACTIONS(963), + [anon_sym_DASH_EQ] = ACTIONS(963), + [anon_sym_STAR_EQ] = ACTIONS(963), + [anon_sym_SLASH_EQ] = ACTIONS(963), + [anon_sym_return] = ACTIONS(965), + [anon_sym_yield] = ACTIONS(965), + [anon_sym_COLON] = ACTIONS(965), + [anon_sym_break] = ACTIONS(965), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_defer] = ACTIONS(965), + [anon_sym_errdefer] = ACTIONS(965), + [anon_sym_if] = ACTIONS(965), + [anon_sym_else] = ACTIONS(965), + [anon_sym_while] = ACTIONS(965), + [anon_sym_for] = ACTIONS(965), + [anon_sym_match] = ACTIONS(965), + [anon_sym_DOT_DOT] = ACTIONS(965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(963), + [anon_sym_orelse] = ACTIONS(965), + [anon_sym_catch] = ACTIONS(965), + [anon_sym_or] = ACTIONS(965), + [anon_sym_and] = ACTIONS(965), + [anon_sym_EQ_EQ] = ACTIONS(963), + [anon_sym_BANG_EQ] = ACTIONS(963), + [anon_sym_LT] = ACTIONS(965), + [anon_sym_LT_EQ] = ACTIONS(963), + [anon_sym_GT] = ACTIONS(965), + [anon_sym_GT_EQ] = ACTIONS(963), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_try] = ACTIONS(965), + [anon_sym_DOT] = ACTIONS(965), + [anon_sym_CARET] = ACTIONS(963), + [anon_sym_true] = ACTIONS(965), + [anon_sym_false] = ACTIONS(965), + [sym_none] = ACTIONS(965), + [sym_undefined] = ACTIONS(965), + [sym_sink] = ACTIONS(965), + [sym_integer] = ACTIONS(965), + [sym_float] = ACTIONS(963), + [anon_sym_DQUOTE] = ACTIONS(963), + [sym_multiline_string] = ACTIONS(963), + [sym_character] = ACTIONS(963), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(969), + [sym__newline] = ACTIONS(963), }, [STATE(411)] = { - [ts_builtin_sym_end] = ACTIONS(973), - [sym_identifier] = ACTIONS(975), - [anon_sym_COLON_COLON] = ACTIONS(973), - [anon_sym_import] = ACTIONS(975), - [anon_sym_func] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(975), - [anon_sym_struct] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(973), - [anon_sym_RPAREN] = ACTIONS(973), - [anon_sym_LBRACE] = ACTIONS(973), - [anon_sym_COMMA] = ACTIONS(973), - [anon_sym_RBRACE] = ACTIONS(973), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_DOLLAR] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(973), - [anon_sym_QMARK] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_RBRACK] = ACTIONS(973), - [anon_sym_void] = ACTIONS(975), - [anon_sym_anyopaque] = ACTIONS(975), - [anon_sym_bool] = ACTIONS(975), - [anon_sym_int] = ACTIONS(975), - [anon_sym_float] = ACTIONS(975), - [anon_sym_range] = ACTIONS(975), - [anon_sym_i8] = ACTIONS(975), - [anon_sym_i16] = ACTIONS(975), - [anon_sym_i32] = ACTIONS(975), - [anon_sym_i64] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(975), - [anon_sym_u16] = ACTIONS(975), - [anon_sym_u32] = ACTIONS(975), - [anon_sym_u64] = ACTIONS(975), - [anon_sym_isize] = ACTIONS(975), - [anon_sym_usize] = ACTIONS(975), - [anon_sym_f32] = ACTIONS(975), - [anon_sym_f64] = ACTIONS(975), - [anon_sym_c_char] = ACTIONS(975), - [anon_sym_c_schar] = ACTIONS(975), - [anon_sym_c_uchar] = ACTIONS(975), - [anon_sym_c_short] = ACTIONS(975), - [anon_sym_c_ushort] = ACTIONS(975), - [anon_sym_c_int] = ACTIONS(975), - [anon_sym_c_uint] = ACTIONS(975), - [anon_sym_c_long] = ACTIONS(975), - [anon_sym_c_ulong] = ACTIONS(975), - [anon_sym_c_longlong] = ACTIONS(975), - [anon_sym_c_ulonglong] = ACTIONS(975), - [anon_sym_c_float] = ACTIONS(975), - [anon_sym_c_double] = ACTIONS(975), - [anon_sym_c_longdouble] = ACTIONS(975), - [anon_sym_PLUS_EQ] = ACTIONS(973), - [anon_sym_DASH_EQ] = ACTIONS(973), - [anon_sym_STAR_EQ] = ACTIONS(973), - [anon_sym_SLASH_EQ] = ACTIONS(973), - [anon_sym_return] = ACTIONS(975), - [anon_sym_yield] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(975), - [anon_sym_break] = ACTIONS(975), - [anon_sym_continue] = ACTIONS(975), - [anon_sym_defer] = ACTIONS(975), - [anon_sym_errdefer] = ACTIONS(975), - [anon_sym_if] = ACTIONS(975), - [anon_sym_else] = ACTIONS(975), - [anon_sym_while] = ACTIONS(975), - [anon_sym_for] = ACTIONS(975), - [anon_sym_match] = ACTIONS(975), - [anon_sym_DOT_DOT] = ACTIONS(975), - [anon_sym_DOT_DOT_EQ] = ACTIONS(973), - [anon_sym_orelse] = ACTIONS(975), - [anon_sym_catch] = ACTIONS(975), - [anon_sym_or] = ACTIONS(975), - [anon_sym_and] = ACTIONS(975), - [anon_sym_EQ_EQ] = ACTIONS(973), - [anon_sym_BANG_EQ] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(973), - [anon_sym_GT] = ACTIONS(975), - [anon_sym_GT_EQ] = ACTIONS(973), - [anon_sym_PLUS] = ACTIONS(975), - [anon_sym_SLASH] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_try] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(975), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym_true] = ACTIONS(975), - [anon_sym_false] = ACTIONS(975), - [sym_none] = ACTIONS(975), - [sym_undefined] = ACTIONS(975), - [sym_sink] = ACTIONS(975), - [sym_integer] = ACTIONS(975), - [sym_float] = ACTIONS(973), - [anon_sym_DQUOTE] = ACTIONS(973), - [sym_multiline_string] = ACTIONS(973), - [sym_character] = ACTIONS(973), + [ts_builtin_sym_end] = ACTIONS(967), + [sym_identifier] = ACTIONS(969), + [anon_sym_COLON_COLON] = ACTIONS(967), + [anon_sym_import] = ACTIONS(969), + [anon_sym_hide] = ACTIONS(969), + [anon_sym_func] = ACTIONS(969), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_EQ] = ACTIONS(969), + [anon_sym_struct] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_RPAREN] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(967), + [anon_sym_COMMA] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_QMARK] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(967), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_RBRACK] = ACTIONS(967), + [anon_sym_void] = ACTIONS(969), + [anon_sym_anyopaque] = ACTIONS(969), + [anon_sym_bool] = ACTIONS(969), + [anon_sym_int] = ACTIONS(969), + [anon_sym_float] = ACTIONS(969), + [anon_sym_range] = ACTIONS(969), + [anon_sym_i8] = ACTIONS(969), + [anon_sym_i16] = ACTIONS(969), + [anon_sym_i32] = ACTIONS(969), + [anon_sym_i64] = ACTIONS(969), + [anon_sym_u8] = ACTIONS(969), + [anon_sym_u16] = ACTIONS(969), + [anon_sym_u32] = ACTIONS(969), + [anon_sym_u64] = ACTIONS(969), + [anon_sym_isize] = ACTIONS(969), + [anon_sym_usize] = ACTIONS(969), + [anon_sym_f32] = ACTIONS(969), + [anon_sym_f64] = ACTIONS(969), + [anon_sym_c_char] = ACTIONS(969), + [anon_sym_c_schar] = ACTIONS(969), + [anon_sym_c_uchar] = ACTIONS(969), + [anon_sym_c_short] = ACTIONS(969), + [anon_sym_c_ushort] = ACTIONS(969), + [anon_sym_c_int] = ACTIONS(969), + [anon_sym_c_uint] = ACTIONS(969), + [anon_sym_c_long] = ACTIONS(969), + [anon_sym_c_ulong] = ACTIONS(969), + [anon_sym_c_longlong] = ACTIONS(969), + [anon_sym_c_ulonglong] = ACTIONS(969), + [anon_sym_c_float] = ACTIONS(969), + [anon_sym_c_double] = ACTIONS(969), + [anon_sym_c_longdouble] = ACTIONS(969), + [anon_sym_PLUS_EQ] = ACTIONS(967), + [anon_sym_DASH_EQ] = ACTIONS(967), + [anon_sym_STAR_EQ] = ACTIONS(967), + [anon_sym_SLASH_EQ] = ACTIONS(967), + [anon_sym_return] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(969), + [anon_sym_COLON] = ACTIONS(969), + [anon_sym_break] = ACTIONS(969), + [anon_sym_continue] = ACTIONS(969), + [anon_sym_defer] = ACTIONS(969), + [anon_sym_errdefer] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_else] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [anon_sym_for] = ACTIONS(969), + [anon_sym_match] = ACTIONS(969), + [anon_sym_DOT_DOT] = ACTIONS(969), + [anon_sym_DOT_DOT_EQ] = ACTIONS(967), + [anon_sym_orelse] = ACTIONS(969), + [anon_sym_catch] = ACTIONS(969), + [anon_sym_or] = ACTIONS(969), + [anon_sym_and] = ACTIONS(969), + [anon_sym_EQ_EQ] = ACTIONS(967), + [anon_sym_BANG_EQ] = ACTIONS(967), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_LT_EQ] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(969), + [anon_sym_GT_EQ] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_SLASH] = ACTIONS(969), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_try] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(969), + [anon_sym_CARET] = ACTIONS(967), + [anon_sym_true] = ACTIONS(969), + [anon_sym_false] = ACTIONS(969), + [sym_none] = ACTIONS(969), + [sym_undefined] = ACTIONS(969), + [sym_sink] = ACTIONS(969), + [sym_integer] = ACTIONS(969), + [sym_float] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(967), + [sym_multiline_string] = ACTIONS(967), + [sym_character] = ACTIONS(967), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(973), + [sym__newline] = ACTIONS(967), }, [STATE(412)] = { - [ts_builtin_sym_end] = ACTIONS(977), - [sym_identifier] = ACTIONS(979), - [anon_sym_COLON_COLON] = ACTIONS(977), - [anon_sym_import] = ACTIONS(979), - [anon_sym_func] = ACTIONS(979), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_EQ] = ACTIONS(979), - [anon_sym_struct] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(977), - [anon_sym_RPAREN] = ACTIONS(977), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_COMMA] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(979), - [anon_sym_DOLLAR] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(977), - [anon_sym_QMARK] = ACTIONS(977), - [anon_sym_STAR] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_RBRACK] = ACTIONS(977), - [anon_sym_void] = ACTIONS(979), - [anon_sym_anyopaque] = ACTIONS(979), - [anon_sym_bool] = ACTIONS(979), - [anon_sym_int] = ACTIONS(979), - [anon_sym_float] = ACTIONS(979), - [anon_sym_range] = ACTIONS(979), - [anon_sym_i8] = ACTIONS(979), - [anon_sym_i16] = ACTIONS(979), - [anon_sym_i32] = ACTIONS(979), - [anon_sym_i64] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(979), - [anon_sym_u16] = ACTIONS(979), - [anon_sym_u32] = ACTIONS(979), - [anon_sym_u64] = ACTIONS(979), - [anon_sym_isize] = ACTIONS(979), - [anon_sym_usize] = ACTIONS(979), - [anon_sym_f32] = ACTIONS(979), - [anon_sym_f64] = ACTIONS(979), - [anon_sym_c_char] = ACTIONS(979), - [anon_sym_c_schar] = ACTIONS(979), - [anon_sym_c_uchar] = ACTIONS(979), - [anon_sym_c_short] = ACTIONS(979), - [anon_sym_c_ushort] = ACTIONS(979), - [anon_sym_c_int] = ACTIONS(979), - [anon_sym_c_uint] = ACTIONS(979), - [anon_sym_c_long] = ACTIONS(979), - [anon_sym_c_ulong] = ACTIONS(979), - [anon_sym_c_longlong] = ACTIONS(979), - [anon_sym_c_ulonglong] = ACTIONS(979), - [anon_sym_c_float] = ACTIONS(979), - [anon_sym_c_double] = ACTIONS(979), - [anon_sym_c_longdouble] = ACTIONS(979), - [anon_sym_PLUS_EQ] = ACTIONS(977), - [anon_sym_DASH_EQ] = ACTIONS(977), - [anon_sym_STAR_EQ] = ACTIONS(977), - [anon_sym_SLASH_EQ] = ACTIONS(977), - [anon_sym_return] = ACTIONS(979), - [anon_sym_yield] = ACTIONS(979), - [anon_sym_COLON] = ACTIONS(979), - [anon_sym_break] = ACTIONS(979), - [anon_sym_continue] = ACTIONS(979), - [anon_sym_defer] = ACTIONS(979), - [anon_sym_errdefer] = ACTIONS(979), - [anon_sym_if] = ACTIONS(979), - [anon_sym_else] = ACTIONS(979), - [anon_sym_while] = ACTIONS(979), - [anon_sym_for] = ACTIONS(979), - [anon_sym_match] = ACTIONS(979), - [anon_sym_DOT_DOT] = ACTIONS(979), - [anon_sym_DOT_DOT_EQ] = ACTIONS(977), - [anon_sym_orelse] = ACTIONS(979), - [anon_sym_catch] = ACTIONS(979), - [anon_sym_or] = ACTIONS(979), - [anon_sym_and] = ACTIONS(979), - [anon_sym_EQ_EQ] = ACTIONS(977), - [anon_sym_BANG_EQ] = ACTIONS(977), - [anon_sym_LT] = ACTIONS(979), - [anon_sym_LT_EQ] = ACTIONS(977), - [anon_sym_GT] = ACTIONS(979), - [anon_sym_GT_EQ] = ACTIONS(977), - [anon_sym_PLUS] = ACTIONS(979), - [anon_sym_SLASH] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(977), - [anon_sym_try] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(977), - [anon_sym_true] = ACTIONS(979), - [anon_sym_false] = ACTIONS(979), - [sym_none] = ACTIONS(979), - [sym_undefined] = ACTIONS(979), - [sym_sink] = ACTIONS(979), - [sym_integer] = ACTIONS(979), - [sym_float] = ACTIONS(977), - [anon_sym_DQUOTE] = ACTIONS(977), - [sym_multiline_string] = ACTIONS(977), - [sym_character] = ACTIONS(977), + [ts_builtin_sym_end] = ACTIONS(971), + [sym_identifier] = ACTIONS(973), + [anon_sym_COLON_COLON] = ACTIONS(971), + [anon_sym_import] = ACTIONS(973), + [anon_sym_hide] = ACTIONS(973), + [anon_sym_func] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_EQ] = ACTIONS(973), + [anon_sym_struct] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(971), + [anon_sym_RPAREN] = ACTIONS(971), + [anon_sym_LBRACE] = ACTIONS(971), + [anon_sym_COMMA] = ACTIONS(971), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_QMARK] = ACTIONS(971), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(971), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_RBRACK] = ACTIONS(971), + [anon_sym_void] = ACTIONS(973), + [anon_sym_anyopaque] = ACTIONS(973), + [anon_sym_bool] = ACTIONS(973), + [anon_sym_int] = ACTIONS(973), + [anon_sym_float] = ACTIONS(973), + [anon_sym_range] = ACTIONS(973), + [anon_sym_i8] = ACTIONS(973), + [anon_sym_i16] = ACTIONS(973), + [anon_sym_i32] = ACTIONS(973), + [anon_sym_i64] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(973), + [anon_sym_u16] = ACTIONS(973), + [anon_sym_u32] = ACTIONS(973), + [anon_sym_u64] = ACTIONS(973), + [anon_sym_isize] = ACTIONS(973), + [anon_sym_usize] = ACTIONS(973), + [anon_sym_f32] = ACTIONS(973), + [anon_sym_f64] = ACTIONS(973), + [anon_sym_c_char] = ACTIONS(973), + [anon_sym_c_schar] = ACTIONS(973), + [anon_sym_c_uchar] = ACTIONS(973), + [anon_sym_c_short] = ACTIONS(973), + [anon_sym_c_ushort] = ACTIONS(973), + [anon_sym_c_int] = ACTIONS(973), + [anon_sym_c_uint] = ACTIONS(973), + [anon_sym_c_long] = ACTIONS(973), + [anon_sym_c_ulong] = ACTIONS(973), + [anon_sym_c_longlong] = ACTIONS(973), + [anon_sym_c_ulonglong] = ACTIONS(973), + [anon_sym_c_float] = ACTIONS(973), + [anon_sym_c_double] = ACTIONS(973), + [anon_sym_c_longdouble] = ACTIONS(973), + [anon_sym_PLUS_EQ] = ACTIONS(971), + [anon_sym_DASH_EQ] = ACTIONS(971), + [anon_sym_STAR_EQ] = ACTIONS(971), + [anon_sym_SLASH_EQ] = ACTIONS(971), + [anon_sym_return] = ACTIONS(973), + [anon_sym_yield] = ACTIONS(973), + [anon_sym_COLON] = ACTIONS(973), + [anon_sym_break] = ACTIONS(973), + [anon_sym_continue] = ACTIONS(973), + [anon_sym_defer] = ACTIONS(973), + [anon_sym_errdefer] = ACTIONS(973), + [anon_sym_if] = ACTIONS(973), + [anon_sym_else] = ACTIONS(973), + [anon_sym_while] = ACTIONS(973), + [anon_sym_for] = ACTIONS(973), + [anon_sym_match] = ACTIONS(973), + [anon_sym_DOT_DOT] = ACTIONS(973), + [anon_sym_DOT_DOT_EQ] = ACTIONS(971), + [anon_sym_orelse] = ACTIONS(973), + [anon_sym_catch] = ACTIONS(973), + [anon_sym_or] = ACTIONS(973), + [anon_sym_and] = ACTIONS(973), + [anon_sym_EQ_EQ] = ACTIONS(971), + [anon_sym_BANG_EQ] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(973), + [anon_sym_LT_EQ] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(973), + [anon_sym_GT_EQ] = ACTIONS(971), + [anon_sym_PLUS] = ACTIONS(973), + [anon_sym_SLASH] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_try] = ACTIONS(973), + [anon_sym_DOT] = ACTIONS(973), + [anon_sym_CARET] = ACTIONS(971), + [anon_sym_true] = ACTIONS(973), + [anon_sym_false] = ACTIONS(973), + [sym_none] = ACTIONS(973), + [sym_undefined] = ACTIONS(973), + [sym_sink] = ACTIONS(973), + [sym_integer] = ACTIONS(973), + [sym_float] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(971), + [sym_multiline_string] = ACTIONS(971), + [sym_character] = ACTIONS(971), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(977), + [sym__newline] = ACTIONS(971), }, [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), + [ts_builtin_sym_end] = ACTIONS(912), + [sym_identifier] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_import] = ACTIONS(914), + [anon_sym_hide] = ACTIONS(914), + [anon_sym_func] = ACTIONS(914), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_EQ] = ACTIONS(914), + [anon_sym_struct] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(912), + [anon_sym_RPAREN] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(912), + [anon_sym_COMMA] = ACTIONS(912), + [anon_sym_RBRACE] = ACTIONS(912), + [anon_sym_DASH] = ACTIONS(914), + [anon_sym_DOLLAR] = ACTIONS(912), + [anon_sym_PIPE] = ACTIONS(912), + [anon_sym_QMARK] = ACTIONS(912), + [anon_sym_STAR] = ACTIONS(914), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_SEMI] = ACTIONS(912), + [anon_sym_RBRACK] = ACTIONS(912), + [anon_sym_void] = ACTIONS(914), + [anon_sym_anyopaque] = ACTIONS(914), + [anon_sym_bool] = ACTIONS(914), + [anon_sym_int] = ACTIONS(914), + [anon_sym_float] = ACTIONS(914), + [anon_sym_range] = ACTIONS(914), + [anon_sym_i8] = ACTIONS(914), + [anon_sym_i16] = ACTIONS(914), + [anon_sym_i32] = ACTIONS(914), + [anon_sym_i64] = ACTIONS(914), + [anon_sym_u8] = ACTIONS(914), + [anon_sym_u16] = ACTIONS(914), + [anon_sym_u32] = ACTIONS(914), + [anon_sym_u64] = ACTIONS(914), + [anon_sym_isize] = ACTIONS(914), + [anon_sym_usize] = ACTIONS(914), + [anon_sym_f32] = ACTIONS(914), + [anon_sym_f64] = ACTIONS(914), + [anon_sym_c_char] = ACTIONS(914), + [anon_sym_c_schar] = ACTIONS(914), + [anon_sym_c_uchar] = ACTIONS(914), + [anon_sym_c_short] = ACTIONS(914), + [anon_sym_c_ushort] = ACTIONS(914), + [anon_sym_c_int] = ACTIONS(914), + [anon_sym_c_uint] = ACTIONS(914), + [anon_sym_c_long] = ACTIONS(914), + [anon_sym_c_ulong] = ACTIONS(914), + [anon_sym_c_longlong] = ACTIONS(914), + [anon_sym_c_ulonglong] = ACTIONS(914), + [anon_sym_c_float] = ACTIONS(914), + [anon_sym_c_double] = ACTIONS(914), + [anon_sym_c_longdouble] = ACTIONS(914), + [anon_sym_PLUS_EQ] = ACTIONS(912), + [anon_sym_DASH_EQ] = ACTIONS(912), + [anon_sym_STAR_EQ] = ACTIONS(912), + [anon_sym_SLASH_EQ] = ACTIONS(912), + [anon_sym_return] = ACTIONS(914), + [anon_sym_yield] = ACTIONS(914), + [anon_sym_COLON] = ACTIONS(914), + [anon_sym_break] = ACTIONS(914), + [anon_sym_continue] = ACTIONS(914), + [anon_sym_defer] = ACTIONS(914), + [anon_sym_errdefer] = ACTIONS(914), + [anon_sym_if] = ACTIONS(914), + [anon_sym_else] = ACTIONS(914), + [anon_sym_while] = ACTIONS(914), + [anon_sym_for] = ACTIONS(914), + [anon_sym_match] = ACTIONS(914), + [anon_sym_DOT_DOT] = ACTIONS(914), + [anon_sym_DOT_DOT_EQ] = ACTIONS(912), + [anon_sym_orelse] = ACTIONS(914), + [anon_sym_catch] = ACTIONS(914), + [anon_sym_or] = ACTIONS(914), + [anon_sym_and] = ACTIONS(914), + [anon_sym_EQ_EQ] = ACTIONS(912), + [anon_sym_BANG_EQ] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(914), + [anon_sym_LT_EQ] = ACTIONS(912), + [anon_sym_GT] = ACTIONS(914), + [anon_sym_GT_EQ] = ACTIONS(912), + [anon_sym_PLUS] = ACTIONS(914), + [anon_sym_SLASH] = ACTIONS(914), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_try] = ACTIONS(914), + [anon_sym_DOT] = ACTIONS(914), + [anon_sym_CARET] = ACTIONS(912), + [anon_sym_true] = ACTIONS(914), + [anon_sym_false] = ACTIONS(914), + [sym_none] = ACTIONS(914), + [sym_undefined] = ACTIONS(914), + [sym_sink] = ACTIONS(914), + [sym_integer] = ACTIONS(914), + [sym_float] = ACTIONS(912), + [anon_sym_DQUOTE] = ACTIONS(912), + [sym_multiline_string] = ACTIONS(912), + [sym_character] = ACTIONS(912), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(983), + [sym__newline] = ACTIONS(912), }, [STATE(414)] = { + [ts_builtin_sym_end] = ACTIONS(975), + [sym_identifier] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(975), + [anon_sym_import] = ACTIONS(977), + [anon_sym_hide] = ACTIONS(977), + [anon_sym_func] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), + [anon_sym_EQ] = ACTIONS(977), + [anon_sym_struct] = ACTIONS(977), + [anon_sym_LPAREN] = ACTIONS(975), + [anon_sym_RPAREN] = ACTIONS(975), + [anon_sym_LBRACE] = ACTIONS(975), + [anon_sym_COMMA] = ACTIONS(975), + [anon_sym_RBRACE] = ACTIONS(975), + [anon_sym_DASH] = ACTIONS(977), + [anon_sym_DOLLAR] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(975), + [anon_sym_QMARK] = ACTIONS(975), + [anon_sym_STAR] = ACTIONS(977), + [anon_sym_LBRACK] = ACTIONS(975), + [anon_sym_SEMI] = ACTIONS(975), + [anon_sym_RBRACK] = ACTIONS(975), + [anon_sym_void] = ACTIONS(977), + [anon_sym_anyopaque] = ACTIONS(977), + [anon_sym_bool] = ACTIONS(977), + [anon_sym_int] = ACTIONS(977), + [anon_sym_float] = ACTIONS(977), + [anon_sym_range] = ACTIONS(977), + [anon_sym_i8] = ACTIONS(977), + [anon_sym_i16] = ACTIONS(977), + [anon_sym_i32] = ACTIONS(977), + [anon_sym_i64] = ACTIONS(977), + [anon_sym_u8] = ACTIONS(977), + [anon_sym_u16] = ACTIONS(977), + [anon_sym_u32] = ACTIONS(977), + [anon_sym_u64] = ACTIONS(977), + [anon_sym_isize] = ACTIONS(977), + [anon_sym_usize] = ACTIONS(977), + [anon_sym_f32] = ACTIONS(977), + [anon_sym_f64] = ACTIONS(977), + [anon_sym_c_char] = ACTIONS(977), + [anon_sym_c_schar] = ACTIONS(977), + [anon_sym_c_uchar] = ACTIONS(977), + [anon_sym_c_short] = ACTIONS(977), + [anon_sym_c_ushort] = ACTIONS(977), + [anon_sym_c_int] = ACTIONS(977), + [anon_sym_c_uint] = ACTIONS(977), + [anon_sym_c_long] = ACTIONS(977), + [anon_sym_c_ulong] = ACTIONS(977), + [anon_sym_c_longlong] = ACTIONS(977), + [anon_sym_c_ulonglong] = ACTIONS(977), + [anon_sym_c_float] = ACTIONS(977), + [anon_sym_c_double] = ACTIONS(977), + [anon_sym_c_longdouble] = ACTIONS(977), + [anon_sym_PLUS_EQ] = ACTIONS(975), + [anon_sym_DASH_EQ] = ACTIONS(975), + [anon_sym_STAR_EQ] = ACTIONS(975), + [anon_sym_SLASH_EQ] = ACTIONS(975), + [anon_sym_return] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(977), + [anon_sym_COLON] = ACTIONS(977), + [anon_sym_break] = ACTIONS(977), + [anon_sym_continue] = ACTIONS(977), + [anon_sym_defer] = ACTIONS(977), + [anon_sym_errdefer] = ACTIONS(977), + [anon_sym_if] = ACTIONS(977), + [anon_sym_else] = ACTIONS(977), + [anon_sym_while] = ACTIONS(977), + [anon_sym_for] = ACTIONS(977), + [anon_sym_match] = ACTIONS(977), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_DOT_DOT_EQ] = ACTIONS(975), + [anon_sym_orelse] = ACTIONS(977), + [anon_sym_catch] = ACTIONS(977), + [anon_sym_or] = ACTIONS(977), + [anon_sym_and] = ACTIONS(977), + [anon_sym_EQ_EQ] = ACTIONS(975), + [anon_sym_BANG_EQ] = ACTIONS(975), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_LT_EQ] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_GT_EQ] = ACTIONS(975), + [anon_sym_PLUS] = ACTIONS(977), + [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_try] = ACTIONS(977), + [anon_sym_DOT] = ACTIONS(977), + [anon_sym_CARET] = ACTIONS(975), + [anon_sym_true] = ACTIONS(977), + [anon_sym_false] = ACTIONS(977), + [sym_none] = ACTIONS(977), + [sym_undefined] = ACTIONS(977), + [sym_sink] = ACTIONS(977), + [sym_integer] = ACTIONS(977), + [sym_float] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(975), + [sym_multiline_string] = ACTIONS(975), + [sym_character] = ACTIONS(975), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(975), + }, + [STATE(415)] = { + [sym_argument_list] = STATE(504), + [ts_builtin_sym_end] = ACTIONS(979), + [sym_identifier] = ACTIONS(981), + [anon_sym_import] = ACTIONS(981), + [anon_sym_hide] = ACTIONS(981), + [anon_sym_func] = ACTIONS(981), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_EQ] = ACTIONS(981), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(979), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_COMMA] = ACTIONS(979), + [anon_sym_RBRACE] = ACTIONS(979), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_PIPE] = ACTIONS(979), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(981), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_RBRACK] = ACTIONS(979), + [anon_sym_void] = ACTIONS(981), + [anon_sym_anyopaque] = ACTIONS(981), + [anon_sym_bool] = ACTIONS(981), + [anon_sym_int] = ACTIONS(981), + [anon_sym_float] = ACTIONS(981), + [anon_sym_range] = ACTIONS(981), + [anon_sym_i8] = ACTIONS(981), + [anon_sym_i16] = ACTIONS(981), + [anon_sym_i32] = ACTIONS(981), + [anon_sym_i64] = ACTIONS(981), + [anon_sym_u8] = ACTIONS(981), + [anon_sym_u16] = ACTIONS(981), + [anon_sym_u32] = ACTIONS(981), + [anon_sym_u64] = ACTIONS(981), + [anon_sym_isize] = ACTIONS(981), + [anon_sym_usize] = ACTIONS(981), + [anon_sym_f32] = ACTIONS(981), + [anon_sym_f64] = ACTIONS(981), + [anon_sym_c_char] = ACTIONS(981), + [anon_sym_c_schar] = ACTIONS(981), + [anon_sym_c_uchar] = ACTIONS(981), + [anon_sym_c_short] = ACTIONS(981), + [anon_sym_c_ushort] = ACTIONS(981), + [anon_sym_c_int] = ACTIONS(981), + [anon_sym_c_uint] = ACTIONS(981), + [anon_sym_c_long] = ACTIONS(981), + [anon_sym_c_ulong] = ACTIONS(981), + [anon_sym_c_longlong] = ACTIONS(981), + [anon_sym_c_ulonglong] = ACTIONS(981), + [anon_sym_c_float] = ACTIONS(981), + [anon_sym_c_double] = ACTIONS(981), + [anon_sym_c_longdouble] = ACTIONS(981), + [anon_sym_PLUS_EQ] = ACTIONS(979), + [anon_sym_DASH_EQ] = ACTIONS(979), + [anon_sym_STAR_EQ] = ACTIONS(979), + [anon_sym_SLASH_EQ] = ACTIONS(979), + [anon_sym_return] = ACTIONS(981), + [anon_sym_yield] = ACTIONS(981), + [anon_sym_COLON] = ACTIONS(979), + [anon_sym_break] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_defer] = ACTIONS(981), + [anon_sym_errdefer] = ACTIONS(981), + [anon_sym_if] = ACTIONS(981), + [anon_sym_else] = ACTIONS(981), + [anon_sym_while] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_match] = ACTIONS(981), + [anon_sym_DOT_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT_EQ] = ACTIONS(979), + [anon_sym_orelse] = ACTIONS(981), + [anon_sym_catch] = ACTIONS(981), + [anon_sym_or] = ACTIONS(981), + [anon_sym_and] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(979), + [anon_sym_BANG_EQ] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(981), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(979), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_SLASH] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_try] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(981), + [anon_sym_false] = ACTIONS(981), + [sym_none] = ACTIONS(981), + [sym_undefined] = ACTIONS(981), + [sym_sink] = ACTIONS(981), + [sym_integer] = ACTIONS(981), + [sym_float] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [sym_multiline_string] = ACTIONS(979), + [sym_character] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(979), + }, + [STATE(416)] = { [ts_builtin_sym_end] = ACTIONS(987), [sym_identifier] = ACTIONS(989), [anon_sym_COLON_COLON] = ACTIONS(987), [anon_sym_import] = ACTIONS(989), + [anon_sym_hide] = ACTIONS(989), [anon_sym_func] = ACTIONS(989), - [anon_sym_BANG] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(991), [anon_sym_EQ] = ACTIONS(989), [anon_sym_struct] = ACTIONS(989), [anon_sym_LPAREN] = ACTIONS(987), @@ -53870,218 +54320,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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(995), - }, [STATE(417)] = { + [ts_builtin_sym_end] = ACTIONS(993), + [sym_identifier] = ACTIONS(995), + [anon_sym_COLON_COLON] = ACTIONS(993), + [anon_sym_import] = ACTIONS(995), + [anon_sym_hide] = ACTIONS(995), + [anon_sym_func] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_EQ] = ACTIONS(995), + [anon_sym_struct] = ACTIONS(995), + [anon_sym_LPAREN] = ACTIONS(993), + [anon_sym_RPAREN] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(993), + [anon_sym_RBRACE] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_DOLLAR] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(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(418)] = { + [ts_builtin_sym_end] = ACTIONS(997), + [sym_identifier] = ACTIONS(999), + [anon_sym_COLON_COLON] = ACTIONS(997), + [anon_sym_import] = ACTIONS(999), + [anon_sym_hide] = ACTIONS(999), + [anon_sym_func] = ACTIONS(999), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_EQ] = ACTIONS(999), + [anon_sym_struct] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(997), + [anon_sym_RPAREN] = ACTIONS(997), + [anon_sym_LBRACE] = ACTIONS(997), + [anon_sym_COMMA] = ACTIONS(997), + [anon_sym_RBRACE] = ACTIONS(997), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_DOLLAR] = ACTIONS(997), + [anon_sym_PIPE] = ACTIONS(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(419)] = { + [sym_argument_list] = STATE(504), [ts_builtin_sym_end] = ACTIONS(1001), [sym_identifier] = ACTIONS(1003), - [anon_sym_COLON_COLON] = ACTIONS(1001), [anon_sym_import] = ACTIONS(1003), + [anon_sym_hide] = ACTIONS(1003), [anon_sym_func] = ACTIONS(1003), [anon_sym_BANG] = ACTIONS(1003), [anon_sym_EQ] = ACTIONS(1003), [anon_sym_struct] = ACTIONS(1003), - [anon_sym_LPAREN] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(933), [anon_sym_RPAREN] = ACTIONS(1001), [anon_sym_LBRACE] = ACTIONS(1001), [anon_sym_COMMA] = ACTIONS(1001), @@ -54089,9 +54542,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1003), [anon_sym_DOLLAR] = ACTIONS(1001), [anon_sym_PIPE] = ACTIONS(1001), - [anon_sym_QMARK] = ACTIONS(1001), + [anon_sym_QMARK] = ACTIONS(33), [anon_sym_STAR] = ACTIONS(1003), - [anon_sym_LBRACK] = ACTIONS(1001), + [anon_sym_LBRACK] = ACTIONS(983), [anon_sym_SEMI] = ACTIONS(1001), [anon_sym_RBRACK] = ACTIONS(1001), [anon_sym_void] = ACTIONS(1003), @@ -54132,7 +54585,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(1001), [anon_sym_return] = ACTIONS(1003), [anon_sym_yield] = ACTIONS(1003), - [anon_sym_COLON] = ACTIONS(1003), + [anon_sym_COLON] = ACTIONS(1001), [anon_sym_break] = ACTIONS(1003), [anon_sym_continue] = ACTIONS(1003), [anon_sym_defer] = ACTIONS(1003), @@ -54158,8 +54611,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(1003), [anon_sym_AMP] = ACTIONS(1001), [anon_sym_try] = ACTIONS(1003), - [anon_sym_DOT] = ACTIONS(1003), - [anon_sym_CARET] = ACTIONS(1001), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), [anon_sym_true] = ACTIONS(1003), [anon_sym_false] = ACTIONS(1003), [sym_none] = ACTIONS(1003), @@ -54173,11 +54626,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1001), }, - [STATE(418)] = { + [STATE(420)] = { [ts_builtin_sym_end] = ACTIONS(1005), [sym_identifier] = ACTIONS(1007), [anon_sym_COLON_COLON] = ACTIONS(1005), [anon_sym_import] = ACTIONS(1007), + [anon_sym_hide] = ACTIONS(1007), [anon_sym_func] = ACTIONS(1007), [anon_sym_BANG] = ACTIONS(1007), [anon_sym_EQ] = ACTIONS(1007), @@ -54274,11 +54728,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1005), }, - [STATE(419)] = { + [STATE(421)] = { [ts_builtin_sym_end] = ACTIONS(1009), [sym_identifier] = ACTIONS(1011), [anon_sym_COLON_COLON] = ACTIONS(1009), [anon_sym_import] = ACTIONS(1011), + [anon_sym_hide] = ACTIONS(1011), [anon_sym_func] = ACTIONS(1011), [anon_sym_BANG] = ACTIONS(1011), [anon_sym_EQ] = ACTIONS(1011), @@ -54375,11 +54830,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1009), }, - [STATE(420)] = { + [STATE(422)] = { [ts_builtin_sym_end] = ACTIONS(1013), [sym_identifier] = ACTIONS(1015), [anon_sym_COLON_COLON] = ACTIONS(1013), [anon_sym_import] = ACTIONS(1015), + [anon_sym_hide] = ACTIONS(1015), [anon_sym_func] = ACTIONS(1015), [anon_sym_BANG] = ACTIONS(1015), [anon_sym_EQ] = ACTIONS(1015), @@ -54476,11 +54932,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1013), }, - [STATE(421)] = { + [STATE(423)] = { [ts_builtin_sym_end] = ACTIONS(1017), [sym_identifier] = ACTIONS(1019), [anon_sym_COLON_COLON] = ACTIONS(1017), [anon_sym_import] = ACTIONS(1019), + [anon_sym_hide] = ACTIONS(1019), [anon_sym_func] = ACTIONS(1019), [anon_sym_BANG] = ACTIONS(1019), [anon_sym_EQ] = ACTIONS(1019), @@ -54577,11 +55034,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1017), }, - [STATE(422)] = { + [STATE(424)] = { [ts_builtin_sym_end] = ACTIONS(1021), [sym_identifier] = ACTIONS(1023), [anon_sym_COLON_COLON] = ACTIONS(1021), [anon_sym_import] = ACTIONS(1023), + [anon_sym_hide] = ACTIONS(1023), [anon_sym_func] = ACTIONS(1023), [anon_sym_BANG] = ACTIONS(1023), [anon_sym_EQ] = ACTIONS(1023), @@ -54678,11 +55136,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1021), }, - [STATE(423)] = { + [STATE(425)] = { [ts_builtin_sym_end] = ACTIONS(1025), [sym_identifier] = ACTIONS(1027), [anon_sym_COLON_COLON] = ACTIONS(1025), [anon_sym_import] = ACTIONS(1027), + [anon_sym_hide] = ACTIONS(1027), [anon_sym_func] = ACTIONS(1027), [anon_sym_BANG] = ACTIONS(1027), [anon_sym_EQ] = ACTIONS(1027), @@ -54779,11 +55238,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1025), }, - [STATE(424)] = { + [STATE(426)] = { [ts_builtin_sym_end] = ACTIONS(1029), [sym_identifier] = ACTIONS(1031), [anon_sym_COLON_COLON] = ACTIONS(1029), [anon_sym_import] = ACTIONS(1031), + [anon_sym_hide] = ACTIONS(1031), [anon_sym_func] = ACTIONS(1031), [anon_sym_BANG] = ACTIONS(1031), [anon_sym_EQ] = ACTIONS(1031), @@ -54880,16 +55340,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1029), }, - [STATE(425)] = { - [sym_argument_list] = STATE(523), + [STATE(427)] = { [ts_builtin_sym_end] = ACTIONS(1033), [sym_identifier] = ACTIONS(1035), + [anon_sym_COLON_COLON] = ACTIONS(1033), [anon_sym_import] = ACTIONS(1035), + [anon_sym_hide] = ACTIONS(1035), [anon_sym_func] = ACTIONS(1035), [anon_sym_BANG] = ACTIONS(1035), [anon_sym_EQ] = ACTIONS(1035), [anon_sym_struct] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_LPAREN] = ACTIONS(1033), [anon_sym_RPAREN] = ACTIONS(1033), [anon_sym_LBRACE] = ACTIONS(1033), [anon_sym_COMMA] = ACTIONS(1033), @@ -54897,9 +55358,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1035), [anon_sym_DOLLAR] = ACTIONS(1033), [anon_sym_PIPE] = ACTIONS(1033), - [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_QMARK] = ACTIONS(1033), [anon_sym_STAR] = ACTIONS(1035), - [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(1033), [anon_sym_SEMI] = ACTIONS(1033), [anon_sym_RBRACK] = ACTIONS(1033), [anon_sym_void] = ACTIONS(1035), @@ -54940,7 +55401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(1033), [anon_sym_return] = ACTIONS(1035), [anon_sym_yield] = ACTIONS(1035), - [anon_sym_COLON] = ACTIONS(1033), + [anon_sym_COLON] = ACTIONS(1035), [anon_sym_break] = ACTIONS(1035), [anon_sym_continue] = ACTIONS(1035), [anon_sym_defer] = ACTIONS(1035), @@ -54966,8 +55427,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_DOT] = ACTIONS(1035), + [anon_sym_CARET] = ACTIONS(1033), [anon_sym_true] = ACTIONS(1035), [anon_sym_false] = ACTIONS(1035), [sym_none] = ACTIONS(1035), @@ -54981,11 +55442,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1033), }, - [STATE(426)] = { + [STATE(428)] = { [ts_builtin_sym_end] = ACTIONS(1037), [sym_identifier] = ACTIONS(1039), [anon_sym_COLON_COLON] = ACTIONS(1037), [anon_sym_import] = ACTIONS(1039), + [anon_sym_hide] = ACTIONS(1039), [anon_sym_func] = ACTIONS(1039), [anon_sym_BANG] = ACTIONS(1039), [anon_sym_EQ] = ACTIONS(1039), @@ -55082,11 +55544,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1037), }, - [STATE(427)] = { + [STATE(429)] = { [ts_builtin_sym_end] = ACTIONS(1041), [sym_identifier] = ACTIONS(1043), [anon_sym_COLON_COLON] = ACTIONS(1041), [anon_sym_import] = ACTIONS(1043), + [anon_sym_hide] = ACTIONS(1043), [anon_sym_func] = ACTIONS(1043), [anon_sym_BANG] = ACTIONS(1043), [anon_sym_EQ] = ACTIONS(1043), @@ -55183,11 +55646,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1041), }, - [STATE(428)] = { + [STATE(430)] = { [ts_builtin_sym_end] = ACTIONS(1045), [sym_identifier] = ACTIONS(1047), [anon_sym_COLON_COLON] = ACTIONS(1045), [anon_sym_import] = ACTIONS(1047), + [anon_sym_hide] = ACTIONS(1047), [anon_sym_func] = ACTIONS(1047), [anon_sym_BANG] = ACTIONS(1047), [anon_sym_EQ] = ACTIONS(1047), @@ -55284,16 +55748,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1045), }, - [STATE(429)] = { - [sym_argument_list] = STATE(523), + [STATE(431)] = { [ts_builtin_sym_end] = ACTIONS(1049), [sym_identifier] = ACTIONS(1051), + [anon_sym_COLON_COLON] = ACTIONS(1049), [anon_sym_import] = ACTIONS(1051), + [anon_sym_hide] = ACTIONS(1051), [anon_sym_func] = ACTIONS(1051), [anon_sym_BANG] = ACTIONS(1051), [anon_sym_EQ] = ACTIONS(1051), [anon_sym_struct] = ACTIONS(1051), - [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_LPAREN] = ACTIONS(1049), [anon_sym_RPAREN] = ACTIONS(1049), [anon_sym_LBRACE] = ACTIONS(1049), [anon_sym_COMMA] = ACTIONS(1049), @@ -55301,9 +55766,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1051), [anon_sym_DOLLAR] = ACTIONS(1049), [anon_sym_PIPE] = ACTIONS(1049), - [anon_sym_QMARK] = ACTIONS(31), + [anon_sym_QMARK] = ACTIONS(1049), [anon_sym_STAR] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(1049), [anon_sym_SEMI] = ACTIONS(1049), [anon_sym_RBRACK] = ACTIONS(1049), [anon_sym_void] = ACTIONS(1051), @@ -55344,7 +55809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(1049), [anon_sym_return] = ACTIONS(1051), [anon_sym_yield] = ACTIONS(1051), - [anon_sym_COLON] = ACTIONS(1049), + [anon_sym_COLON] = ACTIONS(1051), [anon_sym_break] = ACTIONS(1051), [anon_sym_continue] = ACTIONS(1051), [anon_sym_defer] = ACTIONS(1051), @@ -55370,8 +55835,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_DOT] = ACTIONS(1051), + [anon_sym_CARET] = ACTIONS(1049), [anon_sym_true] = ACTIONS(1051), [anon_sym_false] = ACTIONS(1051), [sym_none] = ACTIONS(1051), @@ -55385,11 +55850,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1049), }, - [STATE(430)] = { + [STATE(432)] = { [ts_builtin_sym_end] = ACTIONS(1053), [sym_identifier] = ACTIONS(1055), [anon_sym_COLON_COLON] = ACTIONS(1053), [anon_sym_import] = ACTIONS(1055), + [anon_sym_hide] = ACTIONS(1055), [anon_sym_func] = ACTIONS(1055), [anon_sym_BANG] = ACTIONS(1055), [anon_sym_EQ] = ACTIONS(1055), @@ -55486,11 +55952,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1053), }, - [STATE(431)] = { + [STATE(433)] = { [ts_builtin_sym_end] = ACTIONS(1057), [sym_identifier] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(1057), [anon_sym_import] = ACTIONS(1059), + [anon_sym_hide] = ACTIONS(1059), [anon_sym_func] = ACTIONS(1059), [anon_sym_BANG] = ACTIONS(1059), [anon_sym_EQ] = ACTIONS(1059), @@ -55587,11 +56054,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1057), }, - [STATE(432)] = { + [STATE(434)] = { [ts_builtin_sym_end] = ACTIONS(1061), [sym_identifier] = ACTIONS(1063), [anon_sym_COLON_COLON] = ACTIONS(1061), [anon_sym_import] = ACTIONS(1063), + [anon_sym_hide] = ACTIONS(1063), [anon_sym_func] = ACTIONS(1063), [anon_sym_BANG] = ACTIONS(1063), [anon_sym_EQ] = ACTIONS(1063), @@ -55688,16 +56156,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1061), }, - [STATE(433)] = { + [STATE(435)] = { + [sym_argument_list] = STATE(504), [ts_builtin_sym_end] = ACTIONS(1065), [sym_identifier] = ACTIONS(1067), - [anon_sym_COLON_COLON] = ACTIONS(1065), [anon_sym_import] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), [anon_sym_func] = ACTIONS(1067), [anon_sym_BANG] = ACTIONS(1067), [anon_sym_EQ] = ACTIONS(1067), [anon_sym_struct] = ACTIONS(1067), - [anon_sym_LPAREN] = ACTIONS(1065), + [anon_sym_LPAREN] = ACTIONS(933), [anon_sym_RPAREN] = ACTIONS(1065), [anon_sym_LBRACE] = ACTIONS(1065), [anon_sym_COMMA] = ACTIONS(1065), @@ -55705,9 +56174,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1067), [anon_sym_DOLLAR] = ACTIONS(1065), [anon_sym_PIPE] = ACTIONS(1065), - [anon_sym_QMARK] = ACTIONS(1065), + [anon_sym_QMARK] = ACTIONS(33), [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_LBRACK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(983), [anon_sym_SEMI] = ACTIONS(1065), [anon_sym_RBRACK] = ACTIONS(1065), [anon_sym_void] = ACTIONS(1067), @@ -55748,7 +56217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(1065), [anon_sym_return] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(1067), - [anon_sym_COLON] = ACTIONS(1067), + [anon_sym_COLON] = ACTIONS(1065), [anon_sym_break] = ACTIONS(1067), [anon_sym_continue] = ACTIONS(1067), [anon_sym_defer] = ACTIONS(1067), @@ -55774,8 +56243,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), [anon_sym_true] = ACTIONS(1067), [anon_sym_false] = ACTIONS(1067), [sym_none] = ACTIONS(1067), @@ -55789,11 +56258,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1065), }, - [STATE(434)] = { + [STATE(436)] = { [ts_builtin_sym_end] = ACTIONS(1069), [sym_identifier] = ACTIONS(1071), [anon_sym_COLON_COLON] = ACTIONS(1069), [anon_sym_import] = ACTIONS(1071), + [anon_sym_hide] = ACTIONS(1071), [anon_sym_func] = ACTIONS(1071), [anon_sym_BANG] = ACTIONS(1071), [anon_sym_EQ] = ACTIONS(1071), @@ -55890,11 +56360,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1069), }, - [STATE(435)] = { + [STATE(437)] = { [ts_builtin_sym_end] = ACTIONS(1073), [sym_identifier] = ACTIONS(1075), [anon_sym_COLON_COLON] = ACTIONS(1073), [anon_sym_import] = ACTIONS(1075), + [anon_sym_hide] = ACTIONS(1075), [anon_sym_func] = ACTIONS(1075), [anon_sym_BANG] = ACTIONS(1075), [anon_sym_EQ] = ACTIONS(1075), @@ -55991,11 +56462,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1073), }, - [STATE(436)] = { + [STATE(438)] = { [ts_builtin_sym_end] = ACTIONS(1077), [sym_identifier] = ACTIONS(1079), [anon_sym_COLON_COLON] = ACTIONS(1077), [anon_sym_import] = ACTIONS(1079), + [anon_sym_hide] = ACTIONS(1079), [anon_sym_func] = ACTIONS(1079), [anon_sym_BANG] = ACTIONS(1079), [anon_sym_EQ] = ACTIONS(1079), @@ -56092,11 +56564,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1077), }, - [STATE(437)] = { + [STATE(439)] = { [ts_builtin_sym_end] = ACTIONS(1081), [sym_identifier] = ACTIONS(1083), [anon_sym_COLON_COLON] = ACTIONS(1081), [anon_sym_import] = ACTIONS(1083), + [anon_sym_hide] = ACTIONS(1083), [anon_sym_func] = ACTIONS(1083), [anon_sym_BANG] = ACTIONS(1083), [anon_sym_EQ] = ACTIONS(1083), @@ -56193,11 +56666,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1081), }, - [STATE(438)] = { + [STATE(440)] = { [ts_builtin_sym_end] = ACTIONS(1085), [sym_identifier] = ACTIONS(1087), [anon_sym_COLON_COLON] = ACTIONS(1085), [anon_sym_import] = ACTIONS(1087), + [anon_sym_hide] = ACTIONS(1087), [anon_sym_func] = ACTIONS(1087), [anon_sym_BANG] = ACTIONS(1087), [anon_sym_EQ] = ACTIONS(1087), @@ -56294,11 +56768,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1085), }, - [STATE(439)] = { + [STATE(441)] = { [ts_builtin_sym_end] = ACTIONS(1089), [sym_identifier] = ACTIONS(1091), [anon_sym_COLON_COLON] = ACTIONS(1089), [anon_sym_import] = ACTIONS(1091), + [anon_sym_hide] = ACTIONS(1091), [anon_sym_func] = ACTIONS(1091), [anon_sym_BANG] = ACTIONS(1091), [anon_sym_EQ] = ACTIONS(1091), @@ -56395,11 +56870,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1089), }, - [STATE(440)] = { + [STATE(442)] = { [ts_builtin_sym_end] = ACTIONS(1093), [sym_identifier] = ACTIONS(1095), [anon_sym_COLON_COLON] = ACTIONS(1093), [anon_sym_import] = ACTIONS(1095), + [anon_sym_hide] = ACTIONS(1095), [anon_sym_func] = ACTIONS(1095), [anon_sym_BANG] = ACTIONS(1095), [anon_sym_EQ] = ACTIONS(1095), @@ -56496,11 +56972,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1093), }, - [STATE(441)] = { + [STATE(443)] = { [ts_builtin_sym_end] = ACTIONS(1097), [sym_identifier] = ACTIONS(1099), [anon_sym_COLON_COLON] = ACTIONS(1097), [anon_sym_import] = ACTIONS(1099), + [anon_sym_hide] = ACTIONS(1099), [anon_sym_func] = ACTIONS(1099), [anon_sym_BANG] = ACTIONS(1099), [anon_sym_EQ] = ACTIONS(1099), @@ -56597,11 +57074,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1097), }, - [STATE(442)] = { + [STATE(444)] = { [ts_builtin_sym_end] = ACTIONS(1101), [sym_identifier] = ACTIONS(1103), [anon_sym_COLON_COLON] = ACTIONS(1101), [anon_sym_import] = ACTIONS(1103), + [anon_sym_hide] = ACTIONS(1103), [anon_sym_func] = ACTIONS(1103), [anon_sym_BANG] = ACTIONS(1103), [anon_sym_EQ] = ACTIONS(1103), @@ -56683,7 +57161,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(1103), [anon_sym_AMP] = ACTIONS(1101), [anon_sym_try] = ACTIONS(1103), - [anon_sym_DOT] = ACTIONS(1103), + [anon_sym_DOT] = ACTIONS(1105), [anon_sym_CARET] = ACTIONS(1101), [anon_sym_true] = ACTIONS(1103), [anon_sym_false] = ACTIONS(1103), @@ -56698,415 +57176,318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1101), }, - [STATE(443)] = { - [ts_builtin_sym_end] = ACTIONS(1105), - [sym_identifier] = ACTIONS(1107), - [anon_sym_COLON_COLON] = ACTIONS(1105), - [anon_sym_import] = ACTIONS(1107), - [anon_sym_func] = ACTIONS(1107), - [anon_sym_BANG] = ACTIONS(1107), - [anon_sym_EQ] = ACTIONS(1107), - [anon_sym_struct] = ACTIONS(1107), - [anon_sym_LPAREN] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_LBRACE] = ACTIONS(1105), - [anon_sym_COMMA] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_DOLLAR] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1105), - [anon_sym_QMARK] = ACTIONS(1105), - [anon_sym_STAR] = ACTIONS(1107), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1105), - [anon_sym_void] = ACTIONS(1107), - [anon_sym_anyopaque] = ACTIONS(1107), - [anon_sym_bool] = ACTIONS(1107), - [anon_sym_int] = ACTIONS(1107), - [anon_sym_float] = ACTIONS(1107), - [anon_sym_range] = ACTIONS(1107), - [anon_sym_i8] = ACTIONS(1107), - [anon_sym_i16] = ACTIONS(1107), - [anon_sym_i32] = ACTIONS(1107), - [anon_sym_i64] = ACTIONS(1107), - [anon_sym_u8] = ACTIONS(1107), - [anon_sym_u16] = ACTIONS(1107), - [anon_sym_u32] = ACTIONS(1107), - [anon_sym_u64] = ACTIONS(1107), - [anon_sym_isize] = ACTIONS(1107), - [anon_sym_usize] = ACTIONS(1107), - [anon_sym_f32] = ACTIONS(1107), - [anon_sym_f64] = ACTIONS(1107), - [anon_sym_c_char] = ACTIONS(1107), - [anon_sym_c_schar] = ACTIONS(1107), - [anon_sym_c_uchar] = ACTIONS(1107), - [anon_sym_c_short] = ACTIONS(1107), - [anon_sym_c_ushort] = ACTIONS(1107), - [anon_sym_c_int] = ACTIONS(1107), - [anon_sym_c_uint] = ACTIONS(1107), - [anon_sym_c_long] = ACTIONS(1107), - [anon_sym_c_ulong] = ACTIONS(1107), - [anon_sym_c_longlong] = ACTIONS(1107), - [anon_sym_c_ulonglong] = ACTIONS(1107), - [anon_sym_c_float] = ACTIONS(1107), - [anon_sym_c_double] = ACTIONS(1107), - [anon_sym_c_longdouble] = ACTIONS(1107), - [anon_sym_PLUS_EQ] = ACTIONS(1105), - [anon_sym_DASH_EQ] = ACTIONS(1105), - [anon_sym_STAR_EQ] = ACTIONS(1105), - [anon_sym_SLASH_EQ] = ACTIONS(1105), - [anon_sym_return] = ACTIONS(1107), - [anon_sym_yield] = ACTIONS(1107), - [anon_sym_COLON] = ACTIONS(1107), - [anon_sym_break] = ACTIONS(1107), - [anon_sym_continue] = ACTIONS(1107), - [anon_sym_defer] = ACTIONS(1107), - [anon_sym_errdefer] = ACTIONS(1107), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_else] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(1107), - [anon_sym_for] = ACTIONS(1107), - [anon_sym_match] = ACTIONS(1107), - [anon_sym_DOT_DOT] = ACTIONS(1107), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1105), - [anon_sym_orelse] = ACTIONS(1107), - [anon_sym_catch] = ACTIONS(1107), - [anon_sym_or] = ACTIONS(1107), - [anon_sym_and] = ACTIONS(1107), - [anon_sym_EQ_EQ] = ACTIONS(1105), - [anon_sym_BANG_EQ] = ACTIONS(1105), - [anon_sym_LT] = ACTIONS(1107), - [anon_sym_LT_EQ] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(1107), - [anon_sym_GT_EQ] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_SLASH] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1105), - [anon_sym_try] = ACTIONS(1107), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1105), - [anon_sym_true] = ACTIONS(1107), - [anon_sym_false] = ACTIONS(1107), - [sym_none] = ACTIONS(1107), - [sym_undefined] = ACTIONS(1107), - [sym_sink] = ACTIONS(1107), - [sym_integer] = ACTIONS(1107), - [sym_float] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(1105), - [sym_multiline_string] = ACTIONS(1105), - [sym_character] = ACTIONS(1105), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1105), - }, - [STATE(444)] = { - [ts_builtin_sym_end] = ACTIONS(1109), - [sym_identifier] = ACTIONS(1111), - [anon_sym_COLON_COLON] = ACTIONS(1109), - [anon_sym_import] = ACTIONS(1111), - [anon_sym_func] = ACTIONS(1111), - [anon_sym_BANG] = ACTIONS(1111), - [anon_sym_EQ] = ACTIONS(1111), - [anon_sym_struct] = ACTIONS(1111), - [anon_sym_LPAREN] = ACTIONS(1109), - [anon_sym_RPAREN] = ACTIONS(1109), - [anon_sym_LBRACE] = ACTIONS(1109), - [anon_sym_COMMA] = ACTIONS(1109), - [anon_sym_RBRACE] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1111), - [anon_sym_DOLLAR] = ACTIONS(1109), - [anon_sym_PIPE] = ACTIONS(1109), - [anon_sym_QMARK] = ACTIONS(1109), - [anon_sym_STAR] = ACTIONS(1111), - [anon_sym_LBRACK] = ACTIONS(1109), - [anon_sym_SEMI] = ACTIONS(1109), - [anon_sym_RBRACK] = ACTIONS(1109), - [anon_sym_void] = ACTIONS(1111), - [anon_sym_anyopaque] = ACTIONS(1111), - [anon_sym_bool] = ACTIONS(1111), - [anon_sym_int] = ACTIONS(1111), - [anon_sym_float] = ACTIONS(1111), - [anon_sym_range] = ACTIONS(1111), - [anon_sym_i8] = ACTIONS(1111), - [anon_sym_i16] = ACTIONS(1111), - [anon_sym_i32] = ACTIONS(1111), - [anon_sym_i64] = ACTIONS(1111), - [anon_sym_u8] = ACTIONS(1111), - [anon_sym_u16] = ACTIONS(1111), - [anon_sym_u32] = ACTIONS(1111), - [anon_sym_u64] = ACTIONS(1111), - [anon_sym_isize] = ACTIONS(1111), - [anon_sym_usize] = ACTIONS(1111), - [anon_sym_f32] = ACTIONS(1111), - [anon_sym_f64] = ACTIONS(1111), - [anon_sym_c_char] = ACTIONS(1111), - [anon_sym_c_schar] = ACTIONS(1111), - [anon_sym_c_uchar] = ACTIONS(1111), - [anon_sym_c_short] = ACTIONS(1111), - [anon_sym_c_ushort] = ACTIONS(1111), - [anon_sym_c_int] = ACTIONS(1111), - [anon_sym_c_uint] = ACTIONS(1111), - [anon_sym_c_long] = ACTIONS(1111), - [anon_sym_c_ulong] = ACTIONS(1111), - [anon_sym_c_longlong] = ACTIONS(1111), - [anon_sym_c_ulonglong] = ACTIONS(1111), - [anon_sym_c_float] = ACTIONS(1111), - [anon_sym_c_double] = ACTIONS(1111), - [anon_sym_c_longdouble] = ACTIONS(1111), - [anon_sym_PLUS_EQ] = ACTIONS(1109), - [anon_sym_DASH_EQ] = ACTIONS(1109), - [anon_sym_STAR_EQ] = ACTIONS(1109), - [anon_sym_SLASH_EQ] = ACTIONS(1109), - [anon_sym_return] = ACTIONS(1111), - [anon_sym_yield] = ACTIONS(1111), - [anon_sym_COLON] = ACTIONS(1111), - [anon_sym_break] = ACTIONS(1111), - [anon_sym_continue] = ACTIONS(1111), - [anon_sym_defer] = ACTIONS(1111), - [anon_sym_errdefer] = ACTIONS(1111), - [anon_sym_if] = ACTIONS(1111), - [anon_sym_else] = ACTIONS(1111), - [anon_sym_while] = ACTIONS(1111), - [anon_sym_for] = ACTIONS(1111), - [anon_sym_match] = ACTIONS(1111), - [anon_sym_DOT_DOT] = ACTIONS(1111), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1109), - [anon_sym_orelse] = ACTIONS(1111), - [anon_sym_catch] = ACTIONS(1111), - [anon_sym_or] = ACTIONS(1111), - [anon_sym_and] = ACTIONS(1111), - [anon_sym_EQ_EQ] = ACTIONS(1109), - [anon_sym_BANG_EQ] = ACTIONS(1109), - [anon_sym_LT] = ACTIONS(1111), - [anon_sym_LT_EQ] = ACTIONS(1109), - [anon_sym_GT] = ACTIONS(1111), - [anon_sym_GT_EQ] = ACTIONS(1109), - [anon_sym_PLUS] = ACTIONS(1111), - [anon_sym_SLASH] = ACTIONS(1111), - [anon_sym_AMP] = ACTIONS(1109), - [anon_sym_try] = ACTIONS(1111), - [anon_sym_DOT] = ACTIONS(1111), - [anon_sym_CARET] = ACTIONS(1109), - [anon_sym_true] = ACTIONS(1111), - [anon_sym_false] = ACTIONS(1111), - [sym_none] = ACTIONS(1111), - [sym_undefined] = ACTIONS(1111), - [sym_sink] = ACTIONS(1111), - [sym_integer] = ACTIONS(1111), - [sym_float] = ACTIONS(1109), - [anon_sym_DQUOTE] = ACTIONS(1109), - [sym_multiline_string] = ACTIONS(1109), - [sym_character] = ACTIONS(1109), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1109), - }, [STATE(445)] = { - [ts_builtin_sym_end] = ACTIONS(1113), - [sym_identifier] = ACTIONS(1115), - [anon_sym_COLON_COLON] = ACTIONS(1113), - [anon_sym_import] = ACTIONS(1115), - [anon_sym_func] = ACTIONS(1115), - [anon_sym_BANG] = ACTIONS(1115), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_struct] = ACTIONS(1115), - [anon_sym_LPAREN] = ACTIONS(1113), - [anon_sym_RPAREN] = ACTIONS(1113), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_COMMA] = ACTIONS(1113), - [anon_sym_RBRACE] = ACTIONS(1113), - [anon_sym_DASH] = ACTIONS(1115), - [anon_sym_DOLLAR] = ACTIONS(1113), - [anon_sym_PIPE] = ACTIONS(1113), - [anon_sym_QMARK] = ACTIONS(1113), - [anon_sym_STAR] = ACTIONS(1115), - [anon_sym_LBRACK] = ACTIONS(1113), - [anon_sym_SEMI] = ACTIONS(1113), - [anon_sym_RBRACK] = ACTIONS(1113), - [anon_sym_void] = ACTIONS(1115), - [anon_sym_anyopaque] = ACTIONS(1115), - [anon_sym_bool] = ACTIONS(1115), - [anon_sym_int] = ACTIONS(1115), - [anon_sym_float] = ACTIONS(1115), - [anon_sym_range] = ACTIONS(1115), - [anon_sym_i8] = ACTIONS(1115), - [anon_sym_i16] = ACTIONS(1115), - [anon_sym_i32] = ACTIONS(1115), - [anon_sym_i64] = ACTIONS(1115), - [anon_sym_u8] = ACTIONS(1115), - [anon_sym_u16] = ACTIONS(1115), - [anon_sym_u32] = ACTIONS(1115), - [anon_sym_u64] = ACTIONS(1115), - [anon_sym_isize] = ACTIONS(1115), - [anon_sym_usize] = ACTIONS(1115), - [anon_sym_f32] = ACTIONS(1115), - [anon_sym_f64] = ACTIONS(1115), - [anon_sym_c_char] = ACTIONS(1115), - [anon_sym_c_schar] = ACTIONS(1115), - [anon_sym_c_uchar] = ACTIONS(1115), - [anon_sym_c_short] = ACTIONS(1115), - [anon_sym_c_ushort] = ACTIONS(1115), - [anon_sym_c_int] = ACTIONS(1115), - [anon_sym_c_uint] = ACTIONS(1115), - [anon_sym_c_long] = ACTIONS(1115), - [anon_sym_c_ulong] = ACTIONS(1115), - [anon_sym_c_longlong] = ACTIONS(1115), - [anon_sym_c_ulonglong] = ACTIONS(1115), - [anon_sym_c_float] = ACTIONS(1115), - [anon_sym_c_double] = ACTIONS(1115), - [anon_sym_c_longdouble] = ACTIONS(1115), - [anon_sym_PLUS_EQ] = ACTIONS(1113), - [anon_sym_DASH_EQ] = ACTIONS(1113), - [anon_sym_STAR_EQ] = ACTIONS(1113), - [anon_sym_SLASH_EQ] = ACTIONS(1113), - [anon_sym_return] = ACTIONS(1115), - [anon_sym_yield] = ACTIONS(1115), - [anon_sym_COLON] = ACTIONS(1115), - [anon_sym_break] = ACTIONS(1115), - [anon_sym_continue] = ACTIONS(1115), - [anon_sym_defer] = ACTIONS(1115), - [anon_sym_errdefer] = ACTIONS(1115), - [anon_sym_if] = ACTIONS(1115), - [anon_sym_else] = ACTIONS(1115), - [anon_sym_while] = ACTIONS(1115), - [anon_sym_for] = ACTIONS(1115), - [anon_sym_match] = ACTIONS(1115), - [anon_sym_DOT_DOT] = ACTIONS(1115), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1113), - [anon_sym_orelse] = ACTIONS(1115), - [anon_sym_catch] = ACTIONS(1115), - [anon_sym_or] = ACTIONS(1115), - [anon_sym_and] = ACTIONS(1115), - [anon_sym_EQ_EQ] = ACTIONS(1113), - [anon_sym_BANG_EQ] = ACTIONS(1113), - [anon_sym_LT] = ACTIONS(1115), - [anon_sym_LT_EQ] = ACTIONS(1113), - [anon_sym_GT] = ACTIONS(1115), - [anon_sym_GT_EQ] = ACTIONS(1113), - [anon_sym_PLUS] = ACTIONS(1115), - [anon_sym_SLASH] = ACTIONS(1115), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_try] = ACTIONS(1115), - [anon_sym_DOT] = ACTIONS(1115), - [anon_sym_CARET] = ACTIONS(1113), - [anon_sym_true] = ACTIONS(1115), - [anon_sym_false] = ACTIONS(1115), - [sym_none] = ACTIONS(1115), - [sym_undefined] = ACTIONS(1115), - [sym_sink] = ACTIONS(1115), - [sym_integer] = ACTIONS(1115), - [sym_float] = ACTIONS(1113), - [anon_sym_DQUOTE] = ACTIONS(1113), - [sym_multiline_string] = ACTIONS(1113), - [sym_character] = ACTIONS(1113), + [ts_builtin_sym_end] = ACTIONS(1107), + [sym_identifier] = ACTIONS(1109), + [anon_sym_COLON_COLON] = ACTIONS(1107), + [anon_sym_import] = ACTIONS(1109), + [anon_sym_hide] = ACTIONS(1109), + [anon_sym_func] = ACTIONS(1109), + [anon_sym_BANG] = ACTIONS(1109), + [anon_sym_EQ] = ACTIONS(1109), + [anon_sym_struct] = ACTIONS(1109), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(1107), + [anon_sym_LBRACE] = ACTIONS(1107), + [anon_sym_COMMA] = ACTIONS(1107), + [anon_sym_RBRACE] = ACTIONS(1107), + [anon_sym_DASH] = ACTIONS(1109), + [anon_sym_DOLLAR] = ACTIONS(1107), + [anon_sym_PIPE] = ACTIONS(1107), + [anon_sym_QMARK] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(1109), + [anon_sym_LBRACK] = ACTIONS(1107), + [anon_sym_SEMI] = ACTIONS(1107), + [anon_sym_RBRACK] = ACTIONS(1107), + [anon_sym_void] = ACTIONS(1109), + [anon_sym_anyopaque] = ACTIONS(1109), + [anon_sym_bool] = ACTIONS(1109), + [anon_sym_int] = ACTIONS(1109), + [anon_sym_float] = ACTIONS(1109), + [anon_sym_range] = ACTIONS(1109), + [anon_sym_i8] = ACTIONS(1109), + [anon_sym_i16] = ACTIONS(1109), + [anon_sym_i32] = ACTIONS(1109), + [anon_sym_i64] = ACTIONS(1109), + [anon_sym_u8] = ACTIONS(1109), + [anon_sym_u16] = ACTIONS(1109), + [anon_sym_u32] = ACTIONS(1109), + [anon_sym_u64] = ACTIONS(1109), + [anon_sym_isize] = ACTIONS(1109), + [anon_sym_usize] = ACTIONS(1109), + [anon_sym_f32] = ACTIONS(1109), + [anon_sym_f64] = ACTIONS(1109), + [anon_sym_c_char] = ACTIONS(1109), + [anon_sym_c_schar] = ACTIONS(1109), + [anon_sym_c_uchar] = ACTIONS(1109), + [anon_sym_c_short] = ACTIONS(1109), + [anon_sym_c_ushort] = ACTIONS(1109), + [anon_sym_c_int] = ACTIONS(1109), + [anon_sym_c_uint] = ACTIONS(1109), + [anon_sym_c_long] = ACTIONS(1109), + [anon_sym_c_ulong] = ACTIONS(1109), + [anon_sym_c_longlong] = ACTIONS(1109), + [anon_sym_c_ulonglong] = ACTIONS(1109), + [anon_sym_c_float] = ACTIONS(1109), + [anon_sym_c_double] = ACTIONS(1109), + [anon_sym_c_longdouble] = ACTIONS(1109), + [anon_sym_PLUS_EQ] = ACTIONS(1107), + [anon_sym_DASH_EQ] = ACTIONS(1107), + [anon_sym_STAR_EQ] = ACTIONS(1107), + [anon_sym_SLASH_EQ] = ACTIONS(1107), + [anon_sym_return] = ACTIONS(1109), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_COLON] = ACTIONS(1109), + [anon_sym_break] = ACTIONS(1109), + [anon_sym_continue] = ACTIONS(1109), + [anon_sym_defer] = ACTIONS(1109), + [anon_sym_errdefer] = ACTIONS(1109), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_else] = ACTIONS(1109), + [anon_sym_while] = ACTIONS(1109), + [anon_sym_for] = ACTIONS(1109), + [anon_sym_match] = ACTIONS(1109), + [anon_sym_DOT_DOT] = ACTIONS(1109), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1107), + [anon_sym_orelse] = ACTIONS(1109), + [anon_sym_catch] = ACTIONS(1109), + [anon_sym_or] = ACTIONS(1109), + [anon_sym_and] = ACTIONS(1109), + [anon_sym_EQ_EQ] = ACTIONS(1107), + [anon_sym_BANG_EQ] = ACTIONS(1107), + [anon_sym_LT] = ACTIONS(1109), + [anon_sym_LT_EQ] = ACTIONS(1107), + [anon_sym_GT] = ACTIONS(1109), + [anon_sym_GT_EQ] = ACTIONS(1107), + [anon_sym_PLUS] = ACTIONS(1109), + [anon_sym_SLASH] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_try] = ACTIONS(1109), + [anon_sym_DOT] = ACTIONS(1109), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_true] = ACTIONS(1109), + [anon_sym_false] = ACTIONS(1109), + [sym_none] = ACTIONS(1109), + [sym_undefined] = ACTIONS(1109), + [sym_sink] = ACTIONS(1109), + [sym_integer] = ACTIONS(1109), + [sym_float] = ACTIONS(1107), + [anon_sym_DQUOTE] = ACTIONS(1107), + [sym_multiline_string] = ACTIONS(1107), + [sym_character] = ACTIONS(1107), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1113), + [sym__newline] = ACTIONS(1107), }, [STATE(446)] = { - [ts_builtin_sym_end] = ACTIONS(1117), - [sym_identifier] = ACTIONS(1119), - [anon_sym_COLON_COLON] = ACTIONS(1117), - [anon_sym_import] = ACTIONS(1119), - [anon_sym_func] = ACTIONS(1119), - [anon_sym_BANG] = ACTIONS(1119), - [anon_sym_EQ] = ACTIONS(1119), - [anon_sym_struct] = ACTIONS(1119), - [anon_sym_LPAREN] = ACTIONS(1117), - [anon_sym_RPAREN] = ACTIONS(1117), - [anon_sym_LBRACE] = ACTIONS(1117), - [anon_sym_COMMA] = ACTIONS(1117), - [anon_sym_RBRACE] = ACTIONS(1117), - [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_SEMI] = ACTIONS(1117), - [anon_sym_RBRACK] = 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(1117), - [anon_sym_DASH_EQ] = ACTIONS(1117), - [anon_sym_STAR_EQ] = ACTIONS(1117), - [anon_sym_SLASH_EQ] = ACTIONS(1117), - [anon_sym_return] = ACTIONS(1119), - [anon_sym_yield] = ACTIONS(1119), - [anon_sym_COLON] = 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(1119), - [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_argument_list] = STATE(504), + [ts_builtin_sym_end] = ACTIONS(1111), + [sym_identifier] = ACTIONS(1113), + [anon_sym_import] = ACTIONS(1113), + [anon_sym_hide] = ACTIONS(1113), + [anon_sym_func] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_EQ] = ACTIONS(1113), + [anon_sym_struct] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(1111), + [anon_sym_COMMA] = ACTIONS(1111), + [anon_sym_RBRACE] = ACTIONS(1111), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_DOLLAR] = ACTIONS(1111), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_RBRACK] = ACTIONS(1111), + [anon_sym_void] = ACTIONS(1113), + [anon_sym_anyopaque] = ACTIONS(1113), + [anon_sym_bool] = ACTIONS(1113), + [anon_sym_int] = ACTIONS(1113), + [anon_sym_float] = ACTIONS(1113), + [anon_sym_range] = ACTIONS(1113), + [anon_sym_i8] = ACTIONS(1113), + [anon_sym_i16] = ACTIONS(1113), + [anon_sym_i32] = ACTIONS(1113), + [anon_sym_i64] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1113), + [anon_sym_u16] = ACTIONS(1113), + [anon_sym_u32] = ACTIONS(1113), + [anon_sym_u64] = ACTIONS(1113), + [anon_sym_isize] = ACTIONS(1113), + [anon_sym_usize] = ACTIONS(1113), + [anon_sym_f32] = ACTIONS(1113), + [anon_sym_f64] = ACTIONS(1113), + [anon_sym_c_char] = ACTIONS(1113), + [anon_sym_c_schar] = ACTIONS(1113), + [anon_sym_c_uchar] = ACTIONS(1113), + [anon_sym_c_short] = ACTIONS(1113), + [anon_sym_c_ushort] = ACTIONS(1113), + [anon_sym_c_int] = ACTIONS(1113), + [anon_sym_c_uint] = ACTIONS(1113), + [anon_sym_c_long] = ACTIONS(1113), + [anon_sym_c_ulong] = ACTIONS(1113), + [anon_sym_c_longlong] = ACTIONS(1113), + [anon_sym_c_ulonglong] = ACTIONS(1113), + [anon_sym_c_float] = ACTIONS(1113), + [anon_sym_c_double] = ACTIONS(1113), + [anon_sym_c_longdouble] = ACTIONS(1113), + [anon_sym_PLUS_EQ] = ACTIONS(1111), + [anon_sym_DASH_EQ] = ACTIONS(1111), + [anon_sym_STAR_EQ] = ACTIONS(1111), + [anon_sym_SLASH_EQ] = ACTIONS(1111), + [anon_sym_return] = ACTIONS(1113), + [anon_sym_yield] = ACTIONS(1113), + [anon_sym_COLON] = ACTIONS(1111), + [anon_sym_break] = ACTIONS(1113), + [anon_sym_continue] = ACTIONS(1113), + [anon_sym_defer] = ACTIONS(1113), + [anon_sym_errdefer] = ACTIONS(1113), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1113), + [anon_sym_while] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1113), + [anon_sym_DOT_DOT] = ACTIONS(1113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1111), + [anon_sym_orelse] = ACTIONS(1113), + [anon_sym_catch] = ACTIONS(1113), + [anon_sym_or] = ACTIONS(1113), + [anon_sym_and] = ACTIONS(1113), + [anon_sym_EQ_EQ] = ACTIONS(1111), + [anon_sym_BANG_EQ] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1113), + [anon_sym_GT_EQ] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_SLASH] = ACTIONS(1113), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_try] = ACTIONS(1113), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(1113), + [anon_sym_false] = ACTIONS(1113), + [sym_none] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1113), + [sym_sink] = ACTIONS(1113), + [sym_integer] = ACTIONS(1113), + [sym_float] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1111), + [sym_multiline_string] = ACTIONS(1111), + [sym_character] = ACTIONS(1111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1117), + [sym__newline] = ACTIONS(1111), }, [STATE(447)] = { + [ts_builtin_sym_end] = ACTIONS(1115), + [sym_identifier] = ACTIONS(1117), + [anon_sym_COLON_COLON] = ACTIONS(1115), + [anon_sym_import] = ACTIONS(1117), + [anon_sym_hide] = ACTIONS(1117), + [anon_sym_func] = ACTIONS(1117), + [anon_sym_BANG] = ACTIONS(1119), + [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_struct] = ACTIONS(1117), + [anon_sym_LPAREN] = ACTIONS(1115), + [anon_sym_RPAREN] = ACTIONS(1115), + [anon_sym_LBRACE] = ACTIONS(1115), + [anon_sym_COMMA] = ACTIONS(1115), + [anon_sym_RBRACE] = ACTIONS(1115), + [anon_sym_DASH] = ACTIONS(1117), + [anon_sym_DOLLAR] = ACTIONS(1115), + [anon_sym_PIPE] = ACTIONS(1115), + [anon_sym_QMARK] = ACTIONS(1115), + [anon_sym_STAR] = ACTIONS(1117), + [anon_sym_LBRACK] = ACTIONS(1115), + [anon_sym_SEMI] = ACTIONS(1115), + [anon_sym_RBRACK] = ACTIONS(1115), + [anon_sym_void] = ACTIONS(1117), + [anon_sym_anyopaque] = ACTIONS(1117), + [anon_sym_bool] = ACTIONS(1117), + [anon_sym_int] = ACTIONS(1117), + [anon_sym_float] = ACTIONS(1117), + [anon_sym_range] = ACTIONS(1117), + [anon_sym_i8] = ACTIONS(1117), + [anon_sym_i16] = ACTIONS(1117), + [anon_sym_i32] = ACTIONS(1117), + [anon_sym_i64] = ACTIONS(1117), + [anon_sym_u8] = ACTIONS(1117), + [anon_sym_u16] = ACTIONS(1117), + [anon_sym_u32] = ACTIONS(1117), + [anon_sym_u64] = ACTIONS(1117), + [anon_sym_isize] = ACTIONS(1117), + [anon_sym_usize] = ACTIONS(1117), + [anon_sym_f32] = ACTIONS(1117), + [anon_sym_f64] = ACTIONS(1117), + [anon_sym_c_char] = ACTIONS(1117), + [anon_sym_c_schar] = ACTIONS(1117), + [anon_sym_c_uchar] = ACTIONS(1117), + [anon_sym_c_short] = ACTIONS(1117), + [anon_sym_c_ushort] = ACTIONS(1117), + [anon_sym_c_int] = ACTIONS(1117), + [anon_sym_c_uint] = ACTIONS(1117), + [anon_sym_c_long] = ACTIONS(1117), + [anon_sym_c_ulong] = ACTIONS(1117), + [anon_sym_c_longlong] = ACTIONS(1117), + [anon_sym_c_ulonglong] = ACTIONS(1117), + [anon_sym_c_float] = ACTIONS(1117), + [anon_sym_c_double] = ACTIONS(1117), + [anon_sym_c_longdouble] = ACTIONS(1117), + [anon_sym_PLUS_EQ] = ACTIONS(1115), + [anon_sym_DASH_EQ] = ACTIONS(1115), + [anon_sym_STAR_EQ] = ACTIONS(1115), + [anon_sym_SLASH_EQ] = ACTIONS(1115), + [anon_sym_return] = ACTIONS(1117), + [anon_sym_yield] = ACTIONS(1117), + [anon_sym_COLON] = ACTIONS(1117), + [anon_sym_break] = ACTIONS(1117), + [anon_sym_continue] = ACTIONS(1117), + [anon_sym_defer] = ACTIONS(1117), + [anon_sym_errdefer] = ACTIONS(1117), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_else] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1117), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_match] = ACTIONS(1117), + [anon_sym_DOT_DOT] = ACTIONS(1117), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1115), + [anon_sym_orelse] = ACTIONS(1117), + [anon_sym_catch] = ACTIONS(1117), + [anon_sym_or] = ACTIONS(1117), + [anon_sym_and] = ACTIONS(1117), + [anon_sym_EQ_EQ] = ACTIONS(1115), + [anon_sym_BANG_EQ] = ACTIONS(1115), + [anon_sym_LT] = ACTIONS(1117), + [anon_sym_LT_EQ] = ACTIONS(1115), + [anon_sym_GT] = ACTIONS(1117), + [anon_sym_GT_EQ] = ACTIONS(1115), + [anon_sym_PLUS] = ACTIONS(1117), + [anon_sym_SLASH] = ACTIONS(1117), + [anon_sym_AMP] = ACTIONS(1115), + [anon_sym_try] = ACTIONS(1117), + [anon_sym_DOT] = ACTIONS(1117), + [anon_sym_CARET] = ACTIONS(1115), + [anon_sym_true] = ACTIONS(1117), + [anon_sym_false] = ACTIONS(1117), + [sym_none] = ACTIONS(1117), + [sym_undefined] = ACTIONS(1117), + [sym_sink] = ACTIONS(1117), + [sym_integer] = ACTIONS(1117), + [sym_float] = ACTIONS(1115), + [anon_sym_DQUOTE] = ACTIONS(1115), + [sym_multiline_string] = ACTIONS(1115), + [sym_character] = ACTIONS(1115), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1115), + }, + [STATE(448)] = { [ts_builtin_sym_end] = ACTIONS(1121), [sym_identifier] = ACTIONS(1123), [anon_sym_COLON_COLON] = ACTIONS(1121), [anon_sym_import] = ACTIONS(1123), + [anon_sym_hide] = ACTIONS(1123), [anon_sym_func] = ACTIONS(1123), [anon_sym_BANG] = ACTIONS(1123), [anon_sym_EQ] = ACTIONS(1123), @@ -57203,11 +57584,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1121), }, - [STATE(448)] = { + [STATE(449)] = { [ts_builtin_sym_end] = ACTIONS(1125), [sym_identifier] = ACTIONS(1127), [anon_sym_COLON_COLON] = ACTIONS(1125), [anon_sym_import] = ACTIONS(1127), + [anon_sym_hide] = ACTIONS(1127), [anon_sym_func] = ACTIONS(1127), [anon_sym_BANG] = ACTIONS(1127), [anon_sym_EQ] = ACTIONS(1127), @@ -57304,11 +57686,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1125), }, - [STATE(449)] = { + [STATE(450)] = { [ts_builtin_sym_end] = ACTIONS(1129), [sym_identifier] = ACTIONS(1131), [anon_sym_COLON_COLON] = ACTIONS(1129), [anon_sym_import] = ACTIONS(1131), + [anon_sym_hide] = ACTIONS(1131), [anon_sym_func] = ACTIONS(1131), [anon_sym_BANG] = ACTIONS(1131), [anon_sym_EQ] = ACTIONS(1131), @@ -57405,11 +57788,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1129), }, - [STATE(450)] = { + [STATE(451)] = { [ts_builtin_sym_end] = ACTIONS(1133), [sym_identifier] = ACTIONS(1135), [anon_sym_COLON_COLON] = ACTIONS(1133), [anon_sym_import] = ACTIONS(1135), + [anon_sym_hide] = ACTIONS(1135), [anon_sym_func] = ACTIONS(1135), [anon_sym_BANG] = ACTIONS(1135), [anon_sym_EQ] = ACTIONS(1135), @@ -57506,11 +57890,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1133), }, - [STATE(451)] = { + [STATE(452)] = { [ts_builtin_sym_end] = ACTIONS(1137), [sym_identifier] = ACTIONS(1139), [anon_sym_COLON_COLON] = ACTIONS(1137), [anon_sym_import] = ACTIONS(1139), + [anon_sym_hide] = ACTIONS(1139), [anon_sym_func] = ACTIONS(1139), [anon_sym_BANG] = ACTIONS(1139), [anon_sym_EQ] = ACTIONS(1139), @@ -57607,11 +57992,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1137), }, - [STATE(452)] = { + [STATE(453)] = { [ts_builtin_sym_end] = ACTIONS(1141), [sym_identifier] = ACTIONS(1143), [anon_sym_COLON_COLON] = ACTIONS(1141), [anon_sym_import] = ACTIONS(1143), + [anon_sym_hide] = ACTIONS(1143), [anon_sym_func] = ACTIONS(1143), [anon_sym_BANG] = ACTIONS(1143), [anon_sym_EQ] = ACTIONS(1143), @@ -57708,11 +58094,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1141), }, - [STATE(453)] = { + [STATE(454)] = { [ts_builtin_sym_end] = ACTIONS(1145), [sym_identifier] = ACTIONS(1147), [anon_sym_COLON_COLON] = ACTIONS(1145), [anon_sym_import] = ACTIONS(1147), + [anon_sym_hide] = ACTIONS(1147), [anon_sym_func] = ACTIONS(1147), [anon_sym_BANG] = ACTIONS(1147), [anon_sym_EQ] = ACTIONS(1147), @@ -57809,11 +58196,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1145), }, - [STATE(454)] = { + [STATE(455)] = { [ts_builtin_sym_end] = ACTIONS(1149), [sym_identifier] = ACTIONS(1151), [anon_sym_COLON_COLON] = ACTIONS(1149), [anon_sym_import] = ACTIONS(1151), + [anon_sym_hide] = ACTIONS(1151), [anon_sym_func] = ACTIONS(1151), [anon_sym_BANG] = ACTIONS(1151), [anon_sym_EQ] = ACTIONS(1151), @@ -57910,11 +58298,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1149), }, - [STATE(455)] = { + [STATE(456)] = { [ts_builtin_sym_end] = ACTIONS(1153), [sym_identifier] = ACTIONS(1155), [anon_sym_COLON_COLON] = ACTIONS(1153), [anon_sym_import] = ACTIONS(1155), + [anon_sym_hide] = ACTIONS(1155), [anon_sym_func] = ACTIONS(1155), [anon_sym_BANG] = ACTIONS(1155), [anon_sym_EQ] = ACTIONS(1155), @@ -58011,11 +58400,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1153), }, - [STATE(456)] = { + [STATE(457)] = { [ts_builtin_sym_end] = ACTIONS(1157), [sym_identifier] = ACTIONS(1159), [anon_sym_COLON_COLON] = ACTIONS(1157), [anon_sym_import] = ACTIONS(1159), + [anon_sym_hide] = ACTIONS(1159), [anon_sym_func] = ACTIONS(1159), [anon_sym_BANG] = ACTIONS(1159), [anon_sym_EQ] = ACTIONS(1159), @@ -58112,11 +58502,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1157), }, - [STATE(457)] = { + [STATE(458)] = { [ts_builtin_sym_end] = ACTIONS(1161), [sym_identifier] = ACTIONS(1163), [anon_sym_COLON_COLON] = ACTIONS(1161), [anon_sym_import] = ACTIONS(1163), + [anon_sym_hide] = ACTIONS(1163), [anon_sym_func] = ACTIONS(1163), [anon_sym_BANG] = ACTIONS(1163), [anon_sym_EQ] = ACTIONS(1163), @@ -58213,112 +58604,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1161), }, - [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(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_hide] = ACTIONS(1167), [anon_sym_func] = ACTIONS(1167), [anon_sym_BANG] = ACTIONS(1167), [anon_sym_EQ] = ACTIONS(1167), @@ -58420,6 +58711,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(1171), [anon_sym_COLON_COLON] = ACTIONS(1169), [anon_sym_import] = ACTIONS(1171), + [anon_sym_hide] = ACTIONS(1171), [anon_sym_func] = ACTIONS(1171), [anon_sym_BANG] = ACTIONS(1171), [anon_sym_EQ] = ACTIONS(1171), @@ -58519,7 +58811,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(461)] = { [ts_builtin_sym_end] = ACTIONS(1173), [sym_identifier] = ACTIONS(1175), + [anon_sym_COLON_COLON] = ACTIONS(1173), [anon_sym_import] = ACTIONS(1175), + [anon_sym_hide] = ACTIONS(1175), [anon_sym_func] = ACTIONS(1175), [anon_sym_BANG] = ACTIONS(1175), [anon_sym_EQ] = ACTIONS(1175), @@ -58575,7 +58869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(1173), [anon_sym_return] = ACTIONS(1175), [anon_sym_yield] = ACTIONS(1175), - [anon_sym_COLON] = ACTIONS(1173), + [anon_sym_COLON] = ACTIONS(1175), [anon_sym_break] = ACTIONS(1175), [anon_sym_continue] = ACTIONS(1175), [anon_sym_defer] = ACTIONS(1175), @@ -58619,7 +58913,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(462)] = { [ts_builtin_sym_end] = ACTIONS(1177), [sym_identifier] = ACTIONS(1179), + [anon_sym_COLON_COLON] = ACTIONS(1177), [anon_sym_import] = ACTIONS(1179), + [anon_sym_hide] = ACTIONS(1179), [anon_sym_func] = ACTIONS(1179), [anon_sym_BANG] = ACTIONS(1179), [anon_sym_EQ] = ACTIONS(1179), @@ -58675,7 +58971,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(1177), [anon_sym_return] = ACTIONS(1179), [anon_sym_yield] = ACTIONS(1179), - [anon_sym_COLON] = ACTIONS(1177), + [anon_sym_COLON] = ACTIONS(1179), [anon_sym_break] = ACTIONS(1179), [anon_sym_continue] = ACTIONS(1179), [anon_sym_defer] = ACTIONS(1179), @@ -58720,6 +59016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [ts_builtin_sym_end] = ACTIONS(1181), [sym_identifier] = ACTIONS(1183), [anon_sym_import] = ACTIONS(1183), + [anon_sym_hide] = ACTIONS(1183), [anon_sym_func] = ACTIONS(1183), [anon_sym_BANG] = ACTIONS(1183), [anon_sym_EQ] = ACTIONS(1183), @@ -58820,6 +59117,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [ts_builtin_sym_end] = ACTIONS(1185), [sym_identifier] = ACTIONS(1187), [anon_sym_import] = ACTIONS(1187), + [anon_sym_hide] = ACTIONS(1187), [anon_sym_func] = ACTIONS(1187), [anon_sym_BANG] = ACTIONS(1187), [anon_sym_EQ] = ACTIONS(1187), @@ -58917,209 +59215,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1185), }, [STATE(465)] = { - [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(700), - }, - [STATE(466)] = { - [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(754), - }, - [STATE(467)] = { [ts_builtin_sym_end] = ACTIONS(1189), [sym_identifier] = ACTIONS(1191), [anon_sym_import] = ACTIONS(1191), + [anon_sym_hide] = ACTIONS(1191), [anon_sym_func] = ACTIONS(1191), [anon_sym_BANG] = ACTIONS(1191), [anon_sym_EQ] = ACTIONS(1191), @@ -59216,10 +59315,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1189), }, - [STATE(468)] = { + [STATE(466)] = { [ts_builtin_sym_end] = ACTIONS(1193), [sym_identifier] = ACTIONS(1195), [anon_sym_import] = ACTIONS(1195), + [anon_sym_hide] = ACTIONS(1195), [anon_sym_func] = ACTIONS(1195), [anon_sym_BANG] = ACTIONS(1195), [anon_sym_EQ] = ACTIONS(1195), @@ -59316,110 +59416,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1193), }, - [STATE(469)] = { - [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(610), - }, - [STATE(470)] = { + [STATE(467)] = { [ts_builtin_sym_end] = ACTIONS(1197), [sym_identifier] = ACTIONS(1199), [anon_sym_import] = ACTIONS(1199), + [anon_sym_hide] = ACTIONS(1199), [anon_sym_func] = ACTIONS(1199), [anon_sym_BANG] = ACTIONS(1199), [anon_sym_EQ] = ACTIONS(1199), @@ -59516,10 +59517,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1197), }, - [STATE(471)] = { + [STATE(468)] = { [ts_builtin_sym_end] = ACTIONS(1201), [sym_identifier] = ACTIONS(1203), [anon_sym_import] = ACTIONS(1203), + [anon_sym_hide] = ACTIONS(1203), [anon_sym_func] = ACTIONS(1203), [anon_sym_BANG] = ACTIONS(1203), [anon_sym_EQ] = ACTIONS(1203), @@ -59616,10 +59618,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1201), }, - [STATE(472)] = { + [STATE(469)] = { [ts_builtin_sym_end] = ACTIONS(1205), [sym_identifier] = ACTIONS(1207), [anon_sym_import] = ACTIONS(1207), + [anon_sym_hide] = ACTIONS(1207), [anon_sym_func] = ACTIONS(1207), [anon_sym_BANG] = ACTIONS(1207), [anon_sym_EQ] = ACTIONS(1207), @@ -59716,10 +59719,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1205), }, - [STATE(473)] = { + [STATE(470)] = { [ts_builtin_sym_end] = ACTIONS(1209), [sym_identifier] = ACTIONS(1211), [anon_sym_import] = ACTIONS(1211), + [anon_sym_hide] = ACTIONS(1211), [anon_sym_func] = ACTIONS(1211), [anon_sym_BANG] = ACTIONS(1211), [anon_sym_EQ] = ACTIONS(1211), @@ -59816,10 +59820,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1209), }, - [STATE(474)] = { + [STATE(471)] = { [ts_builtin_sym_end] = ACTIONS(1213), [sym_identifier] = ACTIONS(1215), [anon_sym_import] = ACTIONS(1215), + [anon_sym_hide] = ACTIONS(1215), [anon_sym_func] = ACTIONS(1215), [anon_sym_BANG] = ACTIONS(1215), [anon_sym_EQ] = ACTIONS(1215), @@ -59916,10 +59921,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1213), }, - [STATE(475)] = { + [STATE(472)] = { [ts_builtin_sym_end] = ACTIONS(1217), [sym_identifier] = ACTIONS(1219), [anon_sym_import] = ACTIONS(1219), + [anon_sym_hide] = ACTIONS(1219), [anon_sym_func] = ACTIONS(1219), [anon_sym_BANG] = ACTIONS(1219), [anon_sym_EQ] = ACTIONS(1219), @@ -60016,10 +60022,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1217), }, - [STATE(476)] = { + [STATE(473)] = { [ts_builtin_sym_end] = ACTIONS(1221), [sym_identifier] = ACTIONS(1223), [anon_sym_import] = ACTIONS(1223), + [anon_sym_hide] = ACTIONS(1223), [anon_sym_func] = ACTIONS(1223), [anon_sym_BANG] = ACTIONS(1223), [anon_sym_EQ] = ACTIONS(1223), @@ -60116,10 +60123,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1221), }, - [STATE(477)] = { + [STATE(474)] = { [ts_builtin_sym_end] = ACTIONS(1225), [sym_identifier] = ACTIONS(1227), [anon_sym_import] = ACTIONS(1227), + [anon_sym_hide] = ACTIONS(1227), [anon_sym_func] = ACTIONS(1227), [anon_sym_BANG] = ACTIONS(1227), [anon_sym_EQ] = ACTIONS(1227), @@ -60216,10 +60224,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1225), }, - [STATE(478)] = { + [STATE(475)] = { [ts_builtin_sym_end] = ACTIONS(1229), [sym_identifier] = ACTIONS(1231), [anon_sym_import] = ACTIONS(1231), + [anon_sym_hide] = ACTIONS(1231), [anon_sym_func] = ACTIONS(1231), [anon_sym_BANG] = ACTIONS(1231), [anon_sym_EQ] = ACTIONS(1231), @@ -60316,10 +60325,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1229), }, - [STATE(479)] = { + [STATE(476)] = { + [ts_builtin_sym_end] = ACTIONS(859), + [sym_identifier] = ACTIONS(854), + [anon_sym_import] = ACTIONS(854), + [anon_sym_hide] = ACTIONS(854), + [anon_sym_func] = ACTIONS(854), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_struct] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(859), + [anon_sym_RPAREN] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(859), + [anon_sym_COMMA] = ACTIONS(859), + [anon_sym_RBRACE] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_DOLLAR] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(859), + [anon_sym_RBRACK] = ACTIONS(859), + [anon_sym_void] = ACTIONS(854), + [anon_sym_anyopaque] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_int] = ACTIONS(854), + [anon_sym_float] = ACTIONS(854), + [anon_sym_range] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_c_char] = ACTIONS(854), + [anon_sym_c_schar] = ACTIONS(854), + [anon_sym_c_uchar] = ACTIONS(854), + [anon_sym_c_short] = ACTIONS(854), + [anon_sym_c_ushort] = ACTIONS(854), + [anon_sym_c_int] = ACTIONS(854), + [anon_sym_c_uint] = ACTIONS(854), + [anon_sym_c_long] = ACTIONS(854), + [anon_sym_c_ulong] = ACTIONS(854), + [anon_sym_c_longlong] = ACTIONS(854), + [anon_sym_c_ulonglong] = ACTIONS(854), + [anon_sym_c_float] = ACTIONS(854), + [anon_sym_c_double] = ACTIONS(854), + [anon_sym_c_longdouble] = ACTIONS(854), + [anon_sym_PLUS_EQ] = ACTIONS(859), + [anon_sym_DASH_EQ] = ACTIONS(859), + [anon_sym_STAR_EQ] = ACTIONS(859), + [anon_sym_SLASH_EQ] = ACTIONS(859), + [anon_sym_return] = ACTIONS(854), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(859), + [anon_sym_break] = ACTIONS(854), + [anon_sym_continue] = ACTIONS(854), + [anon_sym_defer] = ACTIONS(854), + [anon_sym_errdefer] = ACTIONS(854), + [anon_sym_if] = ACTIONS(854), + [anon_sym_else] = ACTIONS(854), + [anon_sym_while] = ACTIONS(854), + [anon_sym_for] = ACTIONS(854), + [anon_sym_match] = ACTIONS(854), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(859), + [anon_sym_orelse] = ACTIONS(854), + [anon_sym_catch] = ACTIONS(854), + [anon_sym_or] = ACTIONS(854), + [anon_sym_and] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(854), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(854), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(859), + [anon_sym_try] = ACTIONS(854), + [anon_sym_DOT] = ACTIONS(854), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_true] = ACTIONS(854), + [anon_sym_false] = ACTIONS(854), + [sym_none] = ACTIONS(854), + [sym_undefined] = ACTIONS(854), + [sym_sink] = ACTIONS(854), + [sym_integer] = ACTIONS(854), + [sym_float] = ACTIONS(859), + [anon_sym_DQUOTE] = ACTIONS(859), + [sym_multiline_string] = ACTIONS(859), + [sym_character] = ACTIONS(859), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(859), + }, + [STATE(477)] = { [ts_builtin_sym_end] = ACTIONS(1233), [sym_identifier] = ACTIONS(1235), [anon_sym_import] = ACTIONS(1235), + [anon_sym_hide] = ACTIONS(1235), [anon_sym_func] = ACTIONS(1235), [anon_sym_BANG] = ACTIONS(1235), [anon_sym_EQ] = ACTIONS(1235), @@ -60416,10 +60527,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1233), }, - [STATE(480)] = { + [STATE(478)] = { [ts_builtin_sym_end] = ACTIONS(1237), [sym_identifier] = ACTIONS(1239), [anon_sym_import] = ACTIONS(1239), + [anon_sym_hide] = ACTIONS(1239), [anon_sym_func] = ACTIONS(1239), [anon_sym_BANG] = ACTIONS(1239), [anon_sym_EQ] = ACTIONS(1239), @@ -60516,10 +60628,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1237), }, - [STATE(481)] = { + [STATE(479)] = { [ts_builtin_sym_end] = ACTIONS(1241), [sym_identifier] = ACTIONS(1243), [anon_sym_import] = ACTIONS(1243), + [anon_sym_hide] = ACTIONS(1243), [anon_sym_func] = ACTIONS(1243), [anon_sym_BANG] = ACTIONS(1243), [anon_sym_EQ] = ACTIONS(1243), @@ -60616,10 +60729,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1241), }, - [STATE(482)] = { + [STATE(480)] = { [ts_builtin_sym_end] = ACTIONS(1245), [sym_identifier] = ACTIONS(1247), [anon_sym_import] = ACTIONS(1247), + [anon_sym_hide] = ACTIONS(1247), [anon_sym_func] = ACTIONS(1247), [anon_sym_BANG] = ACTIONS(1247), [anon_sym_EQ] = ACTIONS(1247), @@ -60716,10 +60830,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1245), }, - [STATE(483)] = { + [STATE(481)] = { [ts_builtin_sym_end] = ACTIONS(1249), [sym_identifier] = ACTIONS(1251), [anon_sym_import] = ACTIONS(1251), + [anon_sym_hide] = ACTIONS(1251), [anon_sym_func] = ACTIONS(1251), [anon_sym_BANG] = ACTIONS(1251), [anon_sym_EQ] = ACTIONS(1251), @@ -60816,10 +60931,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1249), }, - [STATE(484)] = { + [STATE(482)] = { [ts_builtin_sym_end] = ACTIONS(1253), [sym_identifier] = ACTIONS(1255), [anon_sym_import] = ACTIONS(1255), + [anon_sym_hide] = ACTIONS(1255), [anon_sym_func] = ACTIONS(1255), [anon_sym_BANG] = ACTIONS(1255), [anon_sym_EQ] = ACTIONS(1255), @@ -60916,10 +61032,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1253), }, - [STATE(485)] = { + [STATE(483)] = { [ts_builtin_sym_end] = ACTIONS(1257), [sym_identifier] = ACTIONS(1259), [anon_sym_import] = ACTIONS(1259), + [anon_sym_hide] = ACTIONS(1259), [anon_sym_func] = ACTIONS(1259), [anon_sym_BANG] = ACTIONS(1259), [anon_sym_EQ] = ACTIONS(1259), @@ -61016,10 +61133,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1257), }, - [STATE(486)] = { + [STATE(484)] = { + [ts_builtin_sym_end] = ACTIONS(337), + [sym_identifier] = ACTIONS(341), + [anon_sym_import] = ACTIONS(341), + [anon_sym_hide] = 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(337), + [anon_sym_RPAREN] = ACTIONS(337), + [anon_sym_LBRACE] = ACTIONS(337), + [anon_sym_COMMA] = ACTIONS(337), + [anon_sym_RBRACE] = ACTIONS(337), + [anon_sym_DASH] = ACTIONS(341), + [anon_sym_DOLLAR] = ACTIONS(337), + [anon_sym_PIPE] = ACTIONS(337), + [anon_sym_QMARK] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(337), + [anon_sym_SEMI] = ACTIONS(337), + [anon_sym_RBRACK] = ACTIONS(337), + [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(337), + [anon_sym_DASH_EQ] = ACTIONS(337), + [anon_sym_STAR_EQ] = ACTIONS(337), + [anon_sym_SLASH_EQ] = ACTIONS(337), + [anon_sym_return] = ACTIONS(341), + [anon_sym_yield] = ACTIONS(341), + [anon_sym_COLON] = ACTIONS(337), + [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(337), + [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(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_LT_EQ] = ACTIONS(337), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(337), + [anon_sym_PLUS] = ACTIONS(341), + [anon_sym_SLASH] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_try] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(341), + [anon_sym_CARET] = ACTIONS(337), + [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(337), + [anon_sym_DQUOTE] = ACTIONS(337), + [sym_multiline_string] = ACTIONS(337), + [sym_character] = ACTIONS(337), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(337), + }, + [STATE(485)] = { [ts_builtin_sym_end] = ACTIONS(1261), [sym_identifier] = ACTIONS(1263), [anon_sym_import] = ACTIONS(1263), + [anon_sym_hide] = ACTIONS(1263), [anon_sym_func] = ACTIONS(1263), [anon_sym_BANG] = ACTIONS(1263), [anon_sym_EQ] = ACTIONS(1263), @@ -61116,10 +61335,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1261), }, - [STATE(487)] = { + [STATE(486)] = { [ts_builtin_sym_end] = ACTIONS(1265), [sym_identifier] = ACTIONS(1267), [anon_sym_import] = ACTIONS(1267), + [anon_sym_hide] = ACTIONS(1267), [anon_sym_func] = ACTIONS(1267), [anon_sym_BANG] = ACTIONS(1267), [anon_sym_EQ] = ACTIONS(1267), @@ -61216,110 +61436,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1265), }, - [STATE(488)] = { - [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(351), - }, - [STATE(489)] = { + [STATE(487)] = { [ts_builtin_sym_end] = ACTIONS(1269), [sym_identifier] = ACTIONS(1271), [anon_sym_import] = ACTIONS(1271), + [anon_sym_hide] = ACTIONS(1271), [anon_sym_func] = ACTIONS(1271), [anon_sym_BANG] = ACTIONS(1271), [anon_sym_EQ] = ACTIONS(1271), @@ -61416,10 +61537,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1269), }, - [STATE(490)] = { + [STATE(488)] = { [ts_builtin_sym_end] = ACTIONS(1273), [sym_identifier] = ACTIONS(1275), [anon_sym_import] = ACTIONS(1275), + [anon_sym_hide] = ACTIONS(1275), [anon_sym_func] = ACTIONS(1275), [anon_sym_BANG] = ACTIONS(1275), [anon_sym_EQ] = ACTIONS(1275), @@ -61516,110 +61638,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1273), }, - [STATE(491)] = { - [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), + [STATE(489)] = { + [ts_builtin_sym_end] = ACTIONS(285), + [sym_identifier] = ACTIONS(279), + [anon_sym_import] = ACTIONS(279), + [anon_sym_hide] = ACTIONS(279), + [anon_sym_func] = ACTIONS(279), + [anon_sym_BANG] = ACTIONS(279), + [anon_sym_EQ] = ACTIONS(279), + [anon_sym_struct] = ACTIONS(279), + [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(279), + [anon_sym_DOLLAR] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_QMARK] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(279), + [anon_sym_LBRACK] = ACTIONS(285), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_RBRACK] = ACTIONS(285), + [anon_sym_void] = ACTIONS(279), + [anon_sym_anyopaque] = ACTIONS(279), + [anon_sym_bool] = ACTIONS(279), + [anon_sym_int] = ACTIONS(279), + [anon_sym_float] = ACTIONS(279), + [anon_sym_range] = ACTIONS(279), + [anon_sym_i8] = ACTIONS(279), + [anon_sym_i16] = ACTIONS(279), + [anon_sym_i32] = ACTIONS(279), + [anon_sym_i64] = ACTIONS(279), + [anon_sym_u8] = ACTIONS(279), + [anon_sym_u16] = ACTIONS(279), + [anon_sym_u32] = ACTIONS(279), + [anon_sym_u64] = ACTIONS(279), + [anon_sym_isize] = ACTIONS(279), + [anon_sym_usize] = ACTIONS(279), + [anon_sym_f32] = ACTIONS(279), + [anon_sym_f64] = ACTIONS(279), + [anon_sym_c_char] = ACTIONS(279), + [anon_sym_c_schar] = ACTIONS(279), + [anon_sym_c_uchar] = ACTIONS(279), + [anon_sym_c_short] = ACTIONS(279), + [anon_sym_c_ushort] = ACTIONS(279), + [anon_sym_c_int] = ACTIONS(279), + [anon_sym_c_uint] = ACTIONS(279), + [anon_sym_c_long] = ACTIONS(279), + [anon_sym_c_ulong] = ACTIONS(279), + [anon_sym_c_longlong] = ACTIONS(279), + [anon_sym_c_ulonglong] = ACTIONS(279), + [anon_sym_c_float] = ACTIONS(279), + [anon_sym_c_double] = ACTIONS(279), + [anon_sym_c_longdouble] = ACTIONS(279), + [anon_sym_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(279), + [anon_sym_yield] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(285), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(279), + [anon_sym_defer] = ACTIONS(279), + [anon_sym_errdefer] = ACTIONS(279), + [anon_sym_if] = ACTIONS(279), + [anon_sym_else] = ACTIONS(279), + [anon_sym_while] = ACTIONS(279), + [anon_sym_for] = ACTIONS(279), + [anon_sym_match] = ACTIONS(279), + [anon_sym_DOT_DOT] = ACTIONS(279), + [anon_sym_DOT_DOT_EQ] = ACTIONS(285), + [anon_sym_orelse] = ACTIONS(279), + [anon_sym_catch] = ACTIONS(279), + [anon_sym_or] = ACTIONS(279), + [anon_sym_and] = ACTIONS(279), + [anon_sym_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(279), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(279), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_SLASH] = ACTIONS(279), + [anon_sym_AMP] = ACTIONS(285), + [anon_sym_try] = ACTIONS(279), + [anon_sym_DOT] = ACTIONS(279), + [anon_sym_CARET] = ACTIONS(285), + [anon_sym_true] = ACTIONS(279), + [anon_sym_false] = ACTIONS(279), + [sym_none] = ACTIONS(279), + [sym_undefined] = ACTIONS(279), + [sym_sink] = ACTIONS(279), + [sym_integer] = ACTIONS(279), + [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(606), + [sym__newline] = ACTIONS(285), }, - [STATE(492)] = { + [STATE(490)] = { [ts_builtin_sym_end] = ACTIONS(1277), [sym_identifier] = ACTIONS(1279), [anon_sym_import] = ACTIONS(1279), + [anon_sym_hide] = ACTIONS(1279), [anon_sym_func] = ACTIONS(1279), [anon_sym_BANG] = ACTIONS(1279), [anon_sym_EQ] = ACTIONS(1279), @@ -61716,10 +61840,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1277), }, - [STATE(493)] = { + [STATE(491)] = { [ts_builtin_sym_end] = ACTIONS(1281), [sym_identifier] = ACTIONS(1283), [anon_sym_import] = ACTIONS(1283), + [anon_sym_hide] = ACTIONS(1283), [anon_sym_func] = ACTIONS(1283), [anon_sym_BANG] = ACTIONS(1283), [anon_sym_EQ] = ACTIONS(1283), @@ -61816,10 +61941,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1281), }, - [STATE(494)] = { + [STATE(492)] = { [ts_builtin_sym_end] = ACTIONS(1285), [sym_identifier] = ACTIONS(1287), [anon_sym_import] = ACTIONS(1287), + [anon_sym_hide] = ACTIONS(1287), [anon_sym_func] = ACTIONS(1287), [anon_sym_BANG] = ACTIONS(1287), [anon_sym_EQ] = ACTIONS(1287), @@ -61916,10 +62042,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1285), }, - [STATE(495)] = { + [STATE(493)] = { [ts_builtin_sym_end] = ACTIONS(1289), [sym_identifier] = ACTIONS(1291), [anon_sym_import] = ACTIONS(1291), + [anon_sym_hide] = ACTIONS(1291), [anon_sym_func] = ACTIONS(1291), [anon_sym_BANG] = ACTIONS(1291), [anon_sym_EQ] = ACTIONS(1291), @@ -62016,10 +62143,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1289), }, - [STATE(496)] = { + [STATE(494)] = { [ts_builtin_sym_end] = ACTIONS(1293), [sym_identifier] = ACTIONS(1295), [anon_sym_import] = ACTIONS(1295), + [anon_sym_hide] = ACTIONS(1295), [anon_sym_func] = ACTIONS(1295), [anon_sym_BANG] = ACTIONS(1295), [anon_sym_EQ] = ACTIONS(1295), @@ -62116,10 +62244,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1293), }, - [STATE(497)] = { + [STATE(495)] = { [ts_builtin_sym_end] = ACTIONS(1297), [sym_identifier] = ACTIONS(1299), [anon_sym_import] = ACTIONS(1299), + [anon_sym_hide] = ACTIONS(1299), [anon_sym_func] = ACTIONS(1299), [anon_sym_BANG] = ACTIONS(1299), [anon_sym_EQ] = ACTIONS(1299), @@ -62216,10 +62345,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1297), }, - [STATE(498)] = { + [STATE(496)] = { [ts_builtin_sym_end] = ACTIONS(1301), [sym_identifier] = ACTIONS(1303), [anon_sym_import] = ACTIONS(1303), + [anon_sym_hide] = ACTIONS(1303), [anon_sym_func] = ACTIONS(1303), [anon_sym_BANG] = ACTIONS(1303), [anon_sym_EQ] = ACTIONS(1303), @@ -62316,10 +62446,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1301), }, - [STATE(499)] = { + [STATE(497)] = { [ts_builtin_sym_end] = ACTIONS(1305), [sym_identifier] = ACTIONS(1307), [anon_sym_import] = ACTIONS(1307), + [anon_sym_hide] = ACTIONS(1307), [anon_sym_func] = ACTIONS(1307), [anon_sym_BANG] = ACTIONS(1307), [anon_sym_EQ] = ACTIONS(1307), @@ -62416,10 +62547,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1305), }, - [STATE(500)] = { + [STATE(498)] = { [ts_builtin_sym_end] = ACTIONS(1309), [sym_identifier] = ACTIONS(1311), [anon_sym_import] = ACTIONS(1311), + [anon_sym_hide] = ACTIONS(1311), [anon_sym_func] = ACTIONS(1311), [anon_sym_BANG] = ACTIONS(1311), [anon_sym_EQ] = ACTIONS(1311), @@ -62516,10 +62648,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1309), }, - [STATE(501)] = { + [STATE(499)] = { [ts_builtin_sym_end] = ACTIONS(1313), [sym_identifier] = ACTIONS(1315), [anon_sym_import] = ACTIONS(1315), + [anon_sym_hide] = ACTIONS(1315), [anon_sym_func] = ACTIONS(1315), [anon_sym_BANG] = ACTIONS(1315), [anon_sym_EQ] = ACTIONS(1315), @@ -62616,10 +62749,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1313), }, - [STATE(502)] = { + [STATE(500)] = { [ts_builtin_sym_end] = ACTIONS(1317), [sym_identifier] = ACTIONS(1319), [anon_sym_import] = ACTIONS(1319), + [anon_sym_hide] = ACTIONS(1319), [anon_sym_func] = ACTIONS(1319), [anon_sym_BANG] = ACTIONS(1319), [anon_sym_EQ] = ACTIONS(1319), @@ -62716,10 +62850,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1317), }, - [STATE(503)] = { + [STATE(501)] = { [ts_builtin_sym_end] = ACTIONS(1321), [sym_identifier] = ACTIONS(1323), [anon_sym_import] = ACTIONS(1323), + [anon_sym_hide] = ACTIONS(1323), [anon_sym_func] = ACTIONS(1323), [anon_sym_BANG] = ACTIONS(1323), [anon_sym_EQ] = ACTIONS(1323), @@ -62816,10 +62951,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1321), }, - [STATE(504)] = { + [STATE(502)] = { [ts_builtin_sym_end] = ACTIONS(1325), [sym_identifier] = ACTIONS(1327), [anon_sym_import] = ACTIONS(1327), + [anon_sym_hide] = ACTIONS(1327), [anon_sym_func] = ACTIONS(1327), [anon_sym_BANG] = ACTIONS(1327), [anon_sym_EQ] = ACTIONS(1327), @@ -62916,10 +63052,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1325), }, - [STATE(505)] = { + [STATE(503)] = { [ts_builtin_sym_end] = ACTIONS(1329), [sym_identifier] = ACTIONS(1331), [anon_sym_import] = ACTIONS(1331), + [anon_sym_hide] = ACTIONS(1331), [anon_sym_func] = ACTIONS(1331), [anon_sym_BANG] = ACTIONS(1331), [anon_sym_EQ] = ACTIONS(1331), @@ -63016,10 +63153,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1329), }, - [STATE(506)] = { + [STATE(504)] = { [ts_builtin_sym_end] = ACTIONS(1333), [sym_identifier] = ACTIONS(1335), [anon_sym_import] = ACTIONS(1335), + [anon_sym_hide] = ACTIONS(1335), [anon_sym_func] = ACTIONS(1335), [anon_sym_BANG] = ACTIONS(1335), [anon_sym_EQ] = ACTIONS(1335), @@ -63116,10 +63254,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1333), }, - [STATE(507)] = { + [STATE(505)] = { [ts_builtin_sym_end] = ACTIONS(1337), [sym_identifier] = ACTIONS(1339), [anon_sym_import] = ACTIONS(1339), + [anon_sym_hide] = ACTIONS(1339), [anon_sym_func] = ACTIONS(1339), [anon_sym_BANG] = ACTIONS(1339), [anon_sym_EQ] = ACTIONS(1339), @@ -63216,10 +63355,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1337), }, - [STATE(508)] = { + [STATE(506)] = { [ts_builtin_sym_end] = ACTIONS(1341), [sym_identifier] = ACTIONS(1343), [anon_sym_import] = ACTIONS(1343), + [anon_sym_hide] = ACTIONS(1343), [anon_sym_func] = ACTIONS(1343), [anon_sym_BANG] = ACTIONS(1343), [anon_sym_EQ] = ACTIONS(1343), @@ -63316,10 +63456,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1341), }, - [STATE(509)] = { + [STATE(507)] = { [ts_builtin_sym_end] = ACTIONS(1345), [sym_identifier] = ACTIONS(1347), [anon_sym_import] = ACTIONS(1347), + [anon_sym_hide] = ACTIONS(1347), [anon_sym_func] = ACTIONS(1347), [anon_sym_BANG] = ACTIONS(1347), [anon_sym_EQ] = ACTIONS(1347), @@ -63416,10 +63557,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1345), }, - [STATE(510)] = { + [STATE(508)] = { [ts_builtin_sym_end] = ACTIONS(1349), [sym_identifier] = ACTIONS(1351), [anon_sym_import] = ACTIONS(1351), + [anon_sym_hide] = ACTIONS(1351), [anon_sym_func] = ACTIONS(1351), [anon_sym_BANG] = ACTIONS(1351), [anon_sym_EQ] = ACTIONS(1351), @@ -63516,10 +63658,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1349), }, - [STATE(511)] = { + [STATE(509)] = { [ts_builtin_sym_end] = ACTIONS(1353), [sym_identifier] = ACTIONS(1355), [anon_sym_import] = ACTIONS(1355), + [anon_sym_hide] = ACTIONS(1355), [anon_sym_func] = ACTIONS(1355), [anon_sym_BANG] = ACTIONS(1355), [anon_sym_EQ] = ACTIONS(1355), @@ -63616,10 +63759,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1353), }, - [STATE(512)] = { + [STATE(510)] = { [ts_builtin_sym_end] = ACTIONS(1357), [sym_identifier] = ACTIONS(1359), [anon_sym_import] = ACTIONS(1359), + [anon_sym_hide] = ACTIONS(1359), [anon_sym_func] = ACTIONS(1359), [anon_sym_BANG] = ACTIONS(1359), [anon_sym_EQ] = ACTIONS(1359), @@ -63716,10 +63860,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1357), }, - [STATE(513)] = { + [STATE(511)] = { [ts_builtin_sym_end] = ACTIONS(1361), [sym_identifier] = ACTIONS(1363), [anon_sym_import] = ACTIONS(1363), + [anon_sym_hide] = ACTIONS(1363), [anon_sym_func] = ACTIONS(1363), [anon_sym_BANG] = ACTIONS(1363), [anon_sym_EQ] = ACTIONS(1363), @@ -63816,10 +63961,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1361), }, - [STATE(514)] = { + [STATE(512)] = { [ts_builtin_sym_end] = ACTIONS(1365), [sym_identifier] = ACTIONS(1367), [anon_sym_import] = ACTIONS(1367), + [anon_sym_hide] = ACTIONS(1367), [anon_sym_func] = ACTIONS(1367), [anon_sym_BANG] = ACTIONS(1367), [anon_sym_EQ] = ACTIONS(1367), @@ -63916,10 +64062,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1365), }, - [STATE(515)] = { + [STATE(513)] = { + [ts_builtin_sym_end] = ACTIONS(401), + [sym_identifier] = ACTIONS(399), + [anon_sym_import] = ACTIONS(399), + [anon_sym_hide] = ACTIONS(399), + [anon_sym_func] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_struct] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(401), + [anon_sym_RBRACE] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_DOLLAR] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(401), + [anon_sym_RBRACK] = ACTIONS(401), + [anon_sym_void] = ACTIONS(399), + [anon_sym_anyopaque] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_int] = ACTIONS(399), + [anon_sym_float] = ACTIONS(399), + [anon_sym_range] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_isize] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_f32] = ACTIONS(399), + [anon_sym_f64] = ACTIONS(399), + [anon_sym_c_char] = ACTIONS(399), + [anon_sym_c_schar] = ACTIONS(399), + [anon_sym_c_uchar] = ACTIONS(399), + [anon_sym_c_short] = ACTIONS(399), + [anon_sym_c_ushort] = ACTIONS(399), + [anon_sym_c_int] = ACTIONS(399), + [anon_sym_c_uint] = ACTIONS(399), + [anon_sym_c_long] = ACTIONS(399), + [anon_sym_c_ulong] = ACTIONS(399), + [anon_sym_c_longlong] = ACTIONS(399), + [anon_sym_c_ulonglong] = ACTIONS(399), + [anon_sym_c_float] = ACTIONS(399), + [anon_sym_c_double] = ACTIONS(399), + [anon_sym_c_longdouble] = ACTIONS(399), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_return] = ACTIONS(399), + [anon_sym_yield] = ACTIONS(399), + [anon_sym_COLON] = ACTIONS(401), + [anon_sym_break] = ACTIONS(399), + [anon_sym_continue] = ACTIONS(399), + [anon_sym_defer] = ACTIONS(399), + [anon_sym_errdefer] = ACTIONS(399), + [anon_sym_if] = ACTIONS(399), + [anon_sym_else] = ACTIONS(399), + [anon_sym_while] = ACTIONS(399), + [anon_sym_for] = ACTIONS(399), + [anon_sym_match] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_orelse] = ACTIONS(399), + [anon_sym_catch] = ACTIONS(399), + [anon_sym_or] = ACTIONS(399), + [anon_sym_and] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_try] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_true] = ACTIONS(399), + [anon_sym_false] = ACTIONS(399), + [sym_none] = ACTIONS(399), + [sym_undefined] = ACTIONS(399), + [sym_sink] = ACTIONS(399), + [sym_integer] = ACTIONS(399), + [sym_float] = ACTIONS(401), + [anon_sym_DQUOTE] = ACTIONS(401), + [sym_multiline_string] = ACTIONS(401), + [sym_character] = ACTIONS(401), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(401), + }, + [STATE(514)] = { [ts_builtin_sym_end] = ACTIONS(1369), [sym_identifier] = ACTIONS(1371), [anon_sym_import] = ACTIONS(1371), + [anon_sym_hide] = ACTIONS(1371), [anon_sym_func] = ACTIONS(1371), [anon_sym_BANG] = ACTIONS(1371), [anon_sym_EQ] = ACTIONS(1371), @@ -64016,10 +64264,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1369), }, - [STATE(516)] = { + [STATE(515)] = { [ts_builtin_sym_end] = ACTIONS(1373), [sym_identifier] = ACTIONS(1375), [anon_sym_import] = ACTIONS(1375), + [anon_sym_hide] = ACTIONS(1375), [anon_sym_func] = ACTIONS(1375), [anon_sym_BANG] = ACTIONS(1375), [anon_sym_EQ] = ACTIONS(1375), @@ -64116,10 +64365,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1373), }, - [STATE(517)] = { + [STATE(516)] = { [ts_builtin_sym_end] = ACTIONS(1377), [sym_identifier] = ACTIONS(1379), [anon_sym_import] = ACTIONS(1379), + [anon_sym_hide] = ACTIONS(1379), [anon_sym_func] = ACTIONS(1379), [anon_sym_BANG] = ACTIONS(1379), [anon_sym_EQ] = ACTIONS(1379), @@ -64216,10 +64466,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1377), }, - [STATE(518)] = { + [STATE(517)] = { [ts_builtin_sym_end] = ACTIONS(1381), [sym_identifier] = ACTIONS(1383), [anon_sym_import] = ACTIONS(1383), + [anon_sym_hide] = ACTIONS(1383), [anon_sym_func] = ACTIONS(1383), [anon_sym_BANG] = ACTIONS(1383), [anon_sym_EQ] = ACTIONS(1383), @@ -64316,110 +64567,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1381), }, - [STATE(519)] = { - [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(345), - }, - [STATE(520)] = { + [STATE(518)] = { [ts_builtin_sym_end] = ACTIONS(1385), [sym_identifier] = ACTIONS(1387), [anon_sym_import] = ACTIONS(1387), + [anon_sym_hide] = ACTIONS(1387), [anon_sym_func] = ACTIONS(1387), [anon_sym_BANG] = ACTIONS(1387), [anon_sym_EQ] = ACTIONS(1387), @@ -64516,10 +64668,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1385), }, - [STATE(521)] = { + [STATE(519)] = { [ts_builtin_sym_end] = ACTIONS(1389), [sym_identifier] = ACTIONS(1391), [anon_sym_import] = ACTIONS(1391), + [anon_sym_hide] = ACTIONS(1391), [anon_sym_func] = ACTIONS(1391), [anon_sym_BANG] = ACTIONS(1391), [anon_sym_EQ] = ACTIONS(1391), @@ -64616,10 +64769,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1389), }, - [STATE(522)] = { + [STATE(520)] = { [ts_builtin_sym_end] = ACTIONS(1393), [sym_identifier] = ACTIONS(1395), [anon_sym_import] = ACTIONS(1395), + [anon_sym_hide] = ACTIONS(1395), [anon_sym_func] = ACTIONS(1395), [anon_sym_BANG] = ACTIONS(1395), [anon_sym_EQ] = ACTIONS(1395), @@ -64716,10 +64870,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1393), }, - [STATE(523)] = { + [STATE(521)] = { + [ts_builtin_sym_end] = ACTIONS(343), + [sym_identifier] = ACTIONS(339), + [anon_sym_import] = ACTIONS(339), + [anon_sym_hide] = ACTIONS(339), + [anon_sym_func] = ACTIONS(339), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_EQ] = ACTIONS(339), + [anon_sym_struct] = ACTIONS(339), + [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(339), + [anon_sym_DOLLAR] = ACTIONS(343), + [anon_sym_PIPE] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(339), + [anon_sym_LBRACK] = ACTIONS(343), + [anon_sym_SEMI] = ACTIONS(343), + [anon_sym_RBRACK] = ACTIONS(343), + [anon_sym_void] = ACTIONS(339), + [anon_sym_anyopaque] = ACTIONS(339), + [anon_sym_bool] = ACTIONS(339), + [anon_sym_int] = ACTIONS(339), + [anon_sym_float] = ACTIONS(339), + [anon_sym_range] = ACTIONS(339), + [anon_sym_i8] = ACTIONS(339), + [anon_sym_i16] = ACTIONS(339), + [anon_sym_i32] = ACTIONS(339), + [anon_sym_i64] = ACTIONS(339), + [anon_sym_u8] = ACTIONS(339), + [anon_sym_u16] = ACTIONS(339), + [anon_sym_u32] = ACTIONS(339), + [anon_sym_u64] = ACTIONS(339), + [anon_sym_isize] = ACTIONS(339), + [anon_sym_usize] = ACTIONS(339), + [anon_sym_f32] = ACTIONS(339), + [anon_sym_f64] = ACTIONS(339), + [anon_sym_c_char] = ACTIONS(339), + [anon_sym_c_schar] = ACTIONS(339), + [anon_sym_c_uchar] = ACTIONS(339), + [anon_sym_c_short] = ACTIONS(339), + [anon_sym_c_ushort] = ACTIONS(339), + [anon_sym_c_int] = ACTIONS(339), + [anon_sym_c_uint] = ACTIONS(339), + [anon_sym_c_long] = ACTIONS(339), + [anon_sym_c_ulong] = ACTIONS(339), + [anon_sym_c_longlong] = ACTIONS(339), + [anon_sym_c_ulonglong] = ACTIONS(339), + [anon_sym_c_float] = ACTIONS(339), + [anon_sym_c_double] = ACTIONS(339), + [anon_sym_c_longdouble] = ACTIONS(339), + [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(339), + [anon_sym_yield] = ACTIONS(339), + [anon_sym_COLON] = ACTIONS(343), + [anon_sym_break] = ACTIONS(339), + [anon_sym_continue] = ACTIONS(339), + [anon_sym_defer] = ACTIONS(339), + [anon_sym_errdefer] = ACTIONS(339), + [anon_sym_if] = ACTIONS(339), + [anon_sym_else] = ACTIONS(339), + [anon_sym_while] = ACTIONS(339), + [anon_sym_for] = ACTIONS(339), + [anon_sym_match] = ACTIONS(339), + [anon_sym_DOT_DOT] = ACTIONS(339), + [anon_sym_DOT_DOT_EQ] = ACTIONS(343), + [anon_sym_orelse] = ACTIONS(339), + [anon_sym_catch] = ACTIONS(339), + [anon_sym_or] = ACTIONS(339), + [anon_sym_and] = ACTIONS(339), + [anon_sym_EQ_EQ] = ACTIONS(343), + [anon_sym_BANG_EQ] = ACTIONS(343), + [anon_sym_LT] = ACTIONS(339), + [anon_sym_LT_EQ] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(339), + [anon_sym_GT_EQ] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(339), + [anon_sym_SLASH] = ACTIONS(339), + [anon_sym_AMP] = ACTIONS(343), + [anon_sym_try] = ACTIONS(339), + [anon_sym_DOT] = ACTIONS(339), + [anon_sym_CARET] = ACTIONS(343), + [anon_sym_true] = ACTIONS(339), + [anon_sym_false] = ACTIONS(339), + [sym_none] = ACTIONS(339), + [sym_undefined] = ACTIONS(339), + [sym_sink] = ACTIONS(339), + [sym_integer] = ACTIONS(339), + [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(522)] = { [ts_builtin_sym_end] = ACTIONS(1397), [sym_identifier] = ACTIONS(1399), [anon_sym_import] = ACTIONS(1399), + [anon_sym_hide] = ACTIONS(1399), [anon_sym_func] = ACTIONS(1399), [anon_sym_BANG] = ACTIONS(1399), [anon_sym_EQ] = ACTIONS(1399), @@ -64816,10 +65072,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1397), }, - [STATE(524)] = { + [STATE(523)] = { [ts_builtin_sym_end] = ACTIONS(1401), [sym_identifier] = ACTIONS(1403), [anon_sym_import] = ACTIONS(1403), + [anon_sym_hide] = ACTIONS(1403), [anon_sym_func] = ACTIONS(1403), [anon_sym_BANG] = ACTIONS(1403), [anon_sym_EQ] = ACTIONS(1403), @@ -64916,110 +65173,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1401), }, - [STATE(525)] = { - [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(857), - }, - [STATE(526)] = { + [STATE(524)] = { [ts_builtin_sym_end] = ACTIONS(1405), [sym_identifier] = ACTIONS(1407), [anon_sym_import] = ACTIONS(1407), + [anon_sym_hide] = ACTIONS(1407), [anon_sym_func] = ACTIONS(1407), [anon_sym_BANG] = ACTIONS(1407), [anon_sym_EQ] = ACTIONS(1407), @@ -65116,10 +65274,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1405), }, - [STATE(527)] = { + [STATE(525)] = { [ts_builtin_sym_end] = ACTIONS(1409), [sym_identifier] = ACTIONS(1411), [anon_sym_import] = ACTIONS(1411), + [anon_sym_hide] = ACTIONS(1411), [anon_sym_func] = ACTIONS(1411), [anon_sym_BANG] = ACTIONS(1411), [anon_sym_EQ] = ACTIONS(1411), @@ -65216,10 +65375,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1409), }, - [STATE(528)] = { + [STATE(526)] = { + [ts_builtin_sym_end] = ACTIONS(395), + [sym_identifier] = ACTIONS(393), + [anon_sym_import] = ACTIONS(393), + [anon_sym_hide] = ACTIONS(393), + [anon_sym_func] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_struct] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_RPAREN] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_COMMA] = ACTIONS(395), + [anon_sym_RBRACE] = ACTIONS(395), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_DOLLAR] = ACTIONS(395), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_QMARK] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_SEMI] = ACTIONS(395), + [anon_sym_RBRACK] = ACTIONS(395), + [anon_sym_void] = ACTIONS(393), + [anon_sym_anyopaque] = ACTIONS(393), + [anon_sym_bool] = ACTIONS(393), + [anon_sym_int] = ACTIONS(393), + [anon_sym_float] = ACTIONS(393), + [anon_sym_range] = ACTIONS(393), + [anon_sym_i8] = ACTIONS(393), + [anon_sym_i16] = ACTIONS(393), + [anon_sym_i32] = ACTIONS(393), + [anon_sym_i64] = ACTIONS(393), + [anon_sym_u8] = ACTIONS(393), + [anon_sym_u16] = ACTIONS(393), + [anon_sym_u32] = ACTIONS(393), + [anon_sym_u64] = ACTIONS(393), + [anon_sym_isize] = ACTIONS(393), + [anon_sym_usize] = ACTIONS(393), + [anon_sym_f32] = ACTIONS(393), + [anon_sym_f64] = ACTIONS(393), + [anon_sym_c_char] = ACTIONS(393), + [anon_sym_c_schar] = ACTIONS(393), + [anon_sym_c_uchar] = ACTIONS(393), + [anon_sym_c_short] = ACTIONS(393), + [anon_sym_c_ushort] = ACTIONS(393), + [anon_sym_c_int] = ACTIONS(393), + [anon_sym_c_uint] = ACTIONS(393), + [anon_sym_c_long] = ACTIONS(393), + [anon_sym_c_ulong] = ACTIONS(393), + [anon_sym_c_longlong] = ACTIONS(393), + [anon_sym_c_ulonglong] = ACTIONS(393), + [anon_sym_c_float] = ACTIONS(393), + [anon_sym_c_double] = ACTIONS(393), + [anon_sym_c_longdouble] = ACTIONS(393), + [anon_sym_PLUS_EQ] = ACTIONS(395), + [anon_sym_DASH_EQ] = ACTIONS(395), + [anon_sym_STAR_EQ] = ACTIONS(395), + [anon_sym_SLASH_EQ] = ACTIONS(395), + [anon_sym_return] = ACTIONS(393), + [anon_sym_yield] = ACTIONS(393), + [anon_sym_COLON] = ACTIONS(395), + [anon_sym_break] = ACTIONS(393), + [anon_sym_continue] = ACTIONS(393), + [anon_sym_defer] = ACTIONS(393), + [anon_sym_errdefer] = ACTIONS(393), + [anon_sym_if] = ACTIONS(393), + [anon_sym_else] = ACTIONS(393), + [anon_sym_while] = ACTIONS(393), + [anon_sym_for] = ACTIONS(393), + [anon_sym_match] = ACTIONS(393), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_EQ] = ACTIONS(395), + [anon_sym_orelse] = ACTIONS(393), + [anon_sym_catch] = ACTIONS(393), + [anon_sym_or] = ACTIONS(393), + [anon_sym_and] = ACTIONS(393), + [anon_sym_EQ_EQ] = ACTIONS(395), + [anon_sym_BANG_EQ] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_LT_EQ] = ACTIONS(395), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(395), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_AMP] = ACTIONS(395), + [anon_sym_try] = ACTIONS(393), + [anon_sym_DOT] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(395), + [anon_sym_true] = ACTIONS(393), + [anon_sym_false] = ACTIONS(393), + [sym_none] = ACTIONS(393), + [sym_undefined] = ACTIONS(393), + [sym_sink] = ACTIONS(393), + [sym_integer] = ACTIONS(393), + [sym_float] = ACTIONS(395), + [anon_sym_DQUOTE] = ACTIONS(395), + [sym_multiline_string] = ACTIONS(395), + [sym_character] = ACTIONS(395), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(395), + }, + [STATE(527)] = { [ts_builtin_sym_end] = ACTIONS(1413), [sym_identifier] = ACTIONS(1415), [anon_sym_import] = ACTIONS(1415), + [anon_sym_hide] = ACTIONS(1415), [anon_sym_func] = ACTIONS(1415), [anon_sym_BANG] = ACTIONS(1415), [anon_sym_EQ] = ACTIONS(1415), @@ -65316,1677 +65577,2948 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1413), }, - [STATE(529)] = { - [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), + [STATE(528)] = { + [ts_builtin_sym_end] = ACTIONS(1417), + [sym_identifier] = ACTIONS(1419), + [anon_sym_import] = ACTIONS(1419), + [anon_sym_hide] = 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(1417), + [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_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_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1419), + [sym__newline] = ACTIONS(1417), + }, + [STATE(529)] = { + [ts_builtin_sym_end] = ACTIONS(369), + [sym_identifier] = ACTIONS(374), + [anon_sym_import] = ACTIONS(374), + [anon_sym_hide] = 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), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(369), }, [STATE(530)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(1421), + [sym_identifier] = ACTIONS(1423), + [anon_sym_import] = ACTIONS(1423), + [anon_sym_hide] = ACTIONS(1423), + [anon_sym_func] = ACTIONS(1423), + [anon_sym_BANG] = ACTIONS(1423), + [anon_sym_EQ] = ACTIONS(1423), + [anon_sym_struct] = ACTIONS(1423), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_RPAREN] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1421), + [anon_sym_COMMA] = ACTIONS(1421), + [anon_sym_RBRACE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_DOLLAR] = ACTIONS(1421), + [anon_sym_PIPE] = ACTIONS(1421), + [anon_sym_QMARK] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1423), + [anon_sym_LBRACK] = ACTIONS(1421), + [anon_sym_SEMI] = ACTIONS(1421), + [anon_sym_RBRACK] = ACTIONS(1421), + [anon_sym_void] = ACTIONS(1423), + [anon_sym_anyopaque] = ACTIONS(1423), + [anon_sym_bool] = ACTIONS(1423), + [anon_sym_int] = ACTIONS(1423), + [anon_sym_float] = ACTIONS(1423), + [anon_sym_range] = ACTIONS(1423), + [anon_sym_i8] = ACTIONS(1423), + [anon_sym_i16] = ACTIONS(1423), + [anon_sym_i32] = ACTIONS(1423), + [anon_sym_i64] = ACTIONS(1423), + [anon_sym_u8] = ACTIONS(1423), + [anon_sym_u16] = ACTIONS(1423), + [anon_sym_u32] = ACTIONS(1423), + [anon_sym_u64] = ACTIONS(1423), + [anon_sym_isize] = ACTIONS(1423), + [anon_sym_usize] = ACTIONS(1423), + [anon_sym_f32] = ACTIONS(1423), + [anon_sym_f64] = ACTIONS(1423), + [anon_sym_c_char] = ACTIONS(1423), + [anon_sym_c_schar] = ACTIONS(1423), + [anon_sym_c_uchar] = ACTIONS(1423), + [anon_sym_c_short] = ACTIONS(1423), + [anon_sym_c_ushort] = ACTIONS(1423), + [anon_sym_c_int] = ACTIONS(1423), + [anon_sym_c_uint] = ACTIONS(1423), + [anon_sym_c_long] = ACTIONS(1423), + [anon_sym_c_ulong] = ACTIONS(1423), + [anon_sym_c_longlong] = ACTIONS(1423), + [anon_sym_c_ulonglong] = ACTIONS(1423), + [anon_sym_c_float] = ACTIONS(1423), + [anon_sym_c_double] = ACTIONS(1423), + [anon_sym_c_longdouble] = ACTIONS(1423), + [anon_sym_PLUS_EQ] = ACTIONS(1421), + [anon_sym_DASH_EQ] = ACTIONS(1421), + [anon_sym_STAR_EQ] = ACTIONS(1421), + [anon_sym_SLASH_EQ] = ACTIONS(1421), + [anon_sym_return] = ACTIONS(1423), + [anon_sym_yield] = ACTIONS(1423), + [anon_sym_COLON] = ACTIONS(1421), + [anon_sym_break] = ACTIONS(1423), + [anon_sym_continue] = ACTIONS(1423), + [anon_sym_defer] = ACTIONS(1423), + [anon_sym_errdefer] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(1423), + [anon_sym_else] = ACTIONS(1423), + [anon_sym_while] = ACTIONS(1423), + [anon_sym_for] = ACTIONS(1423), + [anon_sym_match] = ACTIONS(1423), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1421), + [anon_sym_orelse] = ACTIONS(1423), + [anon_sym_catch] = ACTIONS(1423), + [anon_sym_or] = ACTIONS(1423), + [anon_sym_and] = ACTIONS(1423), + [anon_sym_EQ_EQ] = ACTIONS(1421), + [anon_sym_BANG_EQ] = ACTIONS(1421), + [anon_sym_LT] = ACTIONS(1423), + [anon_sym_LT_EQ] = ACTIONS(1421), + [anon_sym_GT] = ACTIONS(1423), + [anon_sym_GT_EQ] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_try] = ACTIONS(1423), + [anon_sym_DOT] = ACTIONS(1423), + [anon_sym_CARET] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(1423), + [anon_sym_false] = ACTIONS(1423), + [sym_none] = ACTIONS(1423), + [sym_undefined] = ACTIONS(1423), + [sym_sink] = ACTIONS(1423), + [sym_integer] = ACTIONS(1423), + [sym_float] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(1421), + [sym_multiline_string] = ACTIONS(1421), + [sym_character] = ACTIONS(1421), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1423), + [sym__newline] = ACTIONS(1421), }, [STATE(531)] = { - [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1200), + [sym_labeled_block] = STATE(1200), + [sym_if_statement] = STATE(1200), + [sym_while_statement] = STATE(1200), + [sym_for_statement] = STATE(1200), + [sym_match_statement] = STATE(1200), + [sym__value] = STATE(1200), + [sym_expression] = STATE(689), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1427), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_yield] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_defer] = ACTIONS(1429), + [anon_sym_errdefer] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(115), + [anon_sym_else] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1419), + [sym__newline] = ACTIONS(1427), }, [STATE(532)] = { - [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_variant_payload] = STATE(522), + [ts_builtin_sym_end] = ACTIONS(1431), + [sym_identifier] = ACTIONS(1433), + [anon_sym_import] = ACTIONS(1433), + [anon_sym_hide] = ACTIONS(1433), + [anon_sym_func] = ACTIONS(1433), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_EQ] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_RPAREN] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1435), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_DOLLAR] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1431), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_void] = ACTIONS(1433), + [anon_sym_anyopaque] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_int] = ACTIONS(1433), + [anon_sym_float] = ACTIONS(1433), + [anon_sym_range] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_c_char] = ACTIONS(1433), + [anon_sym_c_schar] = ACTIONS(1433), + [anon_sym_c_uchar] = ACTIONS(1433), + [anon_sym_c_short] = ACTIONS(1433), + [anon_sym_c_ushort] = ACTIONS(1433), + [anon_sym_c_int] = ACTIONS(1433), + [anon_sym_c_uint] = ACTIONS(1433), + [anon_sym_c_long] = ACTIONS(1433), + [anon_sym_c_ulong] = ACTIONS(1433), + [anon_sym_c_longlong] = ACTIONS(1433), + [anon_sym_c_ulonglong] = ACTIONS(1433), + [anon_sym_c_float] = ACTIONS(1433), + [anon_sym_c_double] = ACTIONS(1433), + [anon_sym_c_longdouble] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1431), + [anon_sym_DASH_EQ] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1431), + [anon_sym_SLASH_EQ] = ACTIONS(1431), + [anon_sym_return] = ACTIONS(1433), + [anon_sym_yield] = ACTIONS(1433), + [anon_sym_COLON] = ACTIONS(1431), + [anon_sym_break] = ACTIONS(1433), + [anon_sym_continue] = ACTIONS(1433), + [anon_sym_defer] = ACTIONS(1433), + [anon_sym_errdefer] = ACTIONS(1433), + [anon_sym_if] = ACTIONS(1433), + [anon_sym_else] = ACTIONS(1433), + [anon_sym_while] = ACTIONS(1433), + [anon_sym_for] = ACTIONS(1433), + [anon_sym_match] = ACTIONS(1433), + [anon_sym_DOT_DOT] = ACTIONS(1433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1431), + [anon_sym_orelse] = ACTIONS(1433), + [anon_sym_catch] = ACTIONS(1433), + [anon_sym_or] = ACTIONS(1433), + [anon_sym_and] = ACTIONS(1433), + [anon_sym_EQ_EQ] = ACTIONS(1431), + [anon_sym_BANG_EQ] = ACTIONS(1431), + [anon_sym_LT] = ACTIONS(1433), + [anon_sym_LT_EQ] = ACTIONS(1431), + [anon_sym_GT] = ACTIONS(1433), + [anon_sym_GT_EQ] = ACTIONS(1431), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_SLASH] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_try] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1431), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), + [sym_none] = ACTIONS(1433), + [sym_undefined] = ACTIONS(1433), + [sym_sink] = ACTIONS(1433), + [sym_integer] = ACTIONS(1433), + [sym_float] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1431), + [sym_multiline_string] = ACTIONS(1431), + [sym_character] = ACTIONS(1431), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(927), + [sym__newline] = ACTIONS(1431), }, [STATE(533)] = { - [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_argument_list] = STATE(504), + [ts_builtin_sym_end] = ACTIONS(979), + [sym_identifier] = ACTIONS(981), + [anon_sym_import] = ACTIONS(981), + [anon_sym_hide] = ACTIONS(981), + [anon_sym_func] = ACTIONS(981), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_EQ] = ACTIONS(981), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(979), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_RBRACE] = ACTIONS(979), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_PIPE] = ACTIONS(979), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(981), + [anon_sym_anyopaque] = ACTIONS(981), + [anon_sym_bool] = ACTIONS(981), + [anon_sym_int] = ACTIONS(981), + [anon_sym_float] = ACTIONS(981), + [anon_sym_range] = ACTIONS(981), + [anon_sym_i8] = ACTIONS(981), + [anon_sym_i16] = ACTIONS(981), + [anon_sym_i32] = ACTIONS(981), + [anon_sym_i64] = ACTIONS(981), + [anon_sym_u8] = ACTIONS(981), + [anon_sym_u16] = ACTIONS(981), + [anon_sym_u32] = ACTIONS(981), + [anon_sym_u64] = ACTIONS(981), + [anon_sym_isize] = ACTIONS(981), + [anon_sym_usize] = ACTIONS(981), + [anon_sym_f32] = ACTIONS(981), + [anon_sym_f64] = ACTIONS(981), + [anon_sym_c_char] = ACTIONS(981), + [anon_sym_c_schar] = ACTIONS(981), + [anon_sym_c_uchar] = ACTIONS(981), + [anon_sym_c_short] = ACTIONS(981), + [anon_sym_c_ushort] = ACTIONS(981), + [anon_sym_c_int] = ACTIONS(981), + [anon_sym_c_uint] = ACTIONS(981), + [anon_sym_c_long] = ACTIONS(981), + [anon_sym_c_ulong] = ACTIONS(981), + [anon_sym_c_longlong] = ACTIONS(981), + [anon_sym_c_ulonglong] = ACTIONS(981), + [anon_sym_c_float] = ACTIONS(981), + [anon_sym_c_double] = ACTIONS(981), + [anon_sym_c_longdouble] = ACTIONS(981), + [anon_sym_PLUS_EQ] = ACTIONS(979), + [anon_sym_DASH_EQ] = ACTIONS(979), + [anon_sym_STAR_EQ] = ACTIONS(979), + [anon_sym_SLASH_EQ] = ACTIONS(979), + [anon_sym_return] = ACTIONS(981), + [anon_sym_yield] = ACTIONS(981), + [anon_sym_break] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_defer] = ACTIONS(981), + [anon_sym_errdefer] = ACTIONS(981), + [anon_sym_if] = ACTIONS(981), + [anon_sym_else] = ACTIONS(981), + [anon_sym_while] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_match] = ACTIONS(981), + [anon_sym_DOT_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT_EQ] = ACTIONS(979), + [anon_sym_orelse] = ACTIONS(981), + [anon_sym_catch] = ACTIONS(981), + [anon_sym_or] = ACTIONS(69), + [anon_sym_and] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_try] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(981), + [anon_sym_false] = ACTIONS(981), + [sym_none] = ACTIONS(981), + [sym_undefined] = ACTIONS(981), + [sym_sink] = ACTIONS(981), + [sym_integer] = ACTIONS(981), + [sym_float] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [sym_multiline_string] = ACTIONS(979), + [sym_character] = ACTIONS(979), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(991), + [sym__newline] = ACTIONS(979), }, [STATE(534)] = { - [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(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), - [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(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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1200), + [sym_labeled_block] = STATE(1200), + [sym_if_statement] = STATE(1200), + [sym_while_statement] = STATE(1200), + [sym_for_statement] = STATE(1200), + [sym_match_statement] = STATE(1200), + [sym__value] = STATE(1200), + [sym_expression] = STATE(689), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1427), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_return] = ACTIONS(1429), + [anon_sym_yield] = ACTIONS(1429), + [anon_sym_break] = ACTIONS(1429), + [anon_sym_continue] = ACTIONS(1429), + [anon_sym_defer] = ACTIONS(1429), + [anon_sym_errdefer] = ACTIONS(1429), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1434), + [sym__newline] = ACTIONS(1427), }, [STATE(535)] = { - [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(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(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_argument_list] = STATE(504), + [ts_builtin_sym_end] = ACTIONS(979), + [sym_identifier] = ACTIONS(981), + [anon_sym_import] = ACTIONS(981), + [anon_sym_hide] = ACTIONS(981), + [anon_sym_func] = ACTIONS(981), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_EQ] = ACTIONS(981), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(979), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_RBRACE] = ACTIONS(979), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_PIPE] = ACTIONS(979), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(981), + [anon_sym_anyopaque] = ACTIONS(981), + [anon_sym_bool] = ACTIONS(981), + [anon_sym_int] = ACTIONS(981), + [anon_sym_float] = ACTIONS(981), + [anon_sym_range] = ACTIONS(981), + [anon_sym_i8] = ACTIONS(981), + [anon_sym_i16] = ACTIONS(981), + [anon_sym_i32] = ACTIONS(981), + [anon_sym_i64] = ACTIONS(981), + [anon_sym_u8] = ACTIONS(981), + [anon_sym_u16] = ACTIONS(981), + [anon_sym_u32] = ACTIONS(981), + [anon_sym_u64] = ACTIONS(981), + [anon_sym_isize] = ACTIONS(981), + [anon_sym_usize] = ACTIONS(981), + [anon_sym_f32] = ACTIONS(981), + [anon_sym_f64] = ACTIONS(981), + [anon_sym_c_char] = ACTIONS(981), + [anon_sym_c_schar] = ACTIONS(981), + [anon_sym_c_uchar] = ACTIONS(981), + [anon_sym_c_short] = ACTIONS(981), + [anon_sym_c_ushort] = ACTIONS(981), + [anon_sym_c_int] = ACTIONS(981), + [anon_sym_c_uint] = ACTIONS(981), + [anon_sym_c_long] = ACTIONS(981), + [anon_sym_c_ulong] = ACTIONS(981), + [anon_sym_c_longlong] = ACTIONS(981), + [anon_sym_c_ulonglong] = ACTIONS(981), + [anon_sym_c_float] = ACTIONS(981), + [anon_sym_c_double] = ACTIONS(981), + [anon_sym_c_longdouble] = ACTIONS(981), + [anon_sym_PLUS_EQ] = ACTIONS(979), + [anon_sym_DASH_EQ] = ACTIONS(979), + [anon_sym_STAR_EQ] = ACTIONS(979), + [anon_sym_SLASH_EQ] = ACTIONS(979), + [anon_sym_return] = ACTIONS(981), + [anon_sym_yield] = ACTIONS(981), + [anon_sym_break] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_defer] = ACTIONS(981), + [anon_sym_errdefer] = ACTIONS(981), + [anon_sym_if] = ACTIONS(981), + [anon_sym_else] = ACTIONS(981), + [anon_sym_while] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_match] = ACTIONS(981), + [anon_sym_DOT_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT_EQ] = ACTIONS(979), + [anon_sym_orelse] = ACTIONS(981), + [anon_sym_catch] = ACTIONS(981), + [anon_sym_or] = ACTIONS(981), + [anon_sym_and] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(979), + [anon_sym_BANG_EQ] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(981), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(979), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_SLASH] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_try] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(981), + [anon_sym_false] = ACTIONS(981), + [sym_none] = ACTIONS(981), + [sym_undefined] = ACTIONS(981), + [sym_sink] = ACTIONS(981), + [sym_integer] = ACTIONS(981), + [sym_float] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [sym_multiline_string] = ACTIONS(979), + [sym_character] = ACTIONS(979), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1434), + [sym__newline] = ACTIONS(979), }, [STATE(536)] = { - [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(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(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_argument_list] = STATE(504), + [ts_builtin_sym_end] = ACTIONS(979), + [sym_identifier] = ACTIONS(981), + [anon_sym_import] = ACTIONS(981), + [anon_sym_hide] = ACTIONS(981), + [anon_sym_func] = ACTIONS(981), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_EQ] = ACTIONS(981), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(979), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_RBRACE] = ACTIONS(979), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_PIPE] = ACTIONS(979), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(981), + [anon_sym_anyopaque] = ACTIONS(981), + [anon_sym_bool] = ACTIONS(981), + [anon_sym_int] = ACTIONS(981), + [anon_sym_float] = ACTIONS(981), + [anon_sym_range] = ACTIONS(981), + [anon_sym_i8] = ACTIONS(981), + [anon_sym_i16] = ACTIONS(981), + [anon_sym_i32] = ACTIONS(981), + [anon_sym_i64] = ACTIONS(981), + [anon_sym_u8] = ACTIONS(981), + [anon_sym_u16] = ACTIONS(981), + [anon_sym_u32] = ACTIONS(981), + [anon_sym_u64] = ACTIONS(981), + [anon_sym_isize] = ACTIONS(981), + [anon_sym_usize] = ACTIONS(981), + [anon_sym_f32] = ACTIONS(981), + [anon_sym_f64] = ACTIONS(981), + [anon_sym_c_char] = ACTIONS(981), + [anon_sym_c_schar] = ACTIONS(981), + [anon_sym_c_uchar] = ACTIONS(981), + [anon_sym_c_short] = ACTIONS(981), + [anon_sym_c_ushort] = ACTIONS(981), + [anon_sym_c_int] = ACTIONS(981), + [anon_sym_c_uint] = ACTIONS(981), + [anon_sym_c_long] = ACTIONS(981), + [anon_sym_c_ulong] = ACTIONS(981), + [anon_sym_c_longlong] = ACTIONS(981), + [anon_sym_c_ulonglong] = ACTIONS(981), + [anon_sym_c_float] = ACTIONS(981), + [anon_sym_c_double] = ACTIONS(981), + [anon_sym_c_longdouble] = ACTIONS(981), + [anon_sym_PLUS_EQ] = ACTIONS(979), + [anon_sym_DASH_EQ] = ACTIONS(979), + [anon_sym_STAR_EQ] = ACTIONS(979), + [anon_sym_SLASH_EQ] = ACTIONS(979), + [anon_sym_return] = ACTIONS(981), + [anon_sym_yield] = ACTIONS(981), + [anon_sym_break] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_defer] = ACTIONS(981), + [anon_sym_errdefer] = ACTIONS(981), + [anon_sym_if] = ACTIONS(981), + [anon_sym_else] = ACTIONS(981), + [anon_sym_while] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_match] = ACTIONS(981), + [anon_sym_DOT_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT_EQ] = ACTIONS(979), + [anon_sym_orelse] = ACTIONS(65), + [anon_sym_catch] = ACTIONS(67), + [anon_sym_or] = ACTIONS(69), + [anon_sym_and] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_try] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(981), + [anon_sym_false] = ACTIONS(981), + [sym_none] = ACTIONS(981), + [sym_undefined] = ACTIONS(981), + [sym_sink] = ACTIONS(981), + [sym_integer] = ACTIONS(981), + [sym_float] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [sym_multiline_string] = ACTIONS(979), + [sym_character] = ACTIONS(979), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(991), + [sym__newline] = ACTIONS(979), }, [STATE(537)] = { - [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(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_argument_list] = STATE(504), + [ts_builtin_sym_end] = ACTIONS(1442), + [sym_identifier] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(1444), + [anon_sym_hide] = ACTIONS(1444), + [anon_sym_func] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_EQ] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_DOLLAR] = ACTIONS(1442), + [anon_sym_PIPE] = ACTIONS(1442), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_anyopaque] = ACTIONS(1444), + [anon_sym_bool] = ACTIONS(1444), + [anon_sym_int] = ACTIONS(1444), + [anon_sym_float] = ACTIONS(1444), + [anon_sym_range] = ACTIONS(1444), + [anon_sym_i8] = ACTIONS(1444), + [anon_sym_i16] = ACTIONS(1444), + [anon_sym_i32] = ACTIONS(1444), + [anon_sym_i64] = ACTIONS(1444), + [anon_sym_u8] = ACTIONS(1444), + [anon_sym_u16] = ACTIONS(1444), + [anon_sym_u32] = ACTIONS(1444), + [anon_sym_u64] = ACTIONS(1444), + [anon_sym_isize] = ACTIONS(1444), + [anon_sym_usize] = ACTIONS(1444), + [anon_sym_f32] = ACTIONS(1444), + [anon_sym_f64] = ACTIONS(1444), + [anon_sym_c_char] = ACTIONS(1444), + [anon_sym_c_schar] = ACTIONS(1444), + [anon_sym_c_uchar] = ACTIONS(1444), + [anon_sym_c_short] = ACTIONS(1444), + [anon_sym_c_ushort] = ACTIONS(1444), + [anon_sym_c_int] = ACTIONS(1444), + [anon_sym_c_uint] = ACTIONS(1444), + [anon_sym_c_long] = ACTIONS(1444), + [anon_sym_c_ulong] = ACTIONS(1444), + [anon_sym_c_longlong] = ACTIONS(1444), + [anon_sym_c_ulonglong] = ACTIONS(1444), + [anon_sym_c_float] = ACTIONS(1444), + [anon_sym_c_double] = ACTIONS(1444), + [anon_sym_c_longdouble] = ACTIONS(1444), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_defer] = ACTIONS(1444), + [anon_sym_errdefer] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_else] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_DOT_DOT] = ACTIONS(1444), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1442), + [anon_sym_orelse] = ACTIONS(1444), + [anon_sym_catch] = ACTIONS(1444), + [anon_sym_or] = ACTIONS(1444), + [anon_sym_and] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_try] = ACTIONS(1444), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(1444), + [anon_sym_false] = ACTIONS(1444), + [sym_none] = ACTIONS(1444), + [sym_undefined] = ACTIONS(1444), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [sym_multiline_string] = ACTIONS(1442), + [sym_character] = ACTIONS(1442), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(991), + [sym__newline] = ACTIONS(1442), }, [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_argument_list] = STATE(504), + [ts_builtin_sym_end] = ACTIONS(1442), + [sym_identifier] = ACTIONS(1444), + [anon_sym_import] = ACTIONS(1444), + [anon_sym_hide] = ACTIONS(1444), + [anon_sym_func] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_EQ] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_DOLLAR] = ACTIONS(1442), + [anon_sym_PIPE] = ACTIONS(1442), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_anyopaque] = ACTIONS(1444), + [anon_sym_bool] = ACTIONS(1444), + [anon_sym_int] = ACTIONS(1444), + [anon_sym_float] = ACTIONS(1444), + [anon_sym_range] = ACTIONS(1444), + [anon_sym_i8] = ACTIONS(1444), + [anon_sym_i16] = ACTIONS(1444), + [anon_sym_i32] = ACTIONS(1444), + [anon_sym_i64] = ACTIONS(1444), + [anon_sym_u8] = ACTIONS(1444), + [anon_sym_u16] = ACTIONS(1444), + [anon_sym_u32] = ACTIONS(1444), + [anon_sym_u64] = ACTIONS(1444), + [anon_sym_isize] = ACTIONS(1444), + [anon_sym_usize] = ACTIONS(1444), + [anon_sym_f32] = ACTIONS(1444), + [anon_sym_f64] = ACTIONS(1444), + [anon_sym_c_char] = ACTIONS(1444), + [anon_sym_c_schar] = ACTIONS(1444), + [anon_sym_c_uchar] = ACTIONS(1444), + [anon_sym_c_short] = ACTIONS(1444), + [anon_sym_c_ushort] = ACTIONS(1444), + [anon_sym_c_int] = ACTIONS(1444), + [anon_sym_c_uint] = ACTIONS(1444), + [anon_sym_c_long] = ACTIONS(1444), + [anon_sym_c_ulong] = ACTIONS(1444), + [anon_sym_c_longlong] = ACTIONS(1444), + [anon_sym_c_ulonglong] = ACTIONS(1444), + [anon_sym_c_float] = ACTIONS(1444), + [anon_sym_c_double] = ACTIONS(1444), + [anon_sym_c_longdouble] = ACTIONS(1444), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_defer] = ACTIONS(1444), + [anon_sym_errdefer] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_else] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_DOT_DOT] = ACTIONS(1444), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1442), + [anon_sym_orelse] = ACTIONS(1444), + [anon_sym_catch] = ACTIONS(1444), + [anon_sym_or] = ACTIONS(1444), + [anon_sym_and] = ACTIONS(1444), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_try] = ACTIONS(1444), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(1444), + [anon_sym_false] = ACTIONS(1444), + [sym_none] = ACTIONS(1444), + [sym_undefined] = ACTIONS(1444), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [sym_multiline_string] = ACTIONS(1442), + [sym_character] = ACTIONS(1442), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1173), + [sym__newline] = ACTIONS(1442), }, [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_argument_list] = STATE(504), + [ts_builtin_sym_end] = ACTIONS(979), + [sym_identifier] = ACTIONS(981), + [anon_sym_import] = ACTIONS(981), + [anon_sym_hide] = ACTIONS(981), + [anon_sym_func] = ACTIONS(981), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_EQ] = ACTIONS(981), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(979), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_RBRACE] = ACTIONS(979), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_PIPE] = ACTIONS(979), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(981), + [anon_sym_anyopaque] = ACTIONS(981), + [anon_sym_bool] = ACTIONS(981), + [anon_sym_int] = ACTIONS(981), + [anon_sym_float] = ACTIONS(981), + [anon_sym_range] = ACTIONS(981), + [anon_sym_i8] = ACTIONS(981), + [anon_sym_i16] = ACTIONS(981), + [anon_sym_i32] = ACTIONS(981), + [anon_sym_i64] = ACTIONS(981), + [anon_sym_u8] = ACTIONS(981), + [anon_sym_u16] = ACTIONS(981), + [anon_sym_u32] = ACTIONS(981), + [anon_sym_u64] = ACTIONS(981), + [anon_sym_isize] = ACTIONS(981), + [anon_sym_usize] = ACTIONS(981), + [anon_sym_f32] = ACTIONS(981), + [anon_sym_f64] = ACTIONS(981), + [anon_sym_c_char] = ACTIONS(981), + [anon_sym_c_schar] = ACTIONS(981), + [anon_sym_c_uchar] = ACTIONS(981), + [anon_sym_c_short] = ACTIONS(981), + [anon_sym_c_ushort] = ACTIONS(981), + [anon_sym_c_int] = ACTIONS(981), + [anon_sym_c_uint] = ACTIONS(981), + [anon_sym_c_long] = ACTIONS(981), + [anon_sym_c_ulong] = ACTIONS(981), + [anon_sym_c_longlong] = ACTIONS(981), + [anon_sym_c_ulonglong] = ACTIONS(981), + [anon_sym_c_float] = ACTIONS(981), + [anon_sym_c_double] = ACTIONS(981), + [anon_sym_c_longdouble] = ACTIONS(981), + [anon_sym_PLUS_EQ] = ACTIONS(979), + [anon_sym_DASH_EQ] = ACTIONS(979), + [anon_sym_STAR_EQ] = ACTIONS(979), + [anon_sym_SLASH_EQ] = ACTIONS(979), + [anon_sym_return] = ACTIONS(981), + [anon_sym_yield] = ACTIONS(981), + [anon_sym_break] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_defer] = ACTIONS(981), + [anon_sym_errdefer] = ACTIONS(981), + [anon_sym_if] = ACTIONS(981), + [anon_sym_else] = ACTIONS(981), + [anon_sym_while] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_match] = ACTIONS(981), + [anon_sym_DOT_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT_EQ] = ACTIONS(979), + [anon_sym_orelse] = ACTIONS(981), + [anon_sym_catch] = ACTIONS(981), + [anon_sym_or] = ACTIONS(981), + [anon_sym_and] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(979), + [anon_sym_BANG_EQ] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(981), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(979), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_try] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(981), + [anon_sym_false] = ACTIONS(981), + [sym_none] = ACTIONS(981), + [sym_undefined] = ACTIONS(981), + [sym_sink] = ACTIONS(981), + [sym_integer] = ACTIONS(981), + [sym_float] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [sym_multiline_string] = ACTIONS(979), + [sym_character] = ACTIONS(979), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(927), + [sym__newline] = ACTIONS(979), }, [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), - [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(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_argument_list] = STATE(504), + [ts_builtin_sym_end] = ACTIONS(1111), + [sym_identifier] = ACTIONS(1113), + [anon_sym_import] = ACTIONS(1113), + [anon_sym_hide] = ACTIONS(1113), + [anon_sym_func] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_EQ] = ACTIONS(1113), + [anon_sym_struct] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(1111), + [anon_sym_RBRACE] = ACTIONS(1111), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_DOLLAR] = ACTIONS(1111), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(1113), + [anon_sym_anyopaque] = ACTIONS(1113), + [anon_sym_bool] = ACTIONS(1113), + [anon_sym_int] = ACTIONS(1113), + [anon_sym_float] = ACTIONS(1113), + [anon_sym_range] = ACTIONS(1113), + [anon_sym_i8] = ACTIONS(1113), + [anon_sym_i16] = ACTIONS(1113), + [anon_sym_i32] = ACTIONS(1113), + [anon_sym_i64] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1113), + [anon_sym_u16] = ACTIONS(1113), + [anon_sym_u32] = ACTIONS(1113), + [anon_sym_u64] = ACTIONS(1113), + [anon_sym_isize] = ACTIONS(1113), + [anon_sym_usize] = ACTIONS(1113), + [anon_sym_f32] = ACTIONS(1113), + [anon_sym_f64] = ACTIONS(1113), + [anon_sym_c_char] = ACTIONS(1113), + [anon_sym_c_schar] = ACTIONS(1113), + [anon_sym_c_uchar] = ACTIONS(1113), + [anon_sym_c_short] = ACTIONS(1113), + [anon_sym_c_ushort] = ACTIONS(1113), + [anon_sym_c_int] = ACTIONS(1113), + [anon_sym_c_uint] = ACTIONS(1113), + [anon_sym_c_long] = ACTIONS(1113), + [anon_sym_c_ulong] = ACTIONS(1113), + [anon_sym_c_longlong] = ACTIONS(1113), + [anon_sym_c_ulonglong] = ACTIONS(1113), + [anon_sym_c_float] = ACTIONS(1113), + [anon_sym_c_double] = ACTIONS(1113), + [anon_sym_c_longdouble] = ACTIONS(1113), + [anon_sym_PLUS_EQ] = ACTIONS(1111), + [anon_sym_DASH_EQ] = ACTIONS(1111), + [anon_sym_STAR_EQ] = ACTIONS(1111), + [anon_sym_SLASH_EQ] = ACTIONS(1111), + [anon_sym_return] = ACTIONS(1113), + [anon_sym_yield] = ACTIONS(1113), + [anon_sym_break] = ACTIONS(1113), + [anon_sym_continue] = ACTIONS(1113), + [anon_sym_defer] = ACTIONS(1113), + [anon_sym_errdefer] = ACTIONS(1113), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1113), + [anon_sym_while] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1113), + [anon_sym_DOT_DOT] = ACTIONS(1113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1111), + [anon_sym_orelse] = ACTIONS(1113), + [anon_sym_catch] = ACTIONS(1113), + [anon_sym_or] = ACTIONS(1113), + [anon_sym_and] = ACTIONS(1113), + [anon_sym_EQ_EQ] = ACTIONS(1111), + [anon_sym_BANG_EQ] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1113), + [anon_sym_GT_EQ] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_SLASH] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_try] = ACTIONS(1113), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(1113), + [anon_sym_false] = ACTIONS(1113), + [sym_none] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1113), + [sym_sink] = ACTIONS(1113), + [sym_integer] = ACTIONS(1113), + [sym_float] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1111), + [sym_multiline_string] = ACTIONS(1111), + [sym_character] = ACTIONS(1111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(927), + [sym__newline] = ACTIONS(1111), }, [STATE(541)] = { - [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_argument_list] = STATE(504), + [ts_builtin_sym_end] = ACTIONS(1111), + [sym_identifier] = ACTIONS(1113), + [anon_sym_import] = ACTIONS(1113), + [anon_sym_hide] = ACTIONS(1113), + [anon_sym_func] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_EQ] = ACTIONS(1113), + [anon_sym_struct] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(1111), + [anon_sym_RBRACE] = ACTIONS(1111), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_DOLLAR] = ACTIONS(1111), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(1113), + [anon_sym_anyopaque] = ACTIONS(1113), + [anon_sym_bool] = ACTIONS(1113), + [anon_sym_int] = ACTIONS(1113), + [anon_sym_float] = ACTIONS(1113), + [anon_sym_range] = ACTIONS(1113), + [anon_sym_i8] = ACTIONS(1113), + [anon_sym_i16] = ACTIONS(1113), + [anon_sym_i32] = ACTIONS(1113), + [anon_sym_i64] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1113), + [anon_sym_u16] = ACTIONS(1113), + [anon_sym_u32] = ACTIONS(1113), + [anon_sym_u64] = ACTIONS(1113), + [anon_sym_isize] = ACTIONS(1113), + [anon_sym_usize] = ACTIONS(1113), + [anon_sym_f32] = ACTIONS(1113), + [anon_sym_f64] = ACTIONS(1113), + [anon_sym_c_char] = ACTIONS(1113), + [anon_sym_c_schar] = ACTIONS(1113), + [anon_sym_c_uchar] = ACTIONS(1113), + [anon_sym_c_short] = ACTIONS(1113), + [anon_sym_c_ushort] = ACTIONS(1113), + [anon_sym_c_int] = ACTIONS(1113), + [anon_sym_c_uint] = ACTIONS(1113), + [anon_sym_c_long] = ACTIONS(1113), + [anon_sym_c_ulong] = ACTIONS(1113), + [anon_sym_c_longlong] = ACTIONS(1113), + [anon_sym_c_ulonglong] = ACTIONS(1113), + [anon_sym_c_float] = ACTIONS(1113), + [anon_sym_c_double] = ACTIONS(1113), + [anon_sym_c_longdouble] = ACTIONS(1113), + [anon_sym_PLUS_EQ] = ACTIONS(1111), + [anon_sym_DASH_EQ] = ACTIONS(1111), + [anon_sym_STAR_EQ] = ACTIONS(1111), + [anon_sym_SLASH_EQ] = ACTIONS(1111), + [anon_sym_return] = ACTIONS(1113), + [anon_sym_yield] = ACTIONS(1113), + [anon_sym_break] = ACTIONS(1113), + [anon_sym_continue] = ACTIONS(1113), + [anon_sym_defer] = ACTIONS(1113), + [anon_sym_errdefer] = ACTIONS(1113), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1113), + [anon_sym_while] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1113), + [anon_sym_DOT_DOT] = ACTIONS(1113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1111), + [anon_sym_orelse] = ACTIONS(65), + [anon_sym_catch] = ACTIONS(67), + [anon_sym_or] = ACTIONS(69), + [anon_sym_and] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_try] = ACTIONS(1113), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(1113), + [anon_sym_false] = ACTIONS(1113), + [sym_none] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1113), + [sym_sink] = ACTIONS(1113), + [sym_integer] = ACTIONS(1113), + [sym_float] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1111), + [sym_multiline_string] = ACTIONS(1111), + [sym_character] = ACTIONS(1111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(857), + [sym__newline] = ACTIONS(1111), }, [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(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_argument_list] = STATE(504), + [ts_builtin_sym_end] = ACTIONS(1111), + [sym_identifier] = ACTIONS(1113), + [anon_sym_import] = ACTIONS(1113), + [anon_sym_hide] = ACTIONS(1113), + [anon_sym_func] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_EQ] = ACTIONS(1113), + [anon_sym_struct] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(1111), + [anon_sym_RBRACE] = ACTIONS(1111), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_DOLLAR] = ACTIONS(1111), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(1113), + [anon_sym_anyopaque] = ACTIONS(1113), + [anon_sym_bool] = ACTIONS(1113), + [anon_sym_int] = ACTIONS(1113), + [anon_sym_float] = ACTIONS(1113), + [anon_sym_range] = ACTIONS(1113), + [anon_sym_i8] = ACTIONS(1113), + [anon_sym_i16] = ACTIONS(1113), + [anon_sym_i32] = ACTIONS(1113), + [anon_sym_i64] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1113), + [anon_sym_u16] = ACTIONS(1113), + [anon_sym_u32] = ACTIONS(1113), + [anon_sym_u64] = ACTIONS(1113), + [anon_sym_isize] = ACTIONS(1113), + [anon_sym_usize] = ACTIONS(1113), + [anon_sym_f32] = ACTIONS(1113), + [anon_sym_f64] = ACTIONS(1113), + [anon_sym_c_char] = ACTIONS(1113), + [anon_sym_c_schar] = ACTIONS(1113), + [anon_sym_c_uchar] = ACTIONS(1113), + [anon_sym_c_short] = ACTIONS(1113), + [anon_sym_c_ushort] = ACTIONS(1113), + [anon_sym_c_int] = ACTIONS(1113), + [anon_sym_c_uint] = ACTIONS(1113), + [anon_sym_c_long] = ACTIONS(1113), + [anon_sym_c_ulong] = ACTIONS(1113), + [anon_sym_c_longlong] = ACTIONS(1113), + [anon_sym_c_ulonglong] = ACTIONS(1113), + [anon_sym_c_float] = ACTIONS(1113), + [anon_sym_c_double] = ACTIONS(1113), + [anon_sym_c_longdouble] = ACTIONS(1113), + [anon_sym_PLUS_EQ] = ACTIONS(1111), + [anon_sym_DASH_EQ] = ACTIONS(1111), + [anon_sym_STAR_EQ] = ACTIONS(1111), + [anon_sym_SLASH_EQ] = ACTIONS(1111), + [anon_sym_return] = ACTIONS(1113), + [anon_sym_yield] = ACTIONS(1113), + [anon_sym_break] = ACTIONS(1113), + [anon_sym_continue] = ACTIONS(1113), + [anon_sym_defer] = ACTIONS(1113), + [anon_sym_errdefer] = ACTIONS(1113), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1113), + [anon_sym_while] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1113), + [anon_sym_DOT_DOT] = ACTIONS(1113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1111), + [anon_sym_orelse] = ACTIONS(1113), + [anon_sym_catch] = ACTIONS(1113), + [anon_sym_or] = ACTIONS(69), + [anon_sym_and] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_try] = ACTIONS(1113), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(1113), + [anon_sym_false] = ACTIONS(1113), + [sym_none] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1113), + [sym_sink] = ACTIONS(1113), + [sym_integer] = ACTIONS(1113), + [sym_float] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1111), + [sym_multiline_string] = ACTIONS(1111), + [sym_character] = ACTIONS(1111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1438), + [sym__newline] = ACTIONS(1111), }, [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), - [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_argument_list] = STATE(504), + [ts_builtin_sym_end] = ACTIONS(1446), + [sym_identifier] = ACTIONS(1448), + [anon_sym_import] = ACTIONS(1448), + [anon_sym_hide] = ACTIONS(1448), + [anon_sym_func] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_EQ] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_DOLLAR] = ACTIONS(1446), + [anon_sym_PIPE] = ACTIONS(1446), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_LBRACK] = ACTIONS(983), + [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(1446), + [anon_sym_DASH_EQ] = ACTIONS(1446), + [anon_sym_STAR_EQ] = ACTIONS(1446), + [anon_sym_SLASH_EQ] = ACTIONS(1446), + [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(1448), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1446), + [anon_sym_orelse] = ACTIONS(1448), + [anon_sym_catch] = ACTIONS(1448), + [anon_sym_or] = ACTIONS(1448), + [anon_sym_and] = ACTIONS(1448), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_try] = ACTIONS(1448), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [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(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(991), + [sym__newline] = ACTIONS(1446), }, [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(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), - [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(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_argument_list] = STATE(504), + [ts_builtin_sym_end] = ACTIONS(1111), + [sym_identifier] = ACTIONS(1113), + [anon_sym_import] = ACTIONS(1113), + [anon_sym_hide] = ACTIONS(1113), + [anon_sym_func] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_EQ] = ACTIONS(1113), + [anon_sym_struct] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(1111), + [anon_sym_LBRACE] = ACTIONS(1111), + [anon_sym_RBRACE] = ACTIONS(1111), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_DOLLAR] = ACTIONS(1111), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(1113), + [anon_sym_anyopaque] = ACTIONS(1113), + [anon_sym_bool] = ACTIONS(1113), + [anon_sym_int] = ACTIONS(1113), + [anon_sym_float] = ACTIONS(1113), + [anon_sym_range] = ACTIONS(1113), + [anon_sym_i8] = ACTIONS(1113), + [anon_sym_i16] = ACTIONS(1113), + [anon_sym_i32] = ACTIONS(1113), + [anon_sym_i64] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1113), + [anon_sym_u16] = ACTIONS(1113), + [anon_sym_u32] = ACTIONS(1113), + [anon_sym_u64] = ACTIONS(1113), + [anon_sym_isize] = ACTIONS(1113), + [anon_sym_usize] = ACTIONS(1113), + [anon_sym_f32] = ACTIONS(1113), + [anon_sym_f64] = ACTIONS(1113), + [anon_sym_c_char] = ACTIONS(1113), + [anon_sym_c_schar] = ACTIONS(1113), + [anon_sym_c_uchar] = ACTIONS(1113), + [anon_sym_c_short] = ACTIONS(1113), + [anon_sym_c_ushort] = ACTIONS(1113), + [anon_sym_c_int] = ACTIONS(1113), + [anon_sym_c_uint] = ACTIONS(1113), + [anon_sym_c_long] = ACTIONS(1113), + [anon_sym_c_ulong] = ACTIONS(1113), + [anon_sym_c_longlong] = ACTIONS(1113), + [anon_sym_c_ulonglong] = ACTIONS(1113), + [anon_sym_c_float] = ACTIONS(1113), + [anon_sym_c_double] = ACTIONS(1113), + [anon_sym_c_longdouble] = ACTIONS(1113), + [anon_sym_PLUS_EQ] = ACTIONS(1111), + [anon_sym_DASH_EQ] = ACTIONS(1111), + [anon_sym_STAR_EQ] = ACTIONS(1111), + [anon_sym_SLASH_EQ] = ACTIONS(1111), + [anon_sym_return] = ACTIONS(1113), + [anon_sym_yield] = ACTIONS(1113), + [anon_sym_break] = ACTIONS(1113), + [anon_sym_continue] = ACTIONS(1113), + [anon_sym_defer] = ACTIONS(1113), + [anon_sym_errdefer] = ACTIONS(1113), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1113), + [anon_sym_while] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1113), + [anon_sym_DOT_DOT] = ACTIONS(1113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1111), + [anon_sym_orelse] = ACTIONS(1113), + [anon_sym_catch] = ACTIONS(1113), + [anon_sym_or] = ACTIONS(1113), + [anon_sym_and] = ACTIONS(1113), + [anon_sym_EQ_EQ] = ACTIONS(1111), + [anon_sym_BANG_EQ] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1113), + [anon_sym_GT_EQ] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_try] = ACTIONS(1113), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(1113), + [anon_sym_false] = ACTIONS(1113), + [sym_none] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1113), + [sym_sink] = ACTIONS(1113), + [sym_integer] = ACTIONS(1113), + [sym_float] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1111), + [sym_multiline_string] = ACTIONS(1111), + [sym_character] = ACTIONS(1111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(927), + [sym__newline] = ACTIONS(1111), }, [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(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(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_variant_payload] = STATE(522), + [ts_builtin_sym_end] = ACTIONS(1431), + [sym_identifier] = ACTIONS(1191), + [anon_sym_import] = ACTIONS(1433), + [anon_sym_hide] = ACTIONS(1433), + [anon_sym_func] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_EQ] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1189), + [anon_sym_RPAREN] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1189), + [anon_sym_RBRACE] = ACTIONS(1431), + [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_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(1431), + [anon_sym_DASH_EQ] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1431), + [anon_sym_SLASH_EQ] = ACTIONS(1431), + [anon_sym_return] = ACTIONS(1191), + [anon_sym_yield] = ACTIONS(1191), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_defer] = ACTIONS(1191), + [anon_sym_errdefer] = ACTIONS(1191), + [anon_sym_if] = ACTIONS(1191), + [anon_sym_else] = ACTIONS(1433), + [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(1438), + [sym__newline] = ACTIONS(1189), }, [STATE(546)] = { - [ts_builtin_sym_end] = ACTIONS(1357), + [ts_builtin_sym_end] = ACTIONS(859), + [sym_identifier] = ACTIONS(854), + [anon_sym_import] = ACTIONS(854), + [anon_sym_hide] = ACTIONS(854), + [anon_sym_func] = ACTIONS(854), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_struct] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_RPAREN] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(856), + [anon_sym_RBRACE] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_DOLLAR] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(859), + [anon_sym_void] = ACTIONS(854), + [anon_sym_anyopaque] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_int] = ACTIONS(854), + [anon_sym_float] = ACTIONS(854), + [anon_sym_range] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_c_char] = ACTIONS(854), + [anon_sym_c_schar] = ACTIONS(854), + [anon_sym_c_uchar] = ACTIONS(854), + [anon_sym_c_short] = ACTIONS(854), + [anon_sym_c_ushort] = ACTIONS(854), + [anon_sym_c_int] = ACTIONS(854), + [anon_sym_c_uint] = ACTIONS(854), + [anon_sym_c_long] = ACTIONS(854), + [anon_sym_c_ulong] = ACTIONS(854), + [anon_sym_c_longlong] = ACTIONS(854), + [anon_sym_c_ulonglong] = ACTIONS(854), + [anon_sym_c_float] = ACTIONS(854), + [anon_sym_c_double] = ACTIONS(854), + [anon_sym_c_longdouble] = ACTIONS(854), + [anon_sym_PLUS_EQ] = ACTIONS(859), + [anon_sym_DASH_EQ] = ACTIONS(859), + [anon_sym_STAR_EQ] = ACTIONS(859), + [anon_sym_SLASH_EQ] = ACTIONS(859), + [anon_sym_return] = ACTIONS(854), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(859), + [anon_sym_break] = ACTIONS(854), + [anon_sym_continue] = ACTIONS(854), + [anon_sym_defer] = ACTIONS(854), + [anon_sym_errdefer] = ACTIONS(854), + [anon_sym_if] = ACTIONS(854), + [anon_sym_else] = ACTIONS(854), + [anon_sym_while] = ACTIONS(854), + [anon_sym_for] = ACTIONS(854), + [anon_sym_match] = ACTIONS(854), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(859), + [anon_sym_orelse] = ACTIONS(854), + [anon_sym_catch] = ACTIONS(854), + [anon_sym_or] = ACTIONS(854), + [anon_sym_and] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(854), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(854), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(859), + [anon_sym_try] = ACTIONS(854), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_true] = ACTIONS(854), + [anon_sym_false] = ACTIONS(854), + [sym_none] = ACTIONS(854), + [sym_undefined] = ACTIONS(854), + [sym_sink] = ACTIONS(854), + [sym_integer] = ACTIONS(854), + [sym_float] = ACTIONS(859), + [anon_sym_DQUOTE] = ACTIONS(859), + [sym_multiline_string] = ACTIONS(859), + [sym_character] = ACTIONS(859), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(859), + }, + [STATE(547)] = { + [sym_argument_list] = STATE(504), + [ts_builtin_sym_end] = ACTIONS(1446), + [sym_identifier] = ACTIONS(1448), + [anon_sym_import] = ACTIONS(1448), + [anon_sym_hide] = ACTIONS(1448), + [anon_sym_func] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_EQ] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_DOLLAR] = ACTIONS(1446), + [anon_sym_PIPE] = ACTIONS(1446), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_LBRACK] = ACTIONS(983), + [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(1446), + [anon_sym_DASH_EQ] = ACTIONS(1446), + [anon_sym_STAR_EQ] = ACTIONS(1446), + [anon_sym_SLASH_EQ] = ACTIONS(1446), + [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(1448), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1446), + [anon_sym_orelse] = ACTIONS(1448), + [anon_sym_catch] = ACTIONS(1448), + [anon_sym_or] = ACTIONS(1448), + [anon_sym_and] = ACTIONS(71), + [anon_sym_EQ_EQ] = ACTIONS(73), + [anon_sym_BANG_EQ] = ACTIONS(73), + [anon_sym_LT] = ACTIONS(75), + [anon_sym_LT_EQ] = ACTIONS(73), + [anon_sym_GT] = ACTIONS(75), + [anon_sym_GT_EQ] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_try] = ACTIONS(1448), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [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(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1446), + }, + [STATE(548)] = { + [ts_builtin_sym_end] = ACTIONS(1409), + [sym_identifier] = ACTIONS(1139), + [anon_sym_import] = ACTIONS(1411), + [anon_sym_hide] = ACTIONS(1411), + [anon_sym_func] = ACTIONS(1139), + [anon_sym_BANG] = ACTIONS(1139), + [anon_sym_EQ] = ACTIONS(1411), + [anon_sym_struct] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1137), + [anon_sym_RPAREN] = ACTIONS(1409), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_RBRACE] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1139), + [anon_sym_DOLLAR] = ACTIONS(1137), + [anon_sym_PIPE] = ACTIONS(1137), + [anon_sym_QMARK] = ACTIONS(1137), + [anon_sym_STAR] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1137), + [anon_sym_void] = ACTIONS(1139), + [anon_sym_anyopaque] = ACTIONS(1139), + [anon_sym_bool] = ACTIONS(1139), + [anon_sym_int] = ACTIONS(1139), + [anon_sym_float] = ACTIONS(1139), + [anon_sym_range] = ACTIONS(1139), + [anon_sym_i8] = ACTIONS(1139), + [anon_sym_i16] = ACTIONS(1139), + [anon_sym_i32] = ACTIONS(1139), + [anon_sym_i64] = ACTIONS(1139), + [anon_sym_u8] = ACTIONS(1139), + [anon_sym_u16] = ACTIONS(1139), + [anon_sym_u32] = ACTIONS(1139), + [anon_sym_u64] = ACTIONS(1139), + [anon_sym_isize] = ACTIONS(1139), + [anon_sym_usize] = ACTIONS(1139), + [anon_sym_f32] = ACTIONS(1139), + [anon_sym_f64] = ACTIONS(1139), + [anon_sym_c_char] = ACTIONS(1139), + [anon_sym_c_schar] = ACTIONS(1139), + [anon_sym_c_uchar] = ACTIONS(1139), + [anon_sym_c_short] = ACTIONS(1139), + [anon_sym_c_ushort] = ACTIONS(1139), + [anon_sym_c_int] = ACTIONS(1139), + [anon_sym_c_uint] = ACTIONS(1139), + [anon_sym_c_long] = ACTIONS(1139), + [anon_sym_c_ulong] = ACTIONS(1139), + [anon_sym_c_longlong] = ACTIONS(1139), + [anon_sym_c_ulonglong] = ACTIONS(1139), + [anon_sym_c_float] = ACTIONS(1139), + [anon_sym_c_double] = ACTIONS(1139), + [anon_sym_c_longdouble] = ACTIONS(1139), + [anon_sym_PLUS_EQ] = ACTIONS(1409), + [anon_sym_DASH_EQ] = ACTIONS(1409), + [anon_sym_STAR_EQ] = ACTIONS(1409), + [anon_sym_SLASH_EQ] = ACTIONS(1409), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_yield] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_defer] = ACTIONS(1139), + [anon_sym_errdefer] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_else] = ACTIONS(1411), + [anon_sym_while] = ACTIONS(1139), + [anon_sym_for] = ACTIONS(1139), + [anon_sym_match] = ACTIONS(1139), + [anon_sym_DOT_DOT] = ACTIONS(1139), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1137), + [anon_sym_orelse] = ACTIONS(1139), + [anon_sym_catch] = ACTIONS(1139), + [anon_sym_or] = ACTIONS(1139), + [anon_sym_and] = ACTIONS(1139), + [anon_sym_EQ_EQ] = ACTIONS(1137), + [anon_sym_BANG_EQ] = ACTIONS(1137), + [anon_sym_LT] = ACTIONS(1139), + [anon_sym_LT_EQ] = ACTIONS(1137), + [anon_sym_GT] = ACTIONS(1139), + [anon_sym_GT_EQ] = ACTIONS(1137), + [anon_sym_PLUS] = ACTIONS(1139), + [anon_sym_SLASH] = ACTIONS(1139), + [anon_sym_AMP] = ACTIONS(1137), + [anon_sym_try] = ACTIONS(1139), + [anon_sym_DOT] = ACTIONS(1139), + [anon_sym_CARET] = ACTIONS(1137), + [anon_sym_true] = ACTIONS(1139), + [anon_sym_false] = ACTIONS(1139), + [sym_none] = ACTIONS(1139), + [sym_undefined] = ACTIONS(1139), + [sym_sink] = ACTIONS(1139), + [sym_integer] = ACTIONS(1139), + [sym_float] = ACTIONS(1137), + [anon_sym_DQUOTE] = ACTIONS(1137), + [sym_multiline_string] = ACTIONS(1137), + [sym_character] = ACTIONS(1137), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1137), + }, + [STATE(549)] = { + [ts_builtin_sym_end] = ACTIONS(1237), + [sym_identifier] = ACTIONS(1043), + [anon_sym_import] = ACTIONS(1239), + [anon_sym_hide] = ACTIONS(1239), + [anon_sym_func] = ACTIONS(1043), + [anon_sym_BANG] = ACTIONS(1043), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_struct] = ACTIONS(1043), + [anon_sym_LPAREN] = ACTIONS(1041), + [anon_sym_RPAREN] = ACTIONS(1237), + [anon_sym_LBRACE] = ACTIONS(1041), + [anon_sym_RBRACE] = ACTIONS(1237), + [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_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(1237), + [anon_sym_DASH_EQ] = ACTIONS(1237), + [anon_sym_STAR_EQ] = ACTIONS(1237), + [anon_sym_SLASH_EQ] = ACTIONS(1237), + [anon_sym_return] = ACTIONS(1043), + [anon_sym_yield] = ACTIONS(1043), + [anon_sym_break] = ACTIONS(1043), + [anon_sym_continue] = ACTIONS(1043), + [anon_sym_defer] = ACTIONS(1043), + [anon_sym_errdefer] = ACTIONS(1043), + [anon_sym_if] = ACTIONS(1043), + [anon_sym_else] = ACTIONS(1239), + [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(1041), + }, + [STATE(550)] = { + [ts_builtin_sym_end] = ACTIONS(1317), + [sym_identifier] = ACTIONS(1051), + [anon_sym_import] = ACTIONS(1319), + [anon_sym_hide] = ACTIONS(1319), + [anon_sym_func] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(1051), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_struct] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1049), + [anon_sym_RPAREN] = ACTIONS(1317), + [anon_sym_LBRACE] = ACTIONS(1049), + [anon_sym_RBRACE] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1051), + [anon_sym_DOLLAR] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_QMARK] = ACTIONS(1049), + [anon_sym_STAR] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1049), + [anon_sym_void] = ACTIONS(1051), + [anon_sym_anyopaque] = ACTIONS(1051), + [anon_sym_bool] = ACTIONS(1051), + [anon_sym_int] = ACTIONS(1051), + [anon_sym_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(1317), + [anon_sym_DASH_EQ] = ACTIONS(1317), + [anon_sym_STAR_EQ] = ACTIONS(1317), + [anon_sym_SLASH_EQ] = ACTIONS(1317), + [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(1319), + [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(1051), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_true] = ACTIONS(1051), + [anon_sym_false] = ACTIONS(1051), + [sym_none] = ACTIONS(1051), + [sym_undefined] = ACTIONS(1051), + [sym_sink] = ACTIONS(1051), + [sym_integer] = ACTIONS(1051), + [sym_float] = ACTIONS(1049), + [anon_sym_DQUOTE] = ACTIONS(1049), + [sym_multiline_string] = ACTIONS(1049), + [sym_character] = ACTIONS(1049), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1049), + }, + [STATE(551)] = { + [sym_argument_list] = STATE(504), + [ts_builtin_sym_end] = ACTIONS(1001), + [sym_identifier] = ACTIONS(1003), + [anon_sym_import] = ACTIONS(1003), + [anon_sym_hide] = ACTIONS(1003), + [anon_sym_func] = ACTIONS(981), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_EQ] = ACTIONS(1003), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_PIPE] = ACTIONS(979), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(981), + [anon_sym_anyopaque] = ACTIONS(981), + [anon_sym_bool] = ACTIONS(981), + [anon_sym_int] = ACTIONS(981), + [anon_sym_float] = ACTIONS(981), + [anon_sym_range] = ACTIONS(981), + [anon_sym_i8] = ACTIONS(981), + [anon_sym_i16] = ACTIONS(981), + [anon_sym_i32] = ACTIONS(981), + [anon_sym_i64] = ACTIONS(981), + [anon_sym_u8] = ACTIONS(981), + [anon_sym_u16] = ACTIONS(981), + [anon_sym_u32] = ACTIONS(981), + [anon_sym_u64] = ACTIONS(981), + [anon_sym_isize] = ACTIONS(981), + [anon_sym_usize] = ACTIONS(981), + [anon_sym_f32] = ACTIONS(981), + [anon_sym_f64] = ACTIONS(981), + [anon_sym_c_char] = ACTIONS(981), + [anon_sym_c_schar] = ACTIONS(981), + [anon_sym_c_uchar] = ACTIONS(981), + [anon_sym_c_short] = ACTIONS(981), + [anon_sym_c_ushort] = ACTIONS(981), + [anon_sym_c_int] = ACTIONS(981), + [anon_sym_c_uint] = ACTIONS(981), + [anon_sym_c_long] = ACTIONS(981), + [anon_sym_c_ulong] = ACTIONS(981), + [anon_sym_c_longlong] = ACTIONS(981), + [anon_sym_c_ulonglong] = ACTIONS(981), + [anon_sym_c_float] = ACTIONS(981), + [anon_sym_c_double] = ACTIONS(981), + [anon_sym_c_longdouble] = ACTIONS(981), + [anon_sym_PLUS_EQ] = ACTIONS(1001), + [anon_sym_DASH_EQ] = ACTIONS(1001), + [anon_sym_STAR_EQ] = ACTIONS(1001), + [anon_sym_SLASH_EQ] = ACTIONS(1001), + [anon_sym_return] = ACTIONS(981), + [anon_sym_yield] = ACTIONS(981), + [anon_sym_break] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_defer] = ACTIONS(981), + [anon_sym_errdefer] = ACTIONS(981), + [anon_sym_if] = ACTIONS(981), + [anon_sym_else] = ACTIONS(1003), + [anon_sym_while] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_match] = ACTIONS(981), + [anon_sym_DOT_DOT] = ACTIONS(1003), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1001), + [anon_sym_orelse] = ACTIONS(1003), + [anon_sym_catch] = ACTIONS(1003), + [anon_sym_or] = ACTIONS(1003), + [anon_sym_and] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1001), + [anon_sym_BANG_EQ] = ACTIONS(1001), + [anon_sym_LT] = ACTIONS(1003), + [anon_sym_LT_EQ] = ACTIONS(1001), + [anon_sym_GT] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_SLASH] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_try] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(981), + [anon_sym_false] = ACTIONS(981), + [sym_none] = ACTIONS(981), + [sym_undefined] = ACTIONS(981), + [sym_sink] = ACTIONS(981), + [sym_integer] = ACTIONS(981), + [sym_float] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [sym_multiline_string] = ACTIONS(979), + [sym_character] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1001), + }, + [STATE(552)] = { + [sym_argument_list] = STATE(504), + [ts_builtin_sym_end] = ACTIONS(1065), + [sym_identifier] = ACTIONS(1067), + [anon_sym_import] = ACTIONS(1067), + [anon_sym_hide] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_EQ] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(1111), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_DOLLAR] = ACTIONS(1111), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(1113), + [anon_sym_anyopaque] = ACTIONS(1113), + [anon_sym_bool] = ACTIONS(1113), + [anon_sym_int] = ACTIONS(1113), + [anon_sym_float] = ACTIONS(1113), + [anon_sym_range] = ACTIONS(1113), + [anon_sym_i8] = ACTIONS(1113), + [anon_sym_i16] = ACTIONS(1113), + [anon_sym_i32] = ACTIONS(1113), + [anon_sym_i64] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1113), + [anon_sym_u16] = ACTIONS(1113), + [anon_sym_u32] = ACTIONS(1113), + [anon_sym_u64] = ACTIONS(1113), + [anon_sym_isize] = ACTIONS(1113), + [anon_sym_usize] = ACTIONS(1113), + [anon_sym_f32] = ACTIONS(1113), + [anon_sym_f64] = ACTIONS(1113), + [anon_sym_c_char] = ACTIONS(1113), + [anon_sym_c_schar] = ACTIONS(1113), + [anon_sym_c_uchar] = ACTIONS(1113), + [anon_sym_c_short] = ACTIONS(1113), + [anon_sym_c_ushort] = ACTIONS(1113), + [anon_sym_c_int] = ACTIONS(1113), + [anon_sym_c_uint] = ACTIONS(1113), + [anon_sym_c_long] = ACTIONS(1113), + [anon_sym_c_ulong] = ACTIONS(1113), + [anon_sym_c_longlong] = ACTIONS(1113), + [anon_sym_c_ulonglong] = ACTIONS(1113), + [anon_sym_c_float] = ACTIONS(1113), + [anon_sym_c_double] = ACTIONS(1113), + [anon_sym_c_longdouble] = ACTIONS(1113), + [anon_sym_PLUS_EQ] = ACTIONS(1065), + [anon_sym_DASH_EQ] = ACTIONS(1065), + [anon_sym_STAR_EQ] = ACTIONS(1065), + [anon_sym_SLASH_EQ] = ACTIONS(1065), + [anon_sym_return] = ACTIONS(1113), + [anon_sym_yield] = ACTIONS(1113), + [anon_sym_break] = ACTIONS(1113), + [anon_sym_continue] = ACTIONS(1113), + [anon_sym_defer] = ACTIONS(1113), + [anon_sym_errdefer] = ACTIONS(1113), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1113), + [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(1111), + [anon_sym_try] = ACTIONS(1113), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(1113), + [anon_sym_false] = ACTIONS(1113), + [sym_none] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1113), + [sym_sink] = ACTIONS(1113), + [sym_integer] = ACTIONS(1113), + [sym_float] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1111), + [sym_multiline_string] = ACTIONS(1111), + [sym_character] = ACTIONS(1111), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1065), + }, + [STATE(553)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1200), + [sym_labeled_block] = STATE(1200), + [sym_if_statement] = STATE(1200), + [sym_while_statement] = STATE(1200), + [sym_for_statement] = STATE(1200), + [sym_match_statement] = STATE(1200), + [sym__value] = STATE(1200), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [ts_builtin_sym_end] = ACTIONS(1427), + [sym_identifier] = ACTIONS(880), + [anon_sym_import] = ACTIONS(1429), + [anon_sym_hide] = ACTIONS(1429), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(53), + [anon_sym_else] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1427), + }, + [STATE(554)] = { + [sym_type] = STATE(2114), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(844), + [anon_sym_COLON_COLON] = ACTIONS(1450), + [anon_sym_func] = ACTIONS(849), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_struct] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_RBRACE] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_DOLLAR] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(867), + [anon_sym_void] = ACTIONS(870), + [anon_sym_anyopaque] = ACTIONS(870), + [anon_sym_bool] = ACTIONS(870), + [anon_sym_int] = ACTIONS(870), + [anon_sym_float] = ACTIONS(870), + [anon_sym_range] = ACTIONS(870), + [anon_sym_i8] = ACTIONS(870), + [anon_sym_i16] = ACTIONS(870), + [anon_sym_i32] = ACTIONS(870), + [anon_sym_i64] = ACTIONS(870), + [anon_sym_u8] = ACTIONS(870), + [anon_sym_u16] = ACTIONS(870), + [anon_sym_u32] = ACTIONS(870), + [anon_sym_u64] = ACTIONS(870), + [anon_sym_isize] = ACTIONS(870), + [anon_sym_usize] = ACTIONS(870), + [anon_sym_f32] = ACTIONS(870), + [anon_sym_f64] = ACTIONS(870), + [anon_sym_c_char] = ACTIONS(870), + [anon_sym_c_schar] = ACTIONS(870), + [anon_sym_c_uchar] = ACTIONS(870), + [anon_sym_c_short] = ACTIONS(870), + [anon_sym_c_ushort] = ACTIONS(870), + [anon_sym_c_int] = ACTIONS(870), + [anon_sym_c_uint] = ACTIONS(870), + [anon_sym_c_long] = ACTIONS(870), + [anon_sym_c_ulong] = ACTIONS(870), + [anon_sym_c_longlong] = ACTIONS(870), + [anon_sym_c_ulonglong] = ACTIONS(870), + [anon_sym_c_float] = ACTIONS(870), + [anon_sym_c_double] = ACTIONS(870), + [anon_sym_c_longdouble] = ACTIONS(870), + [anon_sym_PLUS_EQ] = ACTIONS(859), + [anon_sym_DASH_EQ] = ACTIONS(859), + [anon_sym_STAR_EQ] = ACTIONS(859), + [anon_sym_SLASH_EQ] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(873), + [anon_sym_else] = ACTIONS(854), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(859), + [anon_sym_orelse] = ACTIONS(854), + [anon_sym_catch] = ACTIONS(854), + [anon_sym_or] = ACTIONS(854), + [anon_sym_and] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(854), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(854), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(859), + [anon_sym_try] = ACTIONS(854), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_true] = ACTIONS(854), + [anon_sym_false] = ACTIONS(854), + [sym_none] = ACTIONS(854), + [sym_undefined] = ACTIONS(854), + [sym_sink] = ACTIONS(854), + [sym_integer] = ACTIONS(854), + [sym_float] = ACTIONS(859), + [anon_sym_DQUOTE] = ACTIONS(859), + [sym_multiline_string] = ACTIONS(859), + [sym_character] = ACTIONS(859), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(859), + }, + [STATE(555)] = { + [sym_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(1003), + [anon_sym_func] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_EQ] = ACTIONS(1003), + [anon_sym_struct] = ACTIONS(1003), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_RBRACE] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_DOLLAR] = ACTIONS(1001), + [anon_sym_PIPE] = ACTIONS(979), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(1003), + [anon_sym_anyopaque] = ACTIONS(1003), + [anon_sym_bool] = ACTIONS(1003), + [anon_sym_int] = ACTIONS(1003), + [anon_sym_float] = ACTIONS(1003), + [anon_sym_range] = ACTIONS(1003), + [anon_sym_i8] = ACTIONS(1003), + [anon_sym_i16] = ACTIONS(1003), + [anon_sym_i32] = ACTIONS(1003), + [anon_sym_i64] = ACTIONS(1003), + [anon_sym_u8] = ACTIONS(1003), + [anon_sym_u16] = ACTIONS(1003), + [anon_sym_u32] = ACTIONS(1003), + [anon_sym_u64] = ACTIONS(1003), + [anon_sym_isize] = ACTIONS(1003), + [anon_sym_usize] = ACTIONS(1003), + [anon_sym_f32] = ACTIONS(1003), + [anon_sym_f64] = ACTIONS(1003), + [anon_sym_c_char] = ACTIONS(1003), + [anon_sym_c_schar] = ACTIONS(1003), + [anon_sym_c_uchar] = ACTIONS(1003), + [anon_sym_c_short] = ACTIONS(1003), + [anon_sym_c_ushort] = ACTIONS(1003), + [anon_sym_c_int] = ACTIONS(1003), + [anon_sym_c_uint] = ACTIONS(1003), + [anon_sym_c_long] = ACTIONS(1003), + [anon_sym_c_ulong] = ACTIONS(1003), + [anon_sym_c_longlong] = ACTIONS(1003), + [anon_sym_c_ulonglong] = ACTIONS(1003), + [anon_sym_c_float] = ACTIONS(1003), + [anon_sym_c_double] = ACTIONS(1003), + [anon_sym_c_longdouble] = ACTIONS(1003), + [anon_sym_PLUS_EQ] = ACTIONS(1001), + [anon_sym_DASH_EQ] = ACTIONS(1001), + [anon_sym_STAR_EQ] = ACTIONS(1001), + [anon_sym_SLASH_EQ] = ACTIONS(1001), + [anon_sym_return] = ACTIONS(981), + [anon_sym_yield] = ACTIONS(981), + [anon_sym_break] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_defer] = ACTIONS(981), + [anon_sym_errdefer] = ACTIONS(981), + [anon_sym_if] = ACTIONS(981), + [anon_sym_else] = ACTIONS(1003), + [anon_sym_while] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_match] = ACTIONS(981), + [anon_sym_DOT_DOT] = ACTIONS(1003), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1001), + [anon_sym_orelse] = ACTIONS(1003), + [anon_sym_catch] = ACTIONS(1003), + [anon_sym_or] = ACTIONS(1003), + [anon_sym_and] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1001), + [anon_sym_BANG_EQ] = ACTIONS(1001), + [anon_sym_LT] = ACTIONS(1003), + [anon_sym_LT_EQ] = ACTIONS(1001), + [anon_sym_GT] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_SLASH] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1001), + [anon_sym_try] = ACTIONS(1003), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(1003), + [anon_sym_false] = ACTIONS(1003), + [sym_none] = ACTIONS(1003), + [sym_undefined] = ACTIONS(1003), + [sym_sink] = ACTIONS(1003), + [sym_integer] = ACTIONS(1003), + [sym_float] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1001), + [sym_multiline_string] = ACTIONS(1001), + [sym_character] = ACTIONS(1001), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1001), + }, + [STATE(556)] = { + [sym_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(1003), + [anon_sym_func] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_EQ] = ACTIONS(1003), + [anon_sym_struct] = ACTIONS(1003), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(1001), + [anon_sym_RBRACE] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_DOLLAR] = ACTIONS(1001), + [anon_sym_PIPE] = ACTIONS(979), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(1003), + [anon_sym_anyopaque] = ACTIONS(1003), + [anon_sym_bool] = ACTIONS(1003), + [anon_sym_int] = ACTIONS(1003), + [anon_sym_float] = ACTIONS(1003), + [anon_sym_range] = ACTIONS(1003), + [anon_sym_i8] = ACTIONS(1003), + [anon_sym_i16] = ACTIONS(1003), + [anon_sym_i32] = ACTIONS(1003), + [anon_sym_i64] = ACTIONS(1003), + [anon_sym_u8] = ACTIONS(1003), + [anon_sym_u16] = ACTIONS(1003), + [anon_sym_u32] = ACTIONS(1003), + [anon_sym_u64] = ACTIONS(1003), + [anon_sym_isize] = ACTIONS(1003), + [anon_sym_usize] = ACTIONS(1003), + [anon_sym_f32] = ACTIONS(1003), + [anon_sym_f64] = ACTIONS(1003), + [anon_sym_c_char] = ACTIONS(1003), + [anon_sym_c_schar] = ACTIONS(1003), + [anon_sym_c_uchar] = ACTIONS(1003), + [anon_sym_c_short] = ACTIONS(1003), + [anon_sym_c_ushort] = ACTIONS(1003), + [anon_sym_c_int] = ACTIONS(1003), + [anon_sym_c_uint] = ACTIONS(1003), + [anon_sym_c_long] = ACTIONS(1003), + [anon_sym_c_ulong] = ACTIONS(1003), + [anon_sym_c_longlong] = ACTIONS(1003), + [anon_sym_c_ulonglong] = ACTIONS(1003), + [anon_sym_c_float] = ACTIONS(1003), + [anon_sym_c_double] = ACTIONS(1003), + [anon_sym_c_longdouble] = ACTIONS(1003), + [anon_sym_PLUS_EQ] = ACTIONS(1001), + [anon_sym_DASH_EQ] = ACTIONS(1001), + [anon_sym_STAR_EQ] = ACTIONS(1001), + [anon_sym_SLASH_EQ] = ACTIONS(1001), + [anon_sym_return] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_break] = ACTIONS(1003), + [anon_sym_continue] = ACTIONS(1003), + [anon_sym_defer] = ACTIONS(1003), + [anon_sym_errdefer] = ACTIONS(1003), + [anon_sym_if] = ACTIONS(1003), + [anon_sym_else] = ACTIONS(1003), + [anon_sym_while] = ACTIONS(1003), + [anon_sym_for] = ACTIONS(1003), + [anon_sym_match] = ACTIONS(1003), + [anon_sym_DOT_DOT] = ACTIONS(1003), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1001), + [anon_sym_orelse] = ACTIONS(1003), + [anon_sym_catch] = ACTIONS(1003), + [anon_sym_or] = ACTIONS(1003), + [anon_sym_and] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1001), + [anon_sym_BANG_EQ] = ACTIONS(1001), + [anon_sym_LT] = ACTIONS(1003), + [anon_sym_LT_EQ] = ACTIONS(1001), + [anon_sym_GT] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_SLASH] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1001), + [anon_sym_try] = ACTIONS(1003), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(1003), + [anon_sym_false] = ACTIONS(1003), + [sym_none] = ACTIONS(1003), + [sym_undefined] = ACTIONS(1003), + [sym_sink] = ACTIONS(1003), + [sym_integer] = ACTIONS(1003), + [sym_float] = ACTIONS(1001), + [anon_sym_DQUOTE] = ACTIONS(1001), + [sym_multiline_string] = ACTIONS(1001), + [sym_character] = ACTIONS(1001), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1001), + }, + [STATE(557)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1200), + [sym_labeled_block] = STATE(1200), + [sym_if_statement] = STATE(1200), + [sym_while_statement] = STATE(1200), + [sym_for_statement] = STATE(1200), + [sym_match_statement] = STATE(1200), + [sym__value] = STATE(1200), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [ts_builtin_sym_end] = ACTIONS(1427), + [sym_identifier] = ACTIONS(880), + [anon_sym_import] = ACTIONS(1429), + [anon_sym_hide] = ACTIONS(1429), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1427), + }, + [STATE(558)] = { + [sym_argument_list] = STATE(504), [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_EQ] = ACTIONS(1067), [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_LPAREN] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(1111), + [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_PIPE] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(33), [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_LBRACK] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(983), [anon_sym_void] = ACTIONS(1067), [anon_sym_anyopaque] = ACTIONS(1067), [anon_sym_bool] = ACTIONS(1067), @@ -67019,10 +68551,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(1113), + [anon_sym_yield] = ACTIONS(1113), + [anon_sym_break] = ACTIONS(1113), + [anon_sym_continue] = ACTIONS(1113), + [anon_sym_defer] = ACTIONS(1113), + [anon_sym_errdefer] = ACTIONS(1113), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1113), + [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(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(1067), + [anon_sym_false] = ACTIONS(1067), + [sym_none] = ACTIONS(1067), + [sym_undefined] = ACTIONS(1067), + [sym_sink] = ACTIONS(1067), + [sym_integer] = ACTIONS(1067), + [sym_float] = ACTIONS(1065), + [anon_sym_DQUOTE] = ACTIONS(1065), + [sym_multiline_string] = ACTIONS(1065), + [sym_character] = ACTIONS(1065), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1065), + }, + [STATE(559)] = { + [sym_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(981), + [anon_sym_func] = ACTIONS(981), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_EQ] = ACTIONS(1003), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_PIPE] = ACTIONS(979), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(981), + [anon_sym_anyopaque] = ACTIONS(981), + [anon_sym_bool] = ACTIONS(981), + [anon_sym_int] = ACTIONS(981), + [anon_sym_float] = ACTIONS(981), + [anon_sym_range] = ACTIONS(981), + [anon_sym_i8] = ACTIONS(981), + [anon_sym_i16] = ACTIONS(981), + [anon_sym_i32] = ACTIONS(981), + [anon_sym_i64] = ACTIONS(981), + [anon_sym_u8] = ACTIONS(981), + [anon_sym_u16] = ACTIONS(981), + [anon_sym_u32] = ACTIONS(981), + [anon_sym_u64] = ACTIONS(981), + [anon_sym_isize] = ACTIONS(981), + [anon_sym_usize] = ACTIONS(981), + [anon_sym_f32] = ACTIONS(981), + [anon_sym_f64] = ACTIONS(981), + [anon_sym_c_char] = ACTIONS(981), + [anon_sym_c_schar] = ACTIONS(981), + [anon_sym_c_uchar] = ACTIONS(981), + [anon_sym_c_short] = ACTIONS(981), + [anon_sym_c_ushort] = ACTIONS(981), + [anon_sym_c_int] = ACTIONS(981), + [anon_sym_c_uint] = ACTIONS(981), + [anon_sym_c_long] = ACTIONS(981), + [anon_sym_c_ulong] = ACTIONS(981), + [anon_sym_c_longlong] = ACTIONS(981), + [anon_sym_c_ulonglong] = ACTIONS(981), + [anon_sym_c_float] = ACTIONS(981), + [anon_sym_c_double] = ACTIONS(981), + [anon_sym_c_longdouble] = ACTIONS(981), + [anon_sym_PLUS_EQ] = ACTIONS(1001), + [anon_sym_DASH_EQ] = ACTIONS(1001), + [anon_sym_STAR_EQ] = ACTIONS(1001), + [anon_sym_SLASH_EQ] = ACTIONS(1001), + [anon_sym_return] = ACTIONS(981), + [anon_sym_yield] = ACTIONS(981), + [anon_sym_break] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_defer] = ACTIONS(981), + [anon_sym_errdefer] = ACTIONS(981), + [anon_sym_if] = ACTIONS(981), + [anon_sym_else] = ACTIONS(1003), + [anon_sym_while] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_match] = ACTIONS(981), + [anon_sym_DOT_DOT] = ACTIONS(1003), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1001), + [anon_sym_orelse] = ACTIONS(1003), + [anon_sym_catch] = ACTIONS(1003), + [anon_sym_or] = ACTIONS(1003), + [anon_sym_and] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1001), + [anon_sym_BANG_EQ] = ACTIONS(1001), + [anon_sym_LT] = ACTIONS(1003), + [anon_sym_LT_EQ] = ACTIONS(1001), + [anon_sym_GT] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_SLASH] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_try] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(981), + [anon_sym_false] = ACTIONS(981), + [sym_none] = ACTIONS(981), + [sym_undefined] = ACTIONS(981), + [sym_sink] = ACTIONS(981), + [sym_integer] = ACTIONS(981), + [sym_float] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [sym_multiline_string] = ACTIONS(979), + [sym_character] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1001), + }, + [STATE(560)] = { + [sym_argument_list] = STATE(504), + [sym_identifier] = 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(933), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_DOLLAR] = ACTIONS(1065), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(983), + [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_break] = ACTIONS(1067), @@ -67030,7 +68750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_defer] = ACTIONS(1067), [anon_sym_errdefer] = ACTIONS(1067), [anon_sym_if] = ACTIONS(1067), - [anon_sym_else] = ACTIONS(1359), + [anon_sym_else] = ACTIONS(1067), [anon_sym_while] = ACTIONS(1067), [anon_sym_for] = ACTIONS(1067), [anon_sym_match] = ACTIONS(1067), @@ -67050,8 +68770,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), [anon_sym_true] = ACTIONS(1067), [anon_sym_false] = ACTIONS(1067), [sym_none] = ACTIONS(1067), @@ -67065,1528 +68785,859 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1065), }, - [STATE(547)] = { - [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(965), - }, - [STATE(548)] = { - [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(1017), - }, - [STATE(549)] = { - [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(850), - [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(857), - }, - [STATE(550)] = { - [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(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(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(1033), - }, - [STATE(551)] = { - [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(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(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(1049), - }, - [STATE(552)] = { - [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(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(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(553)] = { - [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(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(1051), - [anon_sym_false] = ACTIONS(1051), - [sym_none] = ACTIONS(1051), - [sym_undefined] = ACTIONS(1051), - [sym_sink] = ACTIONS(1051), - [sym_integer] = ACTIONS(1051), - [sym_float] = ACTIONS(1049), - [anon_sym_DQUOTE] = ACTIONS(1049), - [sym_multiline_string] = ACTIONS(1049), - [sym_character] = ACTIONS(1049), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1049), - }, - [STATE(554)] = { - [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(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(1051), - [anon_sym_false] = ACTIONS(1051), - [sym_none] = ACTIONS(1051), - [sym_undefined] = ACTIONS(1051), - [sym_sink] = ACTIONS(1051), - [sym_integer] = ACTIONS(1051), - [sym_float] = ACTIONS(1049), - [anon_sym_DQUOTE] = ACTIONS(1049), - [sym_multiline_string] = ACTIONS(1049), - [sym_character] = ACTIONS(1049), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1049), - }, - [STATE(555)] = { - [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(1419), - }, - [STATE(556)] = { - [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(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(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(1033), - }, - [STATE(557)] = { - [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(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(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(1049), - }, - [STATE(558)] = { - [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(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(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(559)] = { - [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(991), - }, - [STATE(560)] = { - [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(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(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(1049), - }, [STATE(561)] = { - [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_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(1113), + [anon_sym_func] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_EQ] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(1065), + [anon_sym_LBRACE] = ACTIONS(1111), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_DOLLAR] = ACTIONS(1111), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(1113), + [anon_sym_anyopaque] = ACTIONS(1113), + [anon_sym_bool] = ACTIONS(1113), + [anon_sym_int] = ACTIONS(1113), + [anon_sym_float] = ACTIONS(1113), + [anon_sym_range] = ACTIONS(1113), + [anon_sym_i8] = ACTIONS(1113), + [anon_sym_i16] = ACTIONS(1113), + [anon_sym_i32] = ACTIONS(1113), + [anon_sym_i64] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1113), + [anon_sym_u16] = ACTIONS(1113), + [anon_sym_u32] = ACTIONS(1113), + [anon_sym_u64] = ACTIONS(1113), + [anon_sym_isize] = ACTIONS(1113), + [anon_sym_usize] = ACTIONS(1113), + [anon_sym_f32] = ACTIONS(1113), + [anon_sym_f64] = ACTIONS(1113), + [anon_sym_c_char] = ACTIONS(1113), + [anon_sym_c_schar] = ACTIONS(1113), + [anon_sym_c_uchar] = ACTIONS(1113), + [anon_sym_c_short] = ACTIONS(1113), + [anon_sym_c_ushort] = ACTIONS(1113), + [anon_sym_c_int] = ACTIONS(1113), + [anon_sym_c_uint] = ACTIONS(1113), + [anon_sym_c_long] = ACTIONS(1113), + [anon_sym_c_ulong] = ACTIONS(1113), + [anon_sym_c_longlong] = ACTIONS(1113), + [anon_sym_c_ulonglong] = ACTIONS(1113), + [anon_sym_c_float] = ACTIONS(1113), + [anon_sym_c_double] = ACTIONS(1113), + [anon_sym_c_longdouble] = ACTIONS(1113), + [anon_sym_PLUS_EQ] = ACTIONS(1065), + [anon_sym_DASH_EQ] = ACTIONS(1065), + [anon_sym_STAR_EQ] = ACTIONS(1065), + [anon_sym_SLASH_EQ] = ACTIONS(1065), + [anon_sym_return] = ACTIONS(1113), + [anon_sym_yield] = ACTIONS(1113), + [anon_sym_break] = ACTIONS(1113), + [anon_sym_continue] = ACTIONS(1113), + [anon_sym_defer] = ACTIONS(1113), + [anon_sym_errdefer] = ACTIONS(1113), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1113), + [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(1111), + [anon_sym_try] = ACTIONS(1113), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(1113), + [anon_sym_false] = ACTIONS(1113), + [sym_none] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1113), + [sym_sink] = ACTIONS(1113), + [sym_integer] = ACTIONS(1113), + [sym_float] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1111), + [sym_multiline_string] = ACTIONS(1111), + [sym_character] = ACTIONS(1111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1419), + [sym__newline] = ACTIONS(1065), }, [STATE(562)] = { - [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(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(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_type] = STATE(2114), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(844), + [anon_sym_COLON_COLON] = ACTIONS(1450), + [anon_sym_func] = ACTIONS(849), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_struct] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(859), + [anon_sym_RBRACE] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_DOLLAR] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(867), + [anon_sym_void] = ACTIONS(870), + [anon_sym_anyopaque] = ACTIONS(870), + [anon_sym_bool] = ACTIONS(870), + [anon_sym_int] = ACTIONS(870), + [anon_sym_float] = ACTIONS(870), + [anon_sym_range] = ACTIONS(870), + [anon_sym_i8] = ACTIONS(870), + [anon_sym_i16] = ACTIONS(870), + [anon_sym_i32] = ACTIONS(870), + [anon_sym_i64] = ACTIONS(870), + [anon_sym_u8] = ACTIONS(870), + [anon_sym_u16] = ACTIONS(870), + [anon_sym_u32] = ACTIONS(870), + [anon_sym_u64] = ACTIONS(870), + [anon_sym_isize] = ACTIONS(870), + [anon_sym_usize] = ACTIONS(870), + [anon_sym_f32] = ACTIONS(870), + [anon_sym_f64] = ACTIONS(870), + [anon_sym_c_char] = ACTIONS(870), + [anon_sym_c_schar] = ACTIONS(870), + [anon_sym_c_uchar] = ACTIONS(870), + [anon_sym_c_short] = ACTIONS(870), + [anon_sym_c_ushort] = ACTIONS(870), + [anon_sym_c_int] = ACTIONS(870), + [anon_sym_c_uint] = ACTIONS(870), + [anon_sym_c_long] = ACTIONS(870), + [anon_sym_c_ulong] = ACTIONS(870), + [anon_sym_c_longlong] = ACTIONS(870), + [anon_sym_c_ulonglong] = ACTIONS(870), + [anon_sym_c_float] = ACTIONS(870), + [anon_sym_c_double] = ACTIONS(870), + [anon_sym_c_longdouble] = ACTIONS(870), + [anon_sym_PLUS_EQ] = ACTIONS(859), + [anon_sym_DASH_EQ] = ACTIONS(859), + [anon_sym_STAR_EQ] = ACTIONS(859), + [anon_sym_SLASH_EQ] = ACTIONS(859), + [anon_sym_else] = ACTIONS(854), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(859), + [anon_sym_orelse] = ACTIONS(854), + [anon_sym_catch] = ACTIONS(854), + [anon_sym_or] = ACTIONS(854), + [anon_sym_and] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(854), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(854), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(859), + [anon_sym_try] = ACTIONS(854), + [anon_sym_DOT] = ACTIONS(854), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_true] = ACTIONS(854), + [anon_sym_false] = ACTIONS(854), + [sym_none] = ACTIONS(854), + [sym_undefined] = ACTIONS(854), + [sym_sink] = ACTIONS(854), + [sym_integer] = ACTIONS(854), + [sym_float] = ACTIONS(859), + [anon_sym_DQUOTE] = ACTIONS(859), + [sym_multiline_string] = ACTIONS(859), + [sym_character] = ACTIONS(859), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(927), + [sym__newline] = ACTIONS(859), }, [STATE(563)] = { - [sym_argument_list] = STATE(523), + [sym_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(1444), + [anon_sym_func] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_EQ] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DOLLAR] = ACTIONS(1442), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_anyopaque] = ACTIONS(1444), + [anon_sym_bool] = ACTIONS(1444), + [anon_sym_int] = ACTIONS(1444), + [anon_sym_float] = ACTIONS(1444), + [anon_sym_range] = ACTIONS(1444), + [anon_sym_i8] = ACTIONS(1444), + [anon_sym_i16] = ACTIONS(1444), + [anon_sym_i32] = ACTIONS(1444), + [anon_sym_i64] = ACTIONS(1444), + [anon_sym_u8] = ACTIONS(1444), + [anon_sym_u16] = ACTIONS(1444), + [anon_sym_u32] = ACTIONS(1444), + [anon_sym_u64] = ACTIONS(1444), + [anon_sym_isize] = ACTIONS(1444), + [anon_sym_usize] = ACTIONS(1444), + [anon_sym_f32] = ACTIONS(1444), + [anon_sym_f64] = ACTIONS(1444), + [anon_sym_c_char] = ACTIONS(1444), + [anon_sym_c_schar] = ACTIONS(1444), + [anon_sym_c_uchar] = ACTIONS(1444), + [anon_sym_c_short] = ACTIONS(1444), + [anon_sym_c_ushort] = ACTIONS(1444), + [anon_sym_c_int] = ACTIONS(1444), + [anon_sym_c_uint] = ACTIONS(1444), + [anon_sym_c_long] = ACTIONS(1444), + [anon_sym_c_ulong] = ACTIONS(1444), + [anon_sym_c_longlong] = ACTIONS(1444), + [anon_sym_c_ulonglong] = ACTIONS(1444), + [anon_sym_c_float] = ACTIONS(1444), + [anon_sym_c_double] = ACTIONS(1444), + [anon_sym_c_longdouble] = ACTIONS(1444), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_defer] = ACTIONS(1444), + [anon_sym_errdefer] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_else] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_DOT_DOT] = ACTIONS(1444), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1442), + [anon_sym_orelse] = ACTIONS(1444), + [anon_sym_catch] = ACTIONS(1444), + [anon_sym_or] = ACTIONS(1444), + [anon_sym_and] = ACTIONS(1456), + [anon_sym_EQ_EQ] = ACTIONS(1458), + [anon_sym_BANG_EQ] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1460), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_SLASH] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_try] = ACTIONS(1444), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(1444), + [anon_sym_false] = ACTIONS(1444), + [sym_none] = ACTIONS(1444), + [sym_undefined] = ACTIONS(1444), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [sym_multiline_string] = ACTIONS(1442), + [sym_character] = ACTIONS(1442), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1442), + }, + [STATE(564)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1200), + [sym_labeled_block] = STATE(1200), + [sym_if_statement] = STATE(1200), + [sym_while_statement] = STATE(1200), + [sym_for_statement] = STATE(1200), + [sym_match_statement] = STATE(1200), + [sym__value] = STATE(1200), + [sym_expression] = STATE(1007), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1427), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(167), + [anon_sym_else] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1427), + }, + [STATE(565)] = { + [sym_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(981), + [anon_sym_func] = ACTIONS(981), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_EQ] = ACTIONS(981), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_RBRACE] = ACTIONS(979), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(981), + [anon_sym_anyopaque] = ACTIONS(981), + [anon_sym_bool] = ACTIONS(981), + [anon_sym_int] = ACTIONS(981), + [anon_sym_float] = ACTIONS(981), + [anon_sym_range] = ACTIONS(981), + [anon_sym_i8] = ACTIONS(981), + [anon_sym_i16] = ACTIONS(981), + [anon_sym_i32] = ACTIONS(981), + [anon_sym_i64] = ACTIONS(981), + [anon_sym_u8] = ACTIONS(981), + [anon_sym_u16] = ACTIONS(981), + [anon_sym_u32] = ACTIONS(981), + [anon_sym_u64] = ACTIONS(981), + [anon_sym_isize] = ACTIONS(981), + [anon_sym_usize] = ACTIONS(981), + [anon_sym_f32] = ACTIONS(981), + [anon_sym_f64] = ACTIONS(981), + [anon_sym_c_char] = ACTIONS(981), + [anon_sym_c_schar] = ACTIONS(981), + [anon_sym_c_uchar] = ACTIONS(981), + [anon_sym_c_short] = ACTIONS(981), + [anon_sym_c_ushort] = ACTIONS(981), + [anon_sym_c_int] = ACTIONS(981), + [anon_sym_c_uint] = ACTIONS(981), + [anon_sym_c_long] = ACTIONS(981), + [anon_sym_c_ulong] = ACTIONS(981), + [anon_sym_c_longlong] = ACTIONS(981), + [anon_sym_c_ulonglong] = ACTIONS(981), + [anon_sym_c_float] = ACTIONS(981), + [anon_sym_c_double] = ACTIONS(981), + [anon_sym_c_longdouble] = ACTIONS(981), + [anon_sym_PLUS_EQ] = ACTIONS(979), + [anon_sym_DASH_EQ] = ACTIONS(979), + [anon_sym_STAR_EQ] = ACTIONS(979), + [anon_sym_SLASH_EQ] = ACTIONS(979), + [anon_sym_return] = ACTIONS(981), + [anon_sym_yield] = ACTIONS(981), + [anon_sym_break] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_defer] = ACTIONS(981), + [anon_sym_errdefer] = ACTIONS(981), + [anon_sym_if] = ACTIONS(981), + [anon_sym_else] = ACTIONS(981), + [anon_sym_while] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_match] = ACTIONS(981), + [anon_sym_DOT_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT_EQ] = ACTIONS(979), + [anon_sym_orelse] = ACTIONS(981), + [anon_sym_catch] = ACTIONS(981), + [anon_sym_or] = ACTIONS(981), + [anon_sym_and] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(979), + [anon_sym_BANG_EQ] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(981), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(979), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_SLASH] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_try] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(981), + [anon_sym_false] = ACTIONS(981), + [sym_none] = ACTIONS(981), + [sym_undefined] = ACTIONS(981), + [sym_sink] = ACTIONS(981), + [sym_integer] = ACTIONS(981), + [sym_float] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [sym_multiline_string] = ACTIONS(979), + [sym_character] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(979), + }, + [STATE(566)] = { + [sym_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(1444), + [anon_sym_func] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_EQ] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DOLLAR] = ACTIONS(1442), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_anyopaque] = ACTIONS(1444), + [anon_sym_bool] = ACTIONS(1444), + [anon_sym_int] = ACTIONS(1444), + [anon_sym_float] = ACTIONS(1444), + [anon_sym_range] = ACTIONS(1444), + [anon_sym_i8] = ACTIONS(1444), + [anon_sym_i16] = ACTIONS(1444), + [anon_sym_i32] = ACTIONS(1444), + [anon_sym_i64] = ACTIONS(1444), + [anon_sym_u8] = ACTIONS(1444), + [anon_sym_u16] = ACTIONS(1444), + [anon_sym_u32] = ACTIONS(1444), + [anon_sym_u64] = ACTIONS(1444), + [anon_sym_isize] = ACTIONS(1444), + [anon_sym_usize] = ACTIONS(1444), + [anon_sym_f32] = ACTIONS(1444), + [anon_sym_f64] = ACTIONS(1444), + [anon_sym_c_char] = ACTIONS(1444), + [anon_sym_c_schar] = ACTIONS(1444), + [anon_sym_c_uchar] = ACTIONS(1444), + [anon_sym_c_short] = ACTIONS(1444), + [anon_sym_c_ushort] = ACTIONS(1444), + [anon_sym_c_int] = ACTIONS(1444), + [anon_sym_c_uint] = ACTIONS(1444), + [anon_sym_c_long] = ACTIONS(1444), + [anon_sym_c_ulong] = ACTIONS(1444), + [anon_sym_c_longlong] = ACTIONS(1444), + [anon_sym_c_ulonglong] = ACTIONS(1444), + [anon_sym_c_float] = ACTIONS(1444), + [anon_sym_c_double] = ACTIONS(1444), + [anon_sym_c_longdouble] = ACTIONS(1444), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_defer] = ACTIONS(1444), + [anon_sym_errdefer] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_else] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_DOT_DOT] = ACTIONS(1444), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1442), + [anon_sym_orelse] = ACTIONS(1444), + [anon_sym_catch] = ACTIONS(1444), + [anon_sym_or] = ACTIONS(1444), + [anon_sym_and] = ACTIONS(1444), + [anon_sym_EQ_EQ] = ACTIONS(1458), + [anon_sym_BANG_EQ] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1460), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_SLASH] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_try] = ACTIONS(1444), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(1444), + [anon_sym_false] = ACTIONS(1444), + [sym_none] = ACTIONS(1444), + [sym_undefined] = ACTIONS(1444), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [sym_multiline_string] = ACTIONS(1442), + [sym_character] = ACTIONS(1442), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1442), + }, + [STATE(567)] = { + [sym_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(1113), + [anon_sym_func] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_EQ] = ACTIONS(1113), + [anon_sym_struct] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(1111), + [anon_sym_RBRACE] = ACTIONS(1111), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_DOLLAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(1113), + [anon_sym_anyopaque] = ACTIONS(1113), + [anon_sym_bool] = ACTIONS(1113), + [anon_sym_int] = ACTIONS(1113), + [anon_sym_float] = ACTIONS(1113), + [anon_sym_range] = ACTIONS(1113), + [anon_sym_i8] = ACTIONS(1113), + [anon_sym_i16] = ACTIONS(1113), + [anon_sym_i32] = ACTIONS(1113), + [anon_sym_i64] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1113), + [anon_sym_u16] = ACTIONS(1113), + [anon_sym_u32] = ACTIONS(1113), + [anon_sym_u64] = ACTIONS(1113), + [anon_sym_isize] = ACTIONS(1113), + [anon_sym_usize] = ACTIONS(1113), + [anon_sym_f32] = ACTIONS(1113), + [anon_sym_f64] = ACTIONS(1113), + [anon_sym_c_char] = ACTIONS(1113), + [anon_sym_c_schar] = ACTIONS(1113), + [anon_sym_c_uchar] = ACTIONS(1113), + [anon_sym_c_short] = ACTIONS(1113), + [anon_sym_c_ushort] = ACTIONS(1113), + [anon_sym_c_int] = ACTIONS(1113), + [anon_sym_c_uint] = ACTIONS(1113), + [anon_sym_c_long] = ACTIONS(1113), + [anon_sym_c_ulong] = ACTIONS(1113), + [anon_sym_c_longlong] = ACTIONS(1113), + [anon_sym_c_ulonglong] = ACTIONS(1113), + [anon_sym_c_float] = ACTIONS(1113), + [anon_sym_c_double] = ACTIONS(1113), + [anon_sym_c_longdouble] = ACTIONS(1113), + [anon_sym_PLUS_EQ] = ACTIONS(1111), + [anon_sym_DASH_EQ] = ACTIONS(1111), + [anon_sym_STAR_EQ] = ACTIONS(1111), + [anon_sym_SLASH_EQ] = ACTIONS(1111), + [anon_sym_return] = ACTIONS(1113), + [anon_sym_yield] = ACTIONS(1113), + [anon_sym_break] = ACTIONS(1113), + [anon_sym_continue] = ACTIONS(1113), + [anon_sym_defer] = ACTIONS(1113), + [anon_sym_errdefer] = ACTIONS(1113), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1113), + [anon_sym_while] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1113), + [anon_sym_DOT_DOT] = ACTIONS(1113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1111), + [anon_sym_orelse] = ACTIONS(1113), + [anon_sym_catch] = ACTIONS(1113), + [anon_sym_or] = ACTIONS(1113), + [anon_sym_and] = ACTIONS(1113), + [anon_sym_EQ_EQ] = ACTIONS(1111), + [anon_sym_BANG_EQ] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1113), + [anon_sym_GT_EQ] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_SLASH] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_try] = ACTIONS(1113), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(1113), + [anon_sym_false] = ACTIONS(1113), + [sym_none] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1113), + [sym_sink] = ACTIONS(1113), + [sym_integer] = ACTIONS(1113), + [sym_float] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1111), + [sym_multiline_string] = ACTIONS(1111), + [sym_character] = ACTIONS(1111), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1111), + }, + [STATE(568)] = { + [sym_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(1113), + [anon_sym_func] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_EQ] = ACTIONS(1113), + [anon_sym_struct] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(1111), + [anon_sym_RBRACE] = ACTIONS(1111), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DOLLAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(1113), + [anon_sym_anyopaque] = ACTIONS(1113), + [anon_sym_bool] = ACTIONS(1113), + [anon_sym_int] = ACTIONS(1113), + [anon_sym_float] = ACTIONS(1113), + [anon_sym_range] = ACTIONS(1113), + [anon_sym_i8] = ACTIONS(1113), + [anon_sym_i16] = ACTIONS(1113), + [anon_sym_i32] = ACTIONS(1113), + [anon_sym_i64] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1113), + [anon_sym_u16] = ACTIONS(1113), + [anon_sym_u32] = ACTIONS(1113), + [anon_sym_u64] = ACTIONS(1113), + [anon_sym_isize] = ACTIONS(1113), + [anon_sym_usize] = ACTIONS(1113), + [anon_sym_f32] = ACTIONS(1113), + [anon_sym_f64] = ACTIONS(1113), + [anon_sym_c_char] = ACTIONS(1113), + [anon_sym_c_schar] = ACTIONS(1113), + [anon_sym_c_uchar] = ACTIONS(1113), + [anon_sym_c_short] = ACTIONS(1113), + [anon_sym_c_ushort] = ACTIONS(1113), + [anon_sym_c_int] = ACTIONS(1113), + [anon_sym_c_uint] = ACTIONS(1113), + [anon_sym_c_long] = ACTIONS(1113), + [anon_sym_c_ulong] = ACTIONS(1113), + [anon_sym_c_longlong] = ACTIONS(1113), + [anon_sym_c_ulonglong] = ACTIONS(1113), + [anon_sym_c_float] = ACTIONS(1113), + [anon_sym_c_double] = ACTIONS(1113), + [anon_sym_c_longdouble] = ACTIONS(1113), + [anon_sym_PLUS_EQ] = ACTIONS(1111), + [anon_sym_DASH_EQ] = ACTIONS(1111), + [anon_sym_STAR_EQ] = ACTIONS(1111), + [anon_sym_SLASH_EQ] = ACTIONS(1111), + [anon_sym_return] = ACTIONS(1113), + [anon_sym_yield] = ACTIONS(1113), + [anon_sym_break] = ACTIONS(1113), + [anon_sym_continue] = ACTIONS(1113), + [anon_sym_defer] = ACTIONS(1113), + [anon_sym_errdefer] = ACTIONS(1113), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1113), + [anon_sym_while] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1113), + [anon_sym_DOT_DOT] = ACTIONS(1113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1111), + [anon_sym_orelse] = ACTIONS(1462), + [anon_sym_catch] = ACTIONS(1464), + [anon_sym_or] = ACTIONS(1466), + [anon_sym_and] = ACTIONS(1456), + [anon_sym_EQ_EQ] = ACTIONS(1458), + [anon_sym_BANG_EQ] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1460), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_SLASH] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_try] = ACTIONS(1113), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(1113), + [anon_sym_false] = ACTIONS(1113), + [sym_none] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1113), + [sym_sink] = ACTIONS(1113), + [sym_integer] = ACTIONS(1113), + [sym_float] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1111), + [sym_multiline_string] = ACTIONS(1111), + [sym_character] = ACTIONS(1111), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1111), + }, + [STATE(569)] = { + [sym_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(1113), + [anon_sym_func] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_EQ] = ACTIONS(1113), + [anon_sym_struct] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(1111), + [anon_sym_RBRACE] = ACTIONS(1111), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DOLLAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(1113), + [anon_sym_anyopaque] = ACTIONS(1113), + [anon_sym_bool] = ACTIONS(1113), + [anon_sym_int] = ACTIONS(1113), + [anon_sym_float] = ACTIONS(1113), + [anon_sym_range] = ACTIONS(1113), + [anon_sym_i8] = ACTIONS(1113), + [anon_sym_i16] = ACTIONS(1113), + [anon_sym_i32] = ACTIONS(1113), + [anon_sym_i64] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1113), + [anon_sym_u16] = ACTIONS(1113), + [anon_sym_u32] = ACTIONS(1113), + [anon_sym_u64] = ACTIONS(1113), + [anon_sym_isize] = ACTIONS(1113), + [anon_sym_usize] = ACTIONS(1113), + [anon_sym_f32] = ACTIONS(1113), + [anon_sym_f64] = ACTIONS(1113), + [anon_sym_c_char] = ACTIONS(1113), + [anon_sym_c_schar] = ACTIONS(1113), + [anon_sym_c_uchar] = ACTIONS(1113), + [anon_sym_c_short] = ACTIONS(1113), + [anon_sym_c_ushort] = ACTIONS(1113), + [anon_sym_c_int] = ACTIONS(1113), + [anon_sym_c_uint] = ACTIONS(1113), + [anon_sym_c_long] = ACTIONS(1113), + [anon_sym_c_ulong] = ACTIONS(1113), + [anon_sym_c_longlong] = ACTIONS(1113), + [anon_sym_c_ulonglong] = ACTIONS(1113), + [anon_sym_c_float] = ACTIONS(1113), + [anon_sym_c_double] = ACTIONS(1113), + [anon_sym_c_longdouble] = ACTIONS(1113), + [anon_sym_PLUS_EQ] = ACTIONS(1111), + [anon_sym_DASH_EQ] = ACTIONS(1111), + [anon_sym_STAR_EQ] = ACTIONS(1111), + [anon_sym_SLASH_EQ] = ACTIONS(1111), + [anon_sym_return] = ACTIONS(1113), + [anon_sym_yield] = ACTIONS(1113), + [anon_sym_break] = ACTIONS(1113), + [anon_sym_continue] = ACTIONS(1113), + [anon_sym_defer] = ACTIONS(1113), + [anon_sym_errdefer] = ACTIONS(1113), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1113), + [anon_sym_while] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1113), + [anon_sym_DOT_DOT] = ACTIONS(1113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1111), + [anon_sym_orelse] = ACTIONS(1113), + [anon_sym_catch] = ACTIONS(1113), + [anon_sym_or] = ACTIONS(1466), + [anon_sym_and] = ACTIONS(1456), + [anon_sym_EQ_EQ] = ACTIONS(1458), + [anon_sym_BANG_EQ] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1460), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_SLASH] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_try] = ACTIONS(1113), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(1113), + [anon_sym_false] = ACTIONS(1113), + [sym_none] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1113), + [sym_sink] = ACTIONS(1113), + [sym_integer] = ACTIONS(1113), + [sym_float] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1111), + [sym_multiline_string] = ACTIONS(1111), + [sym_character] = ACTIONS(1111), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1111), + }, + [STATE(570)] = { + [sym_argument_list] = STATE(504), [sym_identifier] = ACTIONS(1448), [anon_sym_func] = ACTIONS(1448), [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(1450), + [anon_sym_EQ] = ACTIONS(1448), [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_LPAREN] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DOLLAR] = ACTIONS(1446), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(983), [anon_sym_void] = ACTIONS(1448), [anon_sym_anyopaque] = ACTIONS(1448), [anon_sym_bool] = ACTIONS(1448), @@ -68619,10 +69670,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_PLUS_EQ] = ACTIONS(1446), + [anon_sym_DASH_EQ] = ACTIONS(1446), + [anon_sym_STAR_EQ] = ACTIONS(1446), + [anon_sym_SLASH_EQ] = ACTIONS(1446), [anon_sym_return] = ACTIONS(1448), [anon_sym_yield] = ACTIONS(1448), [anon_sym_break] = ACTIONS(1448), @@ -68634,4574 +69685,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_DOT_DOT] = ACTIONS(1448), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1446), + [anon_sym_orelse] = ACTIONS(1448), + [anon_sym_catch] = ACTIONS(1448), + [anon_sym_or] = ACTIONS(1448), + [anon_sym_and] = ACTIONS(1456), + [anon_sym_EQ_EQ] = ACTIONS(1458), + [anon_sym_BANG_EQ] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1460), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_SLASH] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1446), [anon_sym_try] = ACTIONS(1448), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_CARET] = ACTIONS(31), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), [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_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1452), - }, - [STATE(564)] = { - [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(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(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(565)] = { - [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(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(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(566)] = { - [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(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(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(567)] = { - [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(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(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(568)] = { - [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(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(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(569)] = { - [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(857), - }, - [STATE(570)] = { - [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(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(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(1033), + [sym__newline] = ACTIONS(1446), }, [STATE(571)] = { - [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(193), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_LBRACE] = ACTIONS(23), - [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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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_else] = ACTIONS(1421), - [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(1419), - }, - [STATE(572)] = { - [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(1419), - }, - [STATE(573)] = { - [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(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(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(574)] = { - [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(991), - }, - [STATE(575)] = { - [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(991), - }, - [STATE(576)] = { - [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(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(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), - [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(227), - }, - [STATE(580)] = { - [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(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(227), - }, - [STATE(581)] = { - [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(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(582)] = { - [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(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(1472), - }, - [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(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(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), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1498), - }, - [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(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(1500), - }, - [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(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(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), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1502), - }, - [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), - [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(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_argument_list] = STATE(504), [sym_identifier] = ACTIONS(1448), [anon_sym_func] = ACTIONS(1448), [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(1504), + [anon_sym_EQ] = ACTIONS(1448), [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_LPAREN] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DOLLAR] = ACTIONS(1446), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(983), [anon_sym_void] = ACTIONS(1448), [anon_sym_anyopaque] = ACTIONS(1448), [anon_sym_bool] = ACTIONS(1448), @@ -73234,10 +69763,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_PLUS_EQ] = ACTIONS(1446), + [anon_sym_DASH_EQ] = ACTIONS(1446), + [anon_sym_STAR_EQ] = ACTIONS(1446), + [anon_sym_SLASH_EQ] = ACTIONS(1446), [anon_sym_return] = ACTIONS(1448), [anon_sym_yield] = ACTIONS(1448), [anon_sym_break] = ACTIONS(1448), @@ -73245,596 +69774,3549 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_DOT_DOT] = ACTIONS(1448), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1446), + [anon_sym_orelse] = ACTIONS(1448), + [anon_sym_catch] = ACTIONS(1448), + [anon_sym_or] = ACTIONS(1448), + [anon_sym_and] = ACTIONS(1448), + [anon_sym_EQ_EQ] = ACTIONS(1458), + [anon_sym_BANG_EQ] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1460), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_SLASH] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1446), [anon_sym_try] = ACTIONS(1448), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_CARET] = ACTIONS(31), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), [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_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1452), + [sym__newline] = ACTIONS(1446), }, - [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), + [STATE(572)] = { + [sym_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(1113), + [anon_sym_func] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_EQ] = ACTIONS(1113), + [anon_sym_struct] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(1111), + [anon_sym_RBRACE] = ACTIONS(1111), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DOLLAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(1113), + [anon_sym_anyopaque] = ACTIONS(1113), + [anon_sym_bool] = ACTIONS(1113), + [anon_sym_int] = ACTIONS(1113), + [anon_sym_float] = ACTIONS(1113), + [anon_sym_range] = ACTIONS(1113), + [anon_sym_i8] = ACTIONS(1113), + [anon_sym_i16] = ACTIONS(1113), + [anon_sym_i32] = ACTIONS(1113), + [anon_sym_i64] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1113), + [anon_sym_u16] = ACTIONS(1113), + [anon_sym_u32] = ACTIONS(1113), + [anon_sym_u64] = ACTIONS(1113), + [anon_sym_isize] = ACTIONS(1113), + [anon_sym_usize] = ACTIONS(1113), + [anon_sym_f32] = ACTIONS(1113), + [anon_sym_f64] = ACTIONS(1113), + [anon_sym_c_char] = ACTIONS(1113), + [anon_sym_c_schar] = ACTIONS(1113), + [anon_sym_c_uchar] = ACTIONS(1113), + [anon_sym_c_short] = ACTIONS(1113), + [anon_sym_c_ushort] = ACTIONS(1113), + [anon_sym_c_int] = ACTIONS(1113), + [anon_sym_c_uint] = ACTIONS(1113), + [anon_sym_c_long] = ACTIONS(1113), + [anon_sym_c_ulong] = ACTIONS(1113), + [anon_sym_c_longlong] = ACTIONS(1113), + [anon_sym_c_ulonglong] = ACTIONS(1113), + [anon_sym_c_float] = ACTIONS(1113), + [anon_sym_c_double] = ACTIONS(1113), + [anon_sym_c_longdouble] = ACTIONS(1113), + [anon_sym_PLUS_EQ] = ACTIONS(1111), + [anon_sym_DASH_EQ] = ACTIONS(1111), + [anon_sym_STAR_EQ] = ACTIONS(1111), + [anon_sym_SLASH_EQ] = ACTIONS(1111), + [anon_sym_return] = ACTIONS(1113), + [anon_sym_yield] = ACTIONS(1113), + [anon_sym_break] = ACTIONS(1113), + [anon_sym_continue] = ACTIONS(1113), + [anon_sym_defer] = ACTIONS(1113), + [anon_sym_errdefer] = ACTIONS(1113), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1113), + [anon_sym_while] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1113), + [anon_sym_DOT_DOT] = ACTIONS(1113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1111), + [anon_sym_orelse] = ACTIONS(1113), + [anon_sym_catch] = ACTIONS(1113), + [anon_sym_or] = ACTIONS(1113), + [anon_sym_and] = ACTIONS(1113), + [anon_sym_EQ_EQ] = ACTIONS(1111), + [anon_sym_BANG_EQ] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1113), + [anon_sym_GT_EQ] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_SLASH] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_try] = ACTIONS(1113), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(1113), + [anon_sym_false] = ACTIONS(1113), + [sym_none] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1113), + [sym_sink] = ACTIONS(1113), + [sym_integer] = ACTIONS(1113), + [sym_float] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1111), + [sym_multiline_string] = ACTIONS(1111), + [sym_character] = ACTIONS(1111), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1111), + }, + [STATE(573)] = { + [sym_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(981), + [anon_sym_func] = ACTIONS(981), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_EQ] = ACTIONS(981), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_RBRACE] = ACTIONS(979), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(981), + [anon_sym_anyopaque] = ACTIONS(981), + [anon_sym_bool] = ACTIONS(981), + [anon_sym_int] = ACTIONS(981), + [anon_sym_float] = ACTIONS(981), + [anon_sym_range] = ACTIONS(981), + [anon_sym_i8] = ACTIONS(981), + [anon_sym_i16] = ACTIONS(981), + [anon_sym_i32] = ACTIONS(981), + [anon_sym_i64] = ACTIONS(981), + [anon_sym_u8] = ACTIONS(981), + [anon_sym_u16] = ACTIONS(981), + [anon_sym_u32] = ACTIONS(981), + [anon_sym_u64] = ACTIONS(981), + [anon_sym_isize] = ACTIONS(981), + [anon_sym_usize] = ACTIONS(981), + [anon_sym_f32] = ACTIONS(981), + [anon_sym_f64] = ACTIONS(981), + [anon_sym_c_char] = ACTIONS(981), + [anon_sym_c_schar] = ACTIONS(981), + [anon_sym_c_uchar] = ACTIONS(981), + [anon_sym_c_short] = ACTIONS(981), + [anon_sym_c_ushort] = ACTIONS(981), + [anon_sym_c_int] = ACTIONS(981), + [anon_sym_c_uint] = ACTIONS(981), + [anon_sym_c_long] = ACTIONS(981), + [anon_sym_c_ulong] = ACTIONS(981), + [anon_sym_c_longlong] = ACTIONS(981), + [anon_sym_c_ulonglong] = ACTIONS(981), + [anon_sym_c_float] = ACTIONS(981), + [anon_sym_c_double] = ACTIONS(981), + [anon_sym_c_longdouble] = ACTIONS(981), + [anon_sym_PLUS_EQ] = ACTIONS(979), + [anon_sym_DASH_EQ] = ACTIONS(979), + [anon_sym_STAR_EQ] = ACTIONS(979), + [anon_sym_SLASH_EQ] = ACTIONS(979), + [anon_sym_return] = ACTIONS(981), + [anon_sym_yield] = ACTIONS(981), + [anon_sym_break] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_defer] = ACTIONS(981), + [anon_sym_errdefer] = ACTIONS(981), + [anon_sym_if] = ACTIONS(981), + [anon_sym_else] = ACTIONS(981), + [anon_sym_while] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_match] = ACTIONS(981), + [anon_sym_DOT_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT_EQ] = ACTIONS(979), + [anon_sym_orelse] = ACTIONS(1462), + [anon_sym_catch] = ACTIONS(1464), + [anon_sym_or] = ACTIONS(1466), + [anon_sym_and] = ACTIONS(1456), + [anon_sym_EQ_EQ] = ACTIONS(1458), + [anon_sym_BANG_EQ] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1460), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_SLASH] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_try] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(981), + [anon_sym_false] = ACTIONS(981), + [sym_none] = ACTIONS(981), + [sym_undefined] = ACTIONS(981), + [sym_sink] = ACTIONS(981), + [sym_integer] = ACTIONS(981), + [sym_float] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [sym_multiline_string] = ACTIONS(979), + [sym_character] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(979), + }, + [STATE(574)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1200), + [sym_labeled_block] = STATE(1200), + [sym_if_statement] = STATE(1200), + [sym_while_statement] = STATE(1200), + [sym_for_statement] = STATE(1200), + [sym_match_statement] = STATE(1200), + [sym__value] = STATE(1200), + [sym_expression] = STATE(1493), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(195), + [anon_sym_else] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1427), + }, + [STATE(575)] = { + [sym_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(981), + [anon_sym_func] = ACTIONS(981), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_EQ] = ACTIONS(981), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_RBRACE] = ACTIONS(979), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(981), + [anon_sym_anyopaque] = ACTIONS(981), + [anon_sym_bool] = ACTIONS(981), + [anon_sym_int] = ACTIONS(981), + [anon_sym_float] = ACTIONS(981), + [anon_sym_range] = ACTIONS(981), + [anon_sym_i8] = ACTIONS(981), + [anon_sym_i16] = ACTIONS(981), + [anon_sym_i32] = ACTIONS(981), + [anon_sym_i64] = ACTIONS(981), + [anon_sym_u8] = ACTIONS(981), + [anon_sym_u16] = ACTIONS(981), + [anon_sym_u32] = ACTIONS(981), + [anon_sym_u64] = ACTIONS(981), + [anon_sym_isize] = ACTIONS(981), + [anon_sym_usize] = ACTIONS(981), + [anon_sym_f32] = ACTIONS(981), + [anon_sym_f64] = ACTIONS(981), + [anon_sym_c_char] = ACTIONS(981), + [anon_sym_c_schar] = ACTIONS(981), + [anon_sym_c_uchar] = ACTIONS(981), + [anon_sym_c_short] = ACTIONS(981), + [anon_sym_c_ushort] = ACTIONS(981), + [anon_sym_c_int] = ACTIONS(981), + [anon_sym_c_uint] = ACTIONS(981), + [anon_sym_c_long] = ACTIONS(981), + [anon_sym_c_ulong] = ACTIONS(981), + [anon_sym_c_longlong] = ACTIONS(981), + [anon_sym_c_ulonglong] = ACTIONS(981), + [anon_sym_c_float] = ACTIONS(981), + [anon_sym_c_double] = ACTIONS(981), + [anon_sym_c_longdouble] = ACTIONS(981), + [anon_sym_PLUS_EQ] = ACTIONS(979), + [anon_sym_DASH_EQ] = ACTIONS(979), + [anon_sym_STAR_EQ] = ACTIONS(979), + [anon_sym_SLASH_EQ] = ACTIONS(979), + [anon_sym_return] = ACTIONS(981), + [anon_sym_yield] = ACTIONS(981), + [anon_sym_break] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_defer] = ACTIONS(981), + [anon_sym_errdefer] = ACTIONS(981), + [anon_sym_if] = ACTIONS(981), + [anon_sym_else] = ACTIONS(981), + [anon_sym_while] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_match] = ACTIONS(981), + [anon_sym_DOT_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT_EQ] = ACTIONS(979), + [anon_sym_orelse] = ACTIONS(981), + [anon_sym_catch] = ACTIONS(981), + [anon_sym_or] = ACTIONS(981), + [anon_sym_and] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(979), + [anon_sym_BANG_EQ] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(981), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(979), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_SLASH] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_try] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(981), + [anon_sym_false] = ACTIONS(981), + [sym_none] = ACTIONS(981), + [sym_undefined] = ACTIONS(981), + [sym_sink] = ACTIONS(981), + [sym_integer] = ACTIONS(981), + [sym_float] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [sym_multiline_string] = ACTIONS(979), + [sym_character] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(979), + }, + [STATE(576)] = { + [sym_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(981), + [anon_sym_func] = ACTIONS(981), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_EQ] = ACTIONS(981), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_RBRACE] = ACTIONS(979), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(981), + [anon_sym_anyopaque] = ACTIONS(981), + [anon_sym_bool] = ACTIONS(981), + [anon_sym_int] = ACTIONS(981), + [anon_sym_float] = ACTIONS(981), + [anon_sym_range] = ACTIONS(981), + [anon_sym_i8] = ACTIONS(981), + [anon_sym_i16] = ACTIONS(981), + [anon_sym_i32] = ACTIONS(981), + [anon_sym_i64] = ACTIONS(981), + [anon_sym_u8] = ACTIONS(981), + [anon_sym_u16] = ACTIONS(981), + [anon_sym_u32] = ACTIONS(981), + [anon_sym_u64] = ACTIONS(981), + [anon_sym_isize] = ACTIONS(981), + [anon_sym_usize] = ACTIONS(981), + [anon_sym_f32] = ACTIONS(981), + [anon_sym_f64] = ACTIONS(981), + [anon_sym_c_char] = ACTIONS(981), + [anon_sym_c_schar] = ACTIONS(981), + [anon_sym_c_uchar] = ACTIONS(981), + [anon_sym_c_short] = ACTIONS(981), + [anon_sym_c_ushort] = ACTIONS(981), + [anon_sym_c_int] = ACTIONS(981), + [anon_sym_c_uint] = ACTIONS(981), + [anon_sym_c_long] = ACTIONS(981), + [anon_sym_c_ulong] = ACTIONS(981), + [anon_sym_c_longlong] = ACTIONS(981), + [anon_sym_c_ulonglong] = ACTIONS(981), + [anon_sym_c_float] = ACTIONS(981), + [anon_sym_c_double] = ACTIONS(981), + [anon_sym_c_longdouble] = ACTIONS(981), + [anon_sym_PLUS_EQ] = ACTIONS(979), + [anon_sym_DASH_EQ] = ACTIONS(979), + [anon_sym_STAR_EQ] = ACTIONS(979), + [anon_sym_SLASH_EQ] = ACTIONS(979), + [anon_sym_return] = ACTIONS(981), + [anon_sym_yield] = ACTIONS(981), + [anon_sym_break] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_defer] = ACTIONS(981), + [anon_sym_errdefer] = ACTIONS(981), + [anon_sym_if] = ACTIONS(981), + [anon_sym_else] = ACTIONS(981), + [anon_sym_while] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_match] = ACTIONS(981), + [anon_sym_DOT_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT_EQ] = ACTIONS(979), + [anon_sym_orelse] = ACTIONS(981), + [anon_sym_catch] = ACTIONS(981), + [anon_sym_or] = ACTIONS(1466), + [anon_sym_and] = ACTIONS(1456), + [anon_sym_EQ_EQ] = ACTIONS(1458), + [anon_sym_BANG_EQ] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1460), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_SLASH] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_try] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(981), + [anon_sym_false] = ACTIONS(981), + [sym_none] = ACTIONS(981), + [sym_undefined] = ACTIONS(981), + [sym_sink] = ACTIONS(981), + [sym_integer] = ACTIONS(981), + [sym_float] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [sym_multiline_string] = ACTIONS(979), + [sym_character] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(979), + }, + [STATE(577)] = { + [sym_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(1468), + [anon_sym_func] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_EQ] = ACTIONS(1470), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_RBRACE] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DOLLAR] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_anyopaque] = ACTIONS(1468), + [anon_sym_bool] = ACTIONS(1468), + [anon_sym_int] = ACTIONS(1468), + [anon_sym_float] = ACTIONS(1468), + [anon_sym_range] = ACTIONS(1468), + [anon_sym_i8] = ACTIONS(1468), + [anon_sym_i16] = ACTIONS(1468), + [anon_sym_i32] = ACTIONS(1468), + [anon_sym_i64] = ACTIONS(1468), + [anon_sym_u8] = ACTIONS(1468), + [anon_sym_u16] = ACTIONS(1468), + [anon_sym_u32] = ACTIONS(1468), + [anon_sym_u64] = ACTIONS(1468), + [anon_sym_isize] = ACTIONS(1468), + [anon_sym_usize] = ACTIONS(1468), + [anon_sym_f32] = ACTIONS(1468), + [anon_sym_f64] = ACTIONS(1468), + [anon_sym_c_char] = ACTIONS(1468), + [anon_sym_c_schar] = ACTIONS(1468), + [anon_sym_c_uchar] = ACTIONS(1468), + [anon_sym_c_short] = ACTIONS(1468), + [anon_sym_c_ushort] = ACTIONS(1468), + [anon_sym_c_int] = ACTIONS(1468), + [anon_sym_c_uint] = ACTIONS(1468), + [anon_sym_c_long] = ACTIONS(1468), + [anon_sym_c_ulong] = ACTIONS(1468), + [anon_sym_c_longlong] = ACTIONS(1468), + [anon_sym_c_ulonglong] = ACTIONS(1468), + [anon_sym_c_float] = ACTIONS(1468), + [anon_sym_c_double] = ACTIONS(1468), + [anon_sym_c_longdouble] = ACTIONS(1468), + [anon_sym_PLUS_EQ] = ACTIONS(1474), + [anon_sym_DASH_EQ] = ACTIONS(1474), + [anon_sym_STAR_EQ] = ACTIONS(1474), + [anon_sym_SLASH_EQ] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_yield] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_defer] = ACTIONS(1468), + [anon_sym_errdefer] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_else] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_match] = ACTIONS(1468), + [anon_sym_DOT_DOT] = ACTIONS(1476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1478), + [anon_sym_orelse] = ACTIONS(1462), + [anon_sym_catch] = ACTIONS(1464), + [anon_sym_or] = ACTIONS(1466), + [anon_sym_and] = ACTIONS(1456), + [anon_sym_EQ_EQ] = ACTIONS(1458), + [anon_sym_BANG_EQ] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1460), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_SLASH] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_try] = ACTIONS(1468), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [sym_none] = ACTIONS(1468), + [sym_undefined] = ACTIONS(1468), + [sym_sink] = ACTIONS(1468), + [sym_integer] = ACTIONS(1468), + [sym_float] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [sym_multiline_string] = ACTIONS(1472), + [sym_character] = ACTIONS(1472), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1472), + }, + [STATE(578)] = { + [sym_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(1003), + [anon_sym_func] = ACTIONS(981), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_EQ] = ACTIONS(1003), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_PIPE] = ACTIONS(979), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(981), + [anon_sym_anyopaque] = ACTIONS(981), + [anon_sym_bool] = ACTIONS(981), + [anon_sym_int] = ACTIONS(981), + [anon_sym_float] = ACTIONS(981), + [anon_sym_range] = ACTIONS(981), + [anon_sym_i8] = ACTIONS(981), + [anon_sym_i16] = ACTIONS(981), + [anon_sym_i32] = ACTIONS(981), + [anon_sym_i64] = ACTIONS(981), + [anon_sym_u8] = ACTIONS(981), + [anon_sym_u16] = ACTIONS(981), + [anon_sym_u32] = ACTIONS(981), + [anon_sym_u64] = ACTIONS(981), + [anon_sym_isize] = ACTIONS(981), + [anon_sym_usize] = ACTIONS(981), + [anon_sym_f32] = ACTIONS(981), + [anon_sym_f64] = ACTIONS(981), + [anon_sym_c_char] = ACTIONS(981), + [anon_sym_c_schar] = ACTIONS(981), + [anon_sym_c_uchar] = ACTIONS(981), + [anon_sym_c_short] = ACTIONS(981), + [anon_sym_c_ushort] = ACTIONS(981), + [anon_sym_c_int] = ACTIONS(981), + [anon_sym_c_uint] = ACTIONS(981), + [anon_sym_c_long] = ACTIONS(981), + [anon_sym_c_ulong] = ACTIONS(981), + [anon_sym_c_longlong] = ACTIONS(981), + [anon_sym_c_ulonglong] = ACTIONS(981), + [anon_sym_c_float] = ACTIONS(981), + [anon_sym_c_double] = ACTIONS(981), + [anon_sym_c_longdouble] = ACTIONS(981), + [anon_sym_PLUS_EQ] = ACTIONS(1001), + [anon_sym_DASH_EQ] = ACTIONS(1001), + [anon_sym_STAR_EQ] = ACTIONS(1001), + [anon_sym_SLASH_EQ] = ACTIONS(1001), + [anon_sym_return] = ACTIONS(981), + [anon_sym_yield] = ACTIONS(981), + [anon_sym_break] = ACTIONS(981), + [anon_sym_continue] = ACTIONS(981), + [anon_sym_defer] = ACTIONS(981), + [anon_sym_errdefer] = ACTIONS(981), + [anon_sym_if] = ACTIONS(981), + [anon_sym_else] = ACTIONS(1003), + [anon_sym_while] = ACTIONS(981), + [anon_sym_for] = ACTIONS(981), + [anon_sym_match] = ACTIONS(981), + [anon_sym_DOT_DOT] = ACTIONS(1003), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1001), + [anon_sym_orelse] = ACTIONS(1003), + [anon_sym_catch] = ACTIONS(1003), + [anon_sym_or] = ACTIONS(1003), + [anon_sym_and] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1001), + [anon_sym_BANG_EQ] = ACTIONS(1001), + [anon_sym_LT] = ACTIONS(1003), + [anon_sym_LT_EQ] = ACTIONS(1001), + [anon_sym_GT] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_SLASH] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_try] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(981), + [anon_sym_false] = ACTIONS(981), + [sym_none] = ACTIONS(981), + [sym_undefined] = ACTIONS(981), + [sym_sink] = ACTIONS(981), + [sym_integer] = ACTIONS(981), + [sym_float] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [sym_multiline_string] = ACTIONS(979), + [sym_character] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1001), + }, + [STATE(579)] = { + [sym_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(1067), + [anon_sym_func] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_EQ] = ACTIONS(1067), + [anon_sym_struct] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(1065), + [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_DOLLAR] = ACTIONS(1111), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(1113), + [anon_sym_anyopaque] = ACTIONS(1113), + [anon_sym_bool] = ACTIONS(1113), + [anon_sym_int] = ACTIONS(1113), + [anon_sym_float] = ACTIONS(1113), + [anon_sym_range] = ACTIONS(1113), + [anon_sym_i8] = ACTIONS(1113), + [anon_sym_i16] = ACTIONS(1113), + [anon_sym_i32] = ACTIONS(1113), + [anon_sym_i64] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1113), + [anon_sym_u16] = ACTIONS(1113), + [anon_sym_u32] = ACTIONS(1113), + [anon_sym_u64] = ACTIONS(1113), + [anon_sym_isize] = ACTIONS(1113), + [anon_sym_usize] = ACTIONS(1113), + [anon_sym_f32] = ACTIONS(1113), + [anon_sym_f64] = ACTIONS(1113), + [anon_sym_c_char] = ACTIONS(1113), + [anon_sym_c_schar] = ACTIONS(1113), + [anon_sym_c_uchar] = ACTIONS(1113), + [anon_sym_c_short] = ACTIONS(1113), + [anon_sym_c_ushort] = ACTIONS(1113), + [anon_sym_c_int] = ACTIONS(1113), + [anon_sym_c_uint] = ACTIONS(1113), + [anon_sym_c_long] = ACTIONS(1113), + [anon_sym_c_ulong] = ACTIONS(1113), + [anon_sym_c_longlong] = ACTIONS(1113), + [anon_sym_c_ulonglong] = ACTIONS(1113), + [anon_sym_c_float] = ACTIONS(1113), + [anon_sym_c_double] = ACTIONS(1113), + [anon_sym_c_longdouble] = ACTIONS(1113), + [anon_sym_PLUS_EQ] = ACTIONS(1065), + [anon_sym_DASH_EQ] = ACTIONS(1065), + [anon_sym_STAR_EQ] = ACTIONS(1065), + [anon_sym_SLASH_EQ] = ACTIONS(1065), + [anon_sym_return] = ACTIONS(1113), + [anon_sym_yield] = ACTIONS(1113), + [anon_sym_break] = ACTIONS(1113), + [anon_sym_continue] = ACTIONS(1113), + [anon_sym_defer] = ACTIONS(1113), + [anon_sym_errdefer] = ACTIONS(1113), + [anon_sym_if] = ACTIONS(1113), + [anon_sym_else] = ACTIONS(1067), + [anon_sym_while] = ACTIONS(1113), + [anon_sym_for] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1113), + [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(1111), + [anon_sym_try] = ACTIONS(1113), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(1113), + [anon_sym_false] = ACTIONS(1113), + [sym_none] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1113), + [sym_sink] = ACTIONS(1113), + [sym_integer] = ACTIONS(1113), + [sym_float] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1111), + [sym_multiline_string] = ACTIONS(1111), + [sym_character] = ACTIONS(1111), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1065), + }, + [STATE(580)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1158), + [sym_labeled_block] = STATE(1158), + [sym_if_statement] = STATE(1158), + [sym_while_statement] = STATE(1158), + [sym_for_statement] = STATE(1158), + [sym_match_statement] = STATE(1158), + [sym__value] = STATE(1158), + [sym_expression] = STATE(1493), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(612), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1480), + }, + [STATE(581)] = { + [sym_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(1468), + [anon_sym_func] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_EQ] = ACTIONS(1482), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_RBRACE] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1452), + [anon_sym_DOLLAR] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_anyopaque] = ACTIONS(1468), + [anon_sym_bool] = ACTIONS(1468), + [anon_sym_int] = ACTIONS(1468), + [anon_sym_float] = ACTIONS(1468), + [anon_sym_range] = ACTIONS(1468), + [anon_sym_i8] = ACTIONS(1468), + [anon_sym_i16] = ACTIONS(1468), + [anon_sym_i32] = ACTIONS(1468), + [anon_sym_i64] = ACTIONS(1468), + [anon_sym_u8] = ACTIONS(1468), + [anon_sym_u16] = ACTIONS(1468), + [anon_sym_u32] = ACTIONS(1468), + [anon_sym_u64] = ACTIONS(1468), + [anon_sym_isize] = ACTIONS(1468), + [anon_sym_usize] = ACTIONS(1468), + [anon_sym_f32] = ACTIONS(1468), + [anon_sym_f64] = ACTIONS(1468), + [anon_sym_c_char] = ACTIONS(1468), + [anon_sym_c_schar] = ACTIONS(1468), + [anon_sym_c_uchar] = ACTIONS(1468), + [anon_sym_c_short] = ACTIONS(1468), + [anon_sym_c_ushort] = ACTIONS(1468), + [anon_sym_c_int] = ACTIONS(1468), + [anon_sym_c_uint] = ACTIONS(1468), + [anon_sym_c_long] = ACTIONS(1468), + [anon_sym_c_ulong] = ACTIONS(1468), + [anon_sym_c_longlong] = ACTIONS(1468), + [anon_sym_c_ulonglong] = ACTIONS(1468), + [anon_sym_c_float] = ACTIONS(1468), + [anon_sym_c_double] = ACTIONS(1468), + [anon_sym_c_longdouble] = ACTIONS(1468), + [anon_sym_PLUS_EQ] = ACTIONS(1484), + [anon_sym_DASH_EQ] = ACTIONS(1484), + [anon_sym_STAR_EQ] = ACTIONS(1484), + [anon_sym_SLASH_EQ] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1468), + [anon_sym_yield] = ACTIONS(1468), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1468), + [anon_sym_defer] = ACTIONS(1468), + [anon_sym_errdefer] = ACTIONS(1468), + [anon_sym_if] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1468), + [anon_sym_for] = ACTIONS(1468), + [anon_sym_match] = ACTIONS(1468), + [anon_sym_DOT_DOT] = ACTIONS(1476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1478), + [anon_sym_orelse] = ACTIONS(1462), + [anon_sym_catch] = ACTIONS(1464), + [anon_sym_or] = ACTIONS(1466), + [anon_sym_and] = ACTIONS(1456), + [anon_sym_EQ_EQ] = ACTIONS(1458), + [anon_sym_BANG_EQ] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1460), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1452), + [anon_sym_SLASH] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_try] = ACTIONS(1468), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [sym_none] = ACTIONS(1468), + [sym_undefined] = ACTIONS(1468), + [sym_sink] = ACTIONS(1468), + [sym_integer] = ACTIONS(1468), + [sym_float] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [sym_multiline_string] = ACTIONS(1472), + [sym_character] = ACTIONS(1472), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1472), + }, + [STATE(582)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1233), + [sym_labeled_block] = STATE(1233), + [sym_if_statement] = STATE(1233), + [sym_while_statement] = STATE(1233), + [sym_for_statement] = STATE(1233), + [sym_match_statement] = STATE(1233), + [sym__value] = STATE(1233), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(583)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1234), + [sym_labeled_block] = STATE(1234), + [sym_if_statement] = STATE(1234), + [sym_while_statement] = STATE(1234), + [sym_for_statement] = STATE(1234), + [sym_match_statement] = STATE(1234), + [sym__value] = STATE(1234), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(584)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1158), + [sym_labeled_block] = STATE(1158), + [sym_if_statement] = STATE(1158), + [sym_while_statement] = STATE(1158), + [sym_for_statement] = STATE(1158), + [sym_match_statement] = STATE(1158), + [sym__value] = STATE(1158), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(595), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1486), + }, + [STATE(585)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [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(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(596), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1488), + }, + [STATE(586)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1163), + [sym_labeled_block] = STATE(1163), + [sym_if_statement] = STATE(1163), + [sym_while_statement] = STATE(1163), + [sym_for_statement] = STATE(1163), + [sym_match_statement] = STATE(1163), + [sym__value] = STATE(1163), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(587)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1233), + [sym_labeled_block] = STATE(1233), + [sym_if_statement] = STATE(1233), + [sym_while_statement] = STATE(1233), + [sym_for_statement] = STATE(1233), + [sym_match_statement] = STATE(1233), + [sym__value] = STATE(1233), + [sym_expression] = STATE(1477), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(588)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [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(689), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(589)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1158), + [sym_labeled_block] = STATE(1158), + [sym_if_statement] = STATE(1158), + [sym_while_statement] = STATE(1158), + [sym_for_statement] = STATE(1158), + [sym_match_statement] = STATE(1158), + [sym__value] = STATE(1158), + [sym_expression] = STATE(689), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(650), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1490), + }, + [STATE(590)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [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(689), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(651), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1492), + }, + [STATE(591)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1604), + [sym_labeled_block] = STATE(1604), + [sym_if_statement] = STATE(1604), + [sym_while_statement] = STATE(1604), + [sym_for_statement] = STATE(1604), + [sym_match_statement] = STATE(1604), + [sym__value] = STATE(1604), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(592)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1020), + [sym_labeled_block] = STATE(1020), + [sym_if_statement] = STATE(1020), + [sym_while_statement] = STATE(1020), + [sym_for_statement] = STATE(1020), + [sym_match_statement] = STATE(1020), + [sym__value] = STATE(1020), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(632), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1494), + }, + [STATE(593)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1022), + [sym_labeled_block] = STATE(1022), + [sym_if_statement] = STATE(1022), + [sym_while_statement] = STATE(1022), + [sym_for_statement] = STATE(1022), + [sym_match_statement] = STATE(1022), + [sym__value] = STATE(1022), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(648), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1496), + }, + [STATE(594)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1020), + [sym_labeled_block] = STATE(1020), + [sym_if_statement] = STATE(1020), + [sym_while_statement] = STATE(1020), + [sym_for_statement] = STATE(1020), + [sym_match_statement] = STATE(1020), + [sym__value] = STATE(1020), + [sym_expression] = STATE(689), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(588), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1498), + }, + [STATE(595)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1233), + [sym_labeled_block] = STATE(1233), + [sym_if_statement] = STATE(1233), + [sym_while_statement] = STATE(1233), + [sym_for_statement] = STATE(1233), + [sym_match_statement] = STATE(1233), + [sym__value] = STATE(1233), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(596)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1234), + [sym_labeled_block] = STATE(1234), + [sym_if_statement] = STATE(1234), + [sym_while_statement] = STATE(1234), + [sym_for_statement] = STATE(1234), + [sym_match_statement] = STATE(1234), + [sym__value] = STATE(1234), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(597)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1573), + [sym_labeled_block] = STATE(1573), + [sym_if_statement] = STATE(1573), + [sym_while_statement] = STATE(1573), + [sym_for_statement] = STATE(1573), + [sym_match_statement] = STATE(1573), + [sym__value] = STATE(1573), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(638), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1500), + }, + [STATE(598)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1163), + [sym_labeled_block] = STATE(1163), + [sym_if_statement] = STATE(1163), + [sym_while_statement] = STATE(1163), + [sym_for_statement] = STATE(1163), + [sym_match_statement] = STATE(1163), + [sym__value] = STATE(1163), + [sym_expression] = STATE(689), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(599)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1234), + [sym_labeled_block] = STATE(1234), + [sym_if_statement] = STATE(1234), + [sym_while_statement] = STATE(1234), + [sym_for_statement] = STATE(1234), + [sym_match_statement] = STATE(1234), + [sym__value] = STATE(1234), + [sym_expression] = STATE(1477), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(600)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1022), + [sym_labeled_block] = STATE(1022), + [sym_if_statement] = STATE(1022), + [sym_while_statement] = STATE(1022), + [sym_for_statement] = STATE(1022), + [sym_match_statement] = STATE(1022), + [sym__value] = STATE(1022), + [sym_expression] = STATE(689), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(598), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1502), + }, + [STATE(601)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1635), + [sym_labeled_block] = STATE(1635), + [sym_if_statement] = STATE(1635), + [sym_while_statement] = STATE(1635), + [sym_for_statement] = STATE(1635), + [sym_match_statement] = STATE(1635), + [sym__value] = STATE(1635), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(602), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1504), + }, + [STATE(602)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1689), + [sym_labeled_block] = STATE(1689), + [sym_if_statement] = STATE(1689), + [sym_while_statement] = STATE(1689), + [sym_for_statement] = STATE(1689), + [sym_match_statement] = STATE(1689), + [sym__value] = STATE(1689), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(603)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1691), + [sym_labeled_block] = STATE(1691), + [sym_if_statement] = STATE(1691), + [sym_while_statement] = STATE(1691), + [sym_for_statement] = STATE(1691), + [sym_match_statement] = STATE(1691), + [sym__value] = STATE(1691), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(604)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [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(1007), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(605)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1158), + [sym_labeled_block] = STATE(1158), + [sym_if_statement] = STATE(1158), + [sym_while_statement] = STATE(1158), + [sym_for_statement] = STATE(1158), + [sym_match_statement] = STATE(1158), + [sym__value] = STATE(1158), + [sym_expression] = STATE(1007), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(621), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1506), + }, + [STATE(606)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1020), + [sym_labeled_block] = STATE(1020), + [sym_if_statement] = STATE(1020), + [sym_while_statement] = STATE(1020), + [sym_for_statement] = STATE(1020), + [sym_match_statement] = STATE(1020), + [sym__value] = STATE(1020), + [sym_expression] = STATE(1493), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(608), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(607)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1022), + [sym_labeled_block] = STATE(1022), + [sym_if_statement] = STATE(1022), + [sym_while_statement] = STATE(1022), + [sym_for_statement] = STATE(1022), + [sym_match_statement] = STATE(1022), + [sym__value] = STATE(1022), + [sym_expression] = STATE(1007), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(611), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1510), }, - [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(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), + [STATE(608)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [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(1493), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(609)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1022), + [sym_labeled_block] = STATE(1022), + [sym_if_statement] = STATE(1022), + [sym_while_statement] = STATE(1022), + [sym_for_statement] = STATE(1022), + [sym_match_statement] = STATE(1022), + [sym__value] = STATE(1022), + [sym_expression] = STATE(1477), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(645), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(610)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), [sym_block] = STATE(1160), [sym_labeled_block] = STATE(1160), [sym_if_statement] = STATE(1160), @@ -73842,1471 +73324,827 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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(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_expression] = STATE(1493), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(613), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1514), }, - [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(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), + [STATE(611)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1163), + [sym_labeled_block] = STATE(1163), + [sym_if_statement] = STATE(1163), + [sym_while_statement] = STATE(1163), + [sym_for_statement] = STATE(1163), + [sym_match_statement] = STATE(1163), + [sym__value] = STATE(1163), + [sym_expression] = STATE(1007), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(612)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1233), + [sym_labeled_block] = STATE(1233), + [sym_if_statement] = STATE(1233), + [sym_while_statement] = STATE(1233), + [sym_for_statement] = STATE(1233), + [sym_match_statement] = STATE(1233), + [sym__value] = STATE(1233), + [sym_expression] = STATE(1493), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(613)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1234), + [sym_labeled_block] = STATE(1234), + [sym_if_statement] = STATE(1234), + [sym_while_statement] = STATE(1234), + [sym_for_statement] = STATE(1234), + [sym_match_statement] = STATE(1234), + [sym__value] = STATE(1234), + [sym_expression] = STATE(1493), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(614)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [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(1007), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(630), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1516), }, - [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), - [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), + [STATE(615)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1163), + [sym_labeled_block] = STATE(1163), + [sym_if_statement] = STATE(1163), + [sym_while_statement] = STATE(1163), + [sym_for_statement] = STATE(1163), + [sym_match_statement] = STATE(1163), + [sym__value] = STATE(1163), + [sym_expression] = STATE(1493), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(616)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1020), + [sym_labeled_block] = STATE(1020), + [sym_if_statement] = STATE(1020), + [sym_while_statement] = STATE(1020), + [sym_for_statement] = STATE(1020), + [sym_match_statement] = STATE(1020), + [sym__value] = STATE(1020), + [sym_expression] = STATE(1007), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(604), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1518), }, - [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), - [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), + [STATE(617)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1680), + [sym_labeled_block] = STATE(1680), + [sym_if_statement] = STATE(1680), + [sym_while_statement] = STATE(1680), + [sym_for_statement] = STATE(1680), + [sym_match_statement] = STATE(1680), + [sym__value] = STATE(1680), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(618)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1022), + [sym_labeled_block] = STATE(1022), + [sym_if_statement] = STATE(1022), + [sym_while_statement] = STATE(1022), + [sym_for_statement] = STATE(1022), + [sym_match_statement] = STATE(1022), + [sym__value] = STATE(1022), + [sym_expression] = STATE(1493), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(615), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1520), }, - [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(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(1522), - }, - [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), - [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(1524), - }, - [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), - [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(1526), - }, - [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(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(1528), - }, - [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(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(1530), - }, - [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(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(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(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(1532), - }, - [STATE(636)] = { - [sym_struct_type] = STATE(525), - [sym_array_type] = STATE(525), - [sym_builtin_type] = STATE(525), + [STATE(619)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), [sym_block] = STATE(1145), [sym_labeled_block] = STATE(1145), [sym_if_statement] = STATE(1145), @@ -75314,183 +74152,643 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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_expression] = STATE(1477), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1534), + [sym__newline] = ACTIONS(237), }, - [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(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), + [STATE(620)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1022), + [sym_labeled_block] = STATE(1022), + [sym_if_statement] = STATE(1022), + [sym_while_statement] = STATE(1022), + [sym_for_statement] = STATE(1022), + [sym_match_statement] = STATE(1022), + [sym__value] = STATE(1022), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(586), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(1522), }, - [STATE(638)] = { - [sym_struct_type] = STATE(525), - [sym_array_type] = STATE(525), - [sym_builtin_type] = STATE(525), + [STATE(621)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1233), + [sym_labeled_block] = STATE(1233), + [sym_if_statement] = STATE(1233), + [sym_while_statement] = STATE(1233), + [sym_for_statement] = STATE(1233), + [sym_match_statement] = STATE(1233), + [sym__value] = STATE(1233), + [sym_expression] = STATE(1007), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(622)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1020), + [sym_labeled_block] = STATE(1020), + [sym_if_statement] = STATE(1020), + [sym_while_statement] = STATE(1020), + [sym_for_statement] = STATE(1020), + [sym_match_statement] = STATE(1020), + [sym__value] = STATE(1020), + [sym_expression] = STATE(1477), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(624), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1524), + }, + [STATE(623)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1022), + [sym_labeled_block] = STATE(1022), + [sym_if_statement] = STATE(1022), + [sym_while_statement] = STATE(1022), + [sym_for_statement] = STATE(1022), + [sym_match_statement] = STATE(1022), + [sym__value] = STATE(1022), + [sym_expression] = STATE(1477), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(627), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1526), + }, + [STATE(624)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [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(1477), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(625)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1158), + [sym_labeled_block] = STATE(1158), + [sym_if_statement] = STATE(1158), + [sym_while_statement] = STATE(1158), + [sym_for_statement] = STATE(1158), + [sym_match_statement] = STATE(1158), + [sym__value] = STATE(1158), + [sym_expression] = STATE(1477), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(628), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1528), + }, + [STATE(626)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), [sym_block] = STATE(1160), [sym_labeled_block] = STATE(1160), [sym_if_statement] = STATE(1160), @@ -75498,1747 +74796,1287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [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_expression] = STATE(1477), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(629), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(1530), }, - [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(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), + [STATE(627)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1163), + [sym_labeled_block] = STATE(1163), + [sym_if_statement] = STATE(1163), + [sym_while_statement] = STATE(1163), + [sym_for_statement] = STATE(1163), + [sym_match_statement] = STATE(1163), + [sym__value] = STATE(1163), + [sym_expression] = STATE(1477), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), - [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), + [STATE(628)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1233), + [sym_labeled_block] = STATE(1233), + [sym_if_statement] = STATE(1233), + [sym_while_statement] = STATE(1233), + [sym_for_statement] = STATE(1233), + [sym_match_statement] = STATE(1233), + [sym__value] = STATE(1233), + [sym_expression] = STATE(1477), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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(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), + [STATE(629)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1234), + [sym_labeled_block] = STATE(1234), + [sym_if_statement] = STATE(1234), + [sym_while_statement] = STATE(1234), + [sym_for_statement] = STATE(1234), + [sym_match_statement] = STATE(1234), + [sym__value] = STATE(1234), + [sym_expression] = STATE(1477), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(630)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1234), + [sym_labeled_block] = STATE(1234), + [sym_if_statement] = STATE(1234), + [sym_while_statement] = STATE(1234), + [sym_for_statement] = STATE(1234), + [sym_match_statement] = STATE(1234), + [sym__value] = STATE(1234), + [sym_expression] = STATE(1007), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(631)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1617), + [sym_labeled_block] = STATE(1617), + [sym_if_statement] = STATE(1617), + [sym_while_statement] = STATE(1617), + [sym_for_statement] = STATE(1617), + [sym_match_statement] = STATE(1617), + [sym__value] = STATE(1617), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(617), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1532), + }, + [STATE(632)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [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(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(633)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1158), + [sym_labeled_block] = STATE(1158), + [sym_if_statement] = STATE(1158), + [sym_while_statement] = STATE(1158), + [sym_for_statement] = STATE(1158), + [sym_match_statement] = STATE(1158), + [sym__value] = STATE(1158), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(582), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1534), + }, + [STATE(634)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [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(1477), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(599), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(635)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1020), + [sym_labeled_block] = STATE(1020), + [sym_if_statement] = STATE(1020), + [sym_while_statement] = STATE(1020), + [sym_for_statement] = STATE(1020), + [sym_match_statement] = STATE(1020), + [sym__value] = STATE(1020), + [sym_expression] = STATE(689), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(640), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), - [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(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), + [STATE(636)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1022), + [sym_labeled_block] = STATE(1022), + [sym_if_statement] = STATE(1022), + [sym_while_statement] = STATE(1022), + [sym_for_statement] = STATE(1022), + [sym_match_statement] = STATE(1022), + [sym__value] = STATE(1022), + [sym_expression] = STATE(689), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(643), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(637)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1682), + [sym_labeled_block] = STATE(1682), + [sym_if_statement] = STATE(1682), + [sym_while_statement] = STATE(1682), + [sym_for_statement] = STATE(1682), + [sym_match_statement] = STATE(1682), + [sym__value] = STATE(1682), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(638)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1633), + [sym_labeled_block] = STATE(1633), + [sym_if_statement] = STATE(1633), + [sym_while_statement] = STATE(1633), + [sym_for_statement] = STATE(1633), + [sym_match_statement] = STATE(1633), + [sym__value] = STATE(1633), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(639)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1630), + [sym_labeled_block] = STATE(1630), + [sym_if_statement] = STATE(1630), + [sym_while_statement] = STATE(1630), + [sym_for_statement] = STATE(1630), + [sym_match_statement] = STATE(1630), + [sym__value] = STATE(1630), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(637), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(640)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), [sym_block] = STATE(1145), [sym_labeled_block] = STATE(1145), [sym_if_statement] = STATE(1145), @@ -77246,5513 +76084,9374 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_expression] = STATE(689), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(641)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1158), + [sym_labeled_block] = STATE(1158), + [sym_if_statement] = STATE(1158), + [sym_while_statement] = STATE(1158), + [sym_for_statement] = STATE(1158), + [sym_match_statement] = STATE(1158), + [sym__value] = STATE(1158), + [sym_expression] = STATE(689), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), [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_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1544), + }, + [STATE(642)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [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(689), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(647), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1546), + }, + [STATE(643)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1163), + [sym_labeled_block] = STATE(1163), + [sym_if_statement] = STATE(1163), + [sym_while_statement] = STATE(1163), + [sym_for_statement] = STATE(1163), + [sym_match_statement] = STATE(1163), + [sym__value] = STATE(1163), + [sym_expression] = STATE(689), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(644)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [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(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(583), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1548), + }, + [STATE(645)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1163), + [sym_labeled_block] = STATE(1163), + [sym_if_statement] = STATE(1163), + [sym_while_statement] = STATE(1163), + [sym_for_statement] = STATE(1163), + [sym_match_statement] = STATE(1163), + [sym__value] = STATE(1163), + [sym_expression] = STATE(1477), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(646)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1233), + [sym_labeled_block] = STATE(1233), + [sym_if_statement] = STATE(1233), + [sym_while_statement] = STATE(1233), + [sym_for_statement] = STATE(1233), + [sym_match_statement] = STATE(1233), + [sym__value] = STATE(1233), + [sym_expression] = STATE(689), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(647)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1234), + [sym_labeled_block] = STATE(1234), + [sym_if_statement] = STATE(1234), + [sym_while_statement] = STATE(1234), + [sym_for_statement] = STATE(1234), + [sym_match_statement] = STATE(1234), + [sym__value] = STATE(1234), + [sym_expression] = STATE(689), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(648)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1163), + [sym_labeled_block] = STATE(1163), + [sym_if_statement] = STATE(1163), + [sym_while_statement] = STATE(1163), + [sym_for_statement] = STATE(1163), + [sym_match_statement] = STATE(1163), + [sym__value] = STATE(1163), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(649)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [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(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(650)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1233), + [sym_labeled_block] = STATE(1233), + [sym_if_statement] = STATE(1233), + [sym_while_statement] = STATE(1233), + [sym_for_statement] = STATE(1233), + [sym_match_statement] = STATE(1233), + [sym__value] = STATE(1233), + [sym_expression] = STATE(689), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(651)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1234), + [sym_labeled_block] = STATE(1234), + [sym_if_statement] = STATE(1234), + [sym_while_statement] = STATE(1234), + [sym_for_statement] = STATE(1234), + [sym_match_statement] = STATE(1234), + [sym__value] = STATE(1234), + [sym_expression] = STATE(689), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(652)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1683), + [sym_labeled_block] = STATE(1683), + [sym_if_statement] = STATE(1683), + [sym_while_statement] = STATE(1683), + [sym_for_statement] = STATE(1683), + [sym_match_statement] = STATE(1683), + [sym__value] = STATE(1683), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(591), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(653)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1020), + [sym_labeled_block] = STATE(1020), + [sym_if_statement] = STATE(1020), + [sym_while_statement] = STATE(1020), + [sym_for_statement] = STATE(1020), + [sym_match_statement] = STATE(1020), + [sym__value] = STATE(1020), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(649), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_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(1554), - [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), + [STATE(654)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1559), + [sym_labeled_block] = STATE(1559), + [sym_if_statement] = STATE(1559), + [sym_while_statement] = STATE(1559), + [sym_for_statement] = STATE(1559), + [sym_match_statement] = STATE(1559), + [sym__value] = STATE(1559), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(603), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1554), + }, + [STATE(655)] = { + [sym_variant_payload] = STATE(522), + [ts_builtin_sym_end] = ACTIONS(1431), + [sym_identifier] = ACTIONS(1433), + [anon_sym_import] = ACTIONS(1433), + [anon_sym_hide] = ACTIONS(1433), + [anon_sym_func] = ACTIONS(1433), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_EQ] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_RPAREN] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_COMMA] = ACTIONS(1431), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_DOLLAR] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1431), + [anon_sym_QMARK] = ACTIONS(1431), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_RBRACK] = ACTIONS(1431), + [anon_sym_void] = ACTIONS(1433), + [anon_sym_anyopaque] = ACTIONS(1433), + [anon_sym_bool] = ACTIONS(1433), + [anon_sym_int] = ACTIONS(1433), + [anon_sym_float] = ACTIONS(1433), + [anon_sym_range] = ACTIONS(1433), + [anon_sym_i8] = ACTIONS(1433), + [anon_sym_i16] = ACTIONS(1433), + [anon_sym_i32] = ACTIONS(1433), + [anon_sym_i64] = ACTIONS(1433), + [anon_sym_u8] = ACTIONS(1433), + [anon_sym_u16] = ACTIONS(1433), + [anon_sym_u32] = ACTIONS(1433), + [anon_sym_u64] = ACTIONS(1433), + [anon_sym_isize] = ACTIONS(1433), + [anon_sym_usize] = ACTIONS(1433), + [anon_sym_f32] = ACTIONS(1433), + [anon_sym_f64] = ACTIONS(1433), + [anon_sym_c_char] = ACTIONS(1433), + [anon_sym_c_schar] = ACTIONS(1433), + [anon_sym_c_uchar] = ACTIONS(1433), + [anon_sym_c_short] = ACTIONS(1433), + [anon_sym_c_ushort] = ACTIONS(1433), + [anon_sym_c_int] = ACTIONS(1433), + [anon_sym_c_uint] = ACTIONS(1433), + [anon_sym_c_long] = ACTIONS(1433), + [anon_sym_c_ulong] = ACTIONS(1433), + [anon_sym_c_longlong] = ACTIONS(1433), + [anon_sym_c_ulonglong] = ACTIONS(1433), + [anon_sym_c_float] = ACTIONS(1433), + [anon_sym_c_double] = ACTIONS(1433), + [anon_sym_c_longdouble] = ACTIONS(1433), + [anon_sym_PLUS_EQ] = ACTIONS(1431), + [anon_sym_DASH_EQ] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1431), + [anon_sym_SLASH_EQ] = ACTIONS(1431), + [anon_sym_COLON] = ACTIONS(1431), + [anon_sym_else] = ACTIONS(1433), + [anon_sym_DOT_DOT] = ACTIONS(1433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1431), + [anon_sym_orelse] = ACTIONS(1433), + [anon_sym_catch] = ACTIONS(1433), + [anon_sym_or] = ACTIONS(1433), + [anon_sym_and] = ACTIONS(1433), + [anon_sym_EQ_EQ] = ACTIONS(1431), + [anon_sym_BANG_EQ] = ACTIONS(1431), + [anon_sym_LT] = ACTIONS(1433), + [anon_sym_LT_EQ] = ACTIONS(1431), + [anon_sym_GT] = ACTIONS(1433), + [anon_sym_GT_EQ] = ACTIONS(1431), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_SLASH] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1431), + [anon_sym_try] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1431), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), + [sym_none] = ACTIONS(1433), + [sym_undefined] = ACTIONS(1433), + [sym_sink] = ACTIONS(1433), + [sym_integer] = ACTIONS(1433), + [sym_float] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1431), + [sym_multiline_string] = ACTIONS(1431), + [sym_character] = ACTIONS(1431), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1431), + }, + [STATE(656)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1200), + [sym_labeled_block] = STATE(1200), + [sym_if_statement] = STATE(1200), + [sym_while_statement] = STATE(1200), + [sym_for_statement] = STATE(1200), + [sym_match_statement] = STATE(1200), + [sym__value] = STATE(1200), + [sym_expression] = STATE(1477), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(141), + [anon_sym_else] = ACTIONS(1429), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1427), + }, + [STATE(657)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1020), + [sym_labeled_block] = STATE(1020), + [sym_if_statement] = STATE(1020), + [sym_while_statement] = STATE(1020), + [sym_for_statement] = STATE(1020), + [sym_match_statement] = STATE(1020), + [sym__value] = STATE(1020), + [sym_expression] = STATE(1477), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(619), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1558), + }, + [STATE(658)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1022), + [sym_labeled_block] = STATE(1022), + [sym_if_statement] = STATE(1022), + [sym_while_statement] = STATE(1022), + [sym_for_statement] = STATE(1022), + [sym_match_statement] = STATE(1022), + [sym__value] = STATE(1022), + [sym_expression] = STATE(1493), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(659), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1560), + }, + [STATE(659)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1163), + [sym_labeled_block] = STATE(1163), + [sym_if_statement] = STATE(1163), + [sym_while_statement] = STATE(1163), + [sym_for_statement] = STATE(1163), + [sym_match_statement] = STATE(1163), + [sym__value] = STATE(1163), + [sym_expression] = STATE(1493), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), }, [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(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_COLON] = ACTIONS(1556), - [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1200), + [sym_labeled_block] = STATE(1200), + [sym_if_statement] = STATE(1200), + [sym_while_statement] = STATE(1200), + [sym_for_statement] = STATE(1200), + [sym_match_statement] = STATE(1200), + [sym__value] = STATE(1200), + [sym_expression] = STATE(1493), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1427), }, [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), - [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_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(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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1020), + [sym_labeled_block] = STATE(1020), + [sym_if_statement] = STATE(1020), + [sym_while_statement] = STATE(1020), + [sym_for_statement] = STATE(1020), + [sym_match_statement] = STATE(1020), + [sym__value] = STATE(1020), + [sym_expression] = STATE(1493), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(662), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1562), }, [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [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(1493), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1423), + [sym__newline] = ACTIONS(237), }, [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(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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1158), + [sym_labeled_block] = STATE(1158), + [sym_if_statement] = STATE(1158), + [sym_while_statement] = STATE(1158), + [sym_for_statement] = STATE(1158), + [sym_match_statement] = STATE(1158), + [sym__value] = STATE(1158), + [sym_expression] = STATE(1493), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(665), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1564), }, [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), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_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(1564), - [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [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(1493), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(666), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1566), }, [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), - [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_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(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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1233), + [sym_labeled_block] = STATE(1233), + [sym_if_statement] = STATE(1233), + [sym_while_statement] = STATE(1233), + [sym_for_statement] = STATE(1233), + [sym_match_statement] = STATE(1233), + [sym__value] = STATE(1233), + [sym_expression] = STATE(1493), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), }, [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(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_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(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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1234), + [sym_labeled_block] = STATE(1234), + [sym_if_statement] = STATE(1234), + [sym_while_statement] = STATE(1234), + [sym_for_statement] = STATE(1234), + [sym_match_statement] = STATE(1234), + [sym__value] = STATE(1234), + [sym_expression] = STATE(1493), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), }, [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1158), + [sym_labeled_block] = STATE(1158), + [sym_if_statement] = STATE(1158), + [sym_while_statement] = STATE(1158), + [sym_for_statement] = STATE(1158), + [sym_match_statement] = STATE(1158), + [sym__value] = STATE(1158), + [sym_expression] = STATE(1477), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(587), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1419), + [sym__newline] = ACTIONS(1568), }, [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), + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1202), + [sym_labeled_block] = STATE(1202), + [sym_if_statement] = STATE(1202), + [sym_while_statement] = STATE(1202), + [sym_for_statement] = STATE(1202), + [sym_match_statement] = STATE(1202), + [sym__value] = STATE(1202), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), [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), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1202), + [sym_labeled_block] = STATE(1202), + [sym_if_statement] = STATE(1202), + [sym_while_statement] = STATE(1202), + [sym_for_statement] = STATE(1202), + [sym_match_statement] = STATE(1202), + [sym__value] = STATE(1202), + [sym_expression] = STATE(689), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), [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), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [ts_builtin_sym_end] = ACTIONS(859), + [sym_identifier] = ACTIONS(854), + [anon_sym_import] = ACTIONS(854), + [anon_sym_hide] = ACTIONS(854), + [anon_sym_func] = ACTIONS(854), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_struct] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_RPAREN] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_COMMA] = ACTIONS(859), + [anon_sym_RBRACE] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_DOLLAR] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(859), + [anon_sym_RBRACK] = ACTIONS(859), + [anon_sym_void] = ACTIONS(854), + [anon_sym_anyopaque] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_int] = ACTIONS(854), + [anon_sym_float] = ACTIONS(854), + [anon_sym_range] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_c_char] = ACTIONS(854), + [anon_sym_c_schar] = ACTIONS(854), + [anon_sym_c_uchar] = ACTIONS(854), + [anon_sym_c_short] = ACTIONS(854), + [anon_sym_c_ushort] = ACTIONS(854), + [anon_sym_c_int] = ACTIONS(854), + [anon_sym_c_uint] = ACTIONS(854), + [anon_sym_c_long] = ACTIONS(854), + [anon_sym_c_ulong] = ACTIONS(854), + [anon_sym_c_longlong] = ACTIONS(854), + [anon_sym_c_ulonglong] = ACTIONS(854), + [anon_sym_c_float] = ACTIONS(854), + [anon_sym_c_double] = ACTIONS(854), + [anon_sym_c_longdouble] = ACTIONS(854), + [anon_sym_PLUS_EQ] = ACTIONS(859), + [anon_sym_DASH_EQ] = ACTIONS(859), + [anon_sym_STAR_EQ] = ACTIONS(859), + [anon_sym_SLASH_EQ] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(859), + [anon_sym_else] = ACTIONS(854), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(859), + [anon_sym_orelse] = ACTIONS(854), + [anon_sym_catch] = ACTIONS(854), + [anon_sym_or] = ACTIONS(854), + [anon_sym_and] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(854), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(854), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(859), + [anon_sym_try] = ACTIONS(854), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_true] = ACTIONS(854), + [anon_sym_false] = ACTIONS(854), + [sym_none] = ACTIONS(854), + [sym_undefined] = ACTIONS(854), + [sym_sink] = ACTIONS(854), + [sym_integer] = ACTIONS(854), + [sym_float] = ACTIONS(859), + [anon_sym_DQUOTE] = ACTIONS(859), + [sym_multiline_string] = ACTIONS(859), + [sym_character] = ACTIONS(859), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(859), }, [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1202), + [sym_labeled_block] = STATE(1202), + [sym_if_statement] = STATE(1202), + [sym_while_statement] = STATE(1202), + [sym_for_statement] = STATE(1202), + [sym_match_statement] = STATE(1202), + [sym__value] = STATE(1202), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_COLON] = ACTIONS(1574), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1202), + [sym_labeled_block] = STATE(1202), + [sym_if_statement] = STATE(1202), + [sym_while_statement] = STATE(1202), + [sym_for_statement] = STATE(1202), + [sym_match_statement] = STATE(1202), + [sym__value] = STATE(1202), + [sym_expression] = STATE(1493), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_COLON] = ACTIONS(1576), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), - [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1202), + [sym_labeled_block] = STATE(1202), + [sym_if_statement] = STATE(1202), + [sym_while_statement] = STATE(1202), + [sym_for_statement] = STATE(1202), + [sym_match_statement] = STATE(1202), + [sym__value] = STATE(1202), + [sym_expression] = STATE(1007), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_COLON] = ACTIONS(1578), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, [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(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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1202), + [sym_labeled_block] = STATE(1202), + [sym_if_statement] = STATE(1202), + [sym_while_statement] = STATE(1202), + [sym_for_statement] = STATE(1202), + [sym_match_statement] = STATE(1202), + [sym__value] = STATE(1202), + [sym_expression] = STATE(689), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_COLON] = ACTIONS(1580), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1202), + [sym_labeled_block] = STATE(1202), + [sym_if_statement] = STATE(1202), + [sym_while_statement] = STATE(1202), + [sym_for_statement] = STATE(1202), + [sym_match_statement] = STATE(1202), + [sym__value] = STATE(1202), + [sym_expression] = STATE(1493), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_COLON] = ACTIONS(1582), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, [STATE(676)] = { - [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(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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1202), + [sym_labeled_block] = STATE(1202), + [sym_if_statement] = STATE(1202), + [sym_while_statement] = STATE(1202), + [sym_for_statement] = STATE(1202), + [sym_match_statement] = STATE(1202), + [sym__value] = STATE(1202), + [sym_expression] = STATE(1477), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_COLON] = ACTIONS(1584), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1200), + [sym_labeled_block] = STATE(1200), + [sym_if_statement] = STATE(1200), + [sym_while_statement] = STATE(1200), + [sym_for_statement] = STATE(1200), + [sym_match_statement] = STATE(1200), + [sym__value] = STATE(1200), + [sym_expression] = STATE(1477), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1427), }, [STATE(678)] = { - [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(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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1202), + [sym_labeled_block] = STATE(1202), + [sym_if_statement] = STATE(1202), + [sym_while_statement] = STATE(1202), + [sym_for_statement] = STATE(1202), + [sym_match_statement] = STATE(1202), + [sym__value] = STATE(1202), + [sym_expression] = STATE(1477), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_COLON] = ACTIONS(1586), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, [STATE(679)] = { - [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1130), + [sym_labeled_block] = STATE(1130), + [sym_if_statement] = STATE(1130), + [sym_while_statement] = STATE(1130), + [sym_for_statement] = STATE(1130), + [sym_match_statement] = STATE(1130), + [sym__value] = STATE(1130), + [sym_expression] = STATE(1477), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(141), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), }, [STATE(680)] = { - [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1130), + [sym_labeled_block] = STATE(1130), + [sym_if_statement] = STATE(1130), + [sym_while_statement] = STATE(1130), + [sym_for_statement] = STATE(1130), + [sym_match_statement] = STATE(1130), + [sym__value] = STATE(1130), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1576), }, [STATE(681)] = { - [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1130), + [sym_labeled_block] = STATE(1130), + [sym_if_statement] = STATE(1130), + [sym_while_statement] = STATE(1130), + [sym_for_statement] = STATE(1130), + [sym_match_statement] = STATE(1130), + [sym__value] = STATE(1130), + [sym_expression] = STATE(1442), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(417), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(857), }, [STATE(682)] = { - [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1130), + [sym_labeled_block] = STATE(1130), + [sym_if_statement] = STATE(1130), + [sym_while_statement] = STATE(1130), + [sym_for_statement] = STATE(1130), + [sym_match_statement] = STATE(1130), + [sym__value] = STATE(1130), + [sym_expression] = STATE(1493), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(195), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1588), }, [STATE(683)] = { - [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(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_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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1130), + [sym_labeled_block] = STATE(1130), + [sym_if_statement] = STATE(1130), + [sym_while_statement] = STATE(1130), + [sym_for_statement] = STATE(1130), + [sym_match_statement] = STATE(1130), + [sym__value] = STATE(1130), + [sym_expression] = STATE(689), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(115), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1605), }, [STATE(684)] = { - [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(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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_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(1603), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1130), + [sym_labeled_block] = STATE(1130), + [sym_if_statement] = STATE(1130), + [sym_while_statement] = STATE(1130), + [sym_for_statement] = STATE(1130), + [sym_match_statement] = STATE(1130), + [sym__value] = STATE(1130), + [sym_expression] = STATE(1493), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(265), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1609), }, [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(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(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_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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1130), + [sym_labeled_block] = STATE(1130), + [sym_if_statement] = STATE(1130), + [sym_while_statement] = STATE(1130), + [sym_for_statement] = STATE(1130), + [sym_match_statement] = STATE(1130), + [sym__value] = STATE(1130), + [sym_expression] = STATE(1477), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(433), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1621), }, [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(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(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_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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1130), + [sym_labeled_block] = STATE(1130), + [sym_if_statement] = STATE(1130), + [sym_while_statement] = STATE(1130), + [sym_for_statement] = STATE(1130), + [sym_match_statement] = STATE(1130), + [sym__value] = STATE(1130), + [sym_expression] = STATE(689), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [sym_identifier] = ACTIONS(1425), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(251), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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(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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(1130), + [sym_labeled_block] = STATE(1130), + [sym_if_statement] = STATE(1130), + [sym_while_statement] = STATE(1130), + [sym_for_statement] = STATE(1130), + [sym_match_statement] = STATE(1130), + [sym__value] = STATE(1130), + [sym_expression] = STATE(1007), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [sym_identifier] = ACTIONS(880), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_if] = ACTIONS(167), + [anon_sym_while] = ACTIONS(55), + [anon_sym_for] = ACTIONS(57), + [anon_sym_match] = ACTIONS(59), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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_identifier] = ACTIONS(854), + [anon_sym_func] = ACTIONS(854), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_struct] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(856), + [anon_sym_RBRACE] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_DOLLAR] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(859), + [anon_sym_void] = ACTIONS(854), + [anon_sym_anyopaque] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_int] = ACTIONS(854), + [anon_sym_float] = ACTIONS(854), + [anon_sym_range] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_c_char] = ACTIONS(854), + [anon_sym_c_schar] = ACTIONS(854), + [anon_sym_c_uchar] = ACTIONS(854), + [anon_sym_c_short] = ACTIONS(854), + [anon_sym_c_ushort] = ACTIONS(854), + [anon_sym_c_int] = ACTIONS(854), + [anon_sym_c_uint] = ACTIONS(854), + [anon_sym_c_long] = ACTIONS(854), + [anon_sym_c_ulong] = ACTIONS(854), + [anon_sym_c_longlong] = ACTIONS(854), + [anon_sym_c_ulonglong] = ACTIONS(854), + [anon_sym_c_float] = ACTIONS(854), + [anon_sym_c_double] = ACTIONS(854), + [anon_sym_c_longdouble] = ACTIONS(854), + [anon_sym_return] = ACTIONS(854), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(1588), + [anon_sym_break] = ACTIONS(854), + [anon_sym_continue] = ACTIONS(854), + [anon_sym_defer] = ACTIONS(854), + [anon_sym_errdefer] = ACTIONS(854), + [anon_sym_if] = ACTIONS(854), + [anon_sym_else] = ACTIONS(854), + [anon_sym_while] = ACTIONS(854), + [anon_sym_for] = ACTIONS(854), + [anon_sym_match] = ACTIONS(854), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(859), + [anon_sym_orelse] = ACTIONS(854), + [anon_sym_catch] = ACTIONS(854), + [anon_sym_or] = ACTIONS(854), + [anon_sym_and] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(854), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(854), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(859), + [anon_sym_try] = ACTIONS(854), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_true] = ACTIONS(854), + [anon_sym_false] = ACTIONS(854), + [sym_none] = ACTIONS(854), + [sym_undefined] = ACTIONS(854), + [sym_sink] = ACTIONS(854), + [sym_integer] = ACTIONS(854), + [sym_float] = ACTIONS(859), + [anon_sym_DQUOTE] = ACTIONS(859), + [sym_multiline_string] = ACTIONS(859), + [sym_character] = ACTIONS(859), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1621), + [sym__newline] = ACTIONS(859), }, [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_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(1590), + [anon_sym_func] = ACTIONS(1590), + [anon_sym_BANG] = ACTIONS(1590), + [anon_sym_struct] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(1592), + [anon_sym_RBRACE] = ACTIONS(1592), + [anon_sym_DASH] = ACTIONS(1594), + [anon_sym_DOLLAR] = ACTIONS(1592), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1596), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(1590), + [anon_sym_anyopaque] = ACTIONS(1590), + [anon_sym_bool] = ACTIONS(1590), + [anon_sym_int] = ACTIONS(1590), + [anon_sym_float] = ACTIONS(1590), + [anon_sym_range] = ACTIONS(1590), + [anon_sym_i8] = ACTIONS(1590), + [anon_sym_i16] = ACTIONS(1590), + [anon_sym_i32] = ACTIONS(1590), + [anon_sym_i64] = ACTIONS(1590), + [anon_sym_u8] = ACTIONS(1590), + [anon_sym_u16] = ACTIONS(1590), + [anon_sym_u32] = ACTIONS(1590), + [anon_sym_u64] = ACTIONS(1590), + [anon_sym_isize] = ACTIONS(1590), + [anon_sym_usize] = ACTIONS(1590), + [anon_sym_f32] = ACTIONS(1590), + [anon_sym_f64] = ACTIONS(1590), + [anon_sym_c_char] = ACTIONS(1590), + [anon_sym_c_schar] = ACTIONS(1590), + [anon_sym_c_uchar] = ACTIONS(1590), + [anon_sym_c_short] = ACTIONS(1590), + [anon_sym_c_ushort] = ACTIONS(1590), + [anon_sym_c_int] = ACTIONS(1590), + [anon_sym_c_uint] = ACTIONS(1590), + [anon_sym_c_long] = ACTIONS(1590), + [anon_sym_c_ulong] = ACTIONS(1590), + [anon_sym_c_longlong] = ACTIONS(1590), + [anon_sym_c_ulonglong] = ACTIONS(1590), + [anon_sym_c_float] = ACTIONS(1590), + [anon_sym_c_double] = ACTIONS(1590), + [anon_sym_c_longdouble] = ACTIONS(1590), + [anon_sym_return] = ACTIONS(1590), + [anon_sym_yield] = ACTIONS(1590), + [anon_sym_break] = ACTIONS(1590), + [anon_sym_continue] = ACTIONS(1590), + [anon_sym_defer] = ACTIONS(1590), + [anon_sym_errdefer] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1590), + [anon_sym_else] = ACTIONS(1590), + [anon_sym_while] = ACTIONS(1590), + [anon_sym_for] = ACTIONS(1590), + [anon_sym_match] = ACTIONS(1590), + [anon_sym_DOT_DOT] = ACTIONS(1476), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1478), + [anon_sym_orelse] = ACTIONS(1462), + [anon_sym_catch] = ACTIONS(1464), + [anon_sym_or] = ACTIONS(1466), + [anon_sym_and] = ACTIONS(1456), + [anon_sym_EQ_EQ] = ACTIONS(1458), + [anon_sym_BANG_EQ] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1460), + [anon_sym_LT_EQ] = ACTIONS(1458), + [anon_sym_GT] = ACTIONS(1460), + [anon_sym_GT_EQ] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1594), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_AMP] = ACTIONS(1592), + [anon_sym_try] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(1590), + [anon_sym_false] = ACTIONS(1590), + [sym_none] = ACTIONS(1590), + [sym_undefined] = ACTIONS(1590), + [sym_sink] = ACTIONS(1590), + [sym_integer] = ACTIONS(1590), + [sym_float] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1592), + [sym_multiline_string] = ACTIONS(1592), + [sym_character] = ACTIONS(1592), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(610), + [sym__newline] = ACTIONS(1592), }, [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), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1598), + [anon_sym_import] = ACTIONS(1598), + [anon_sym_func] = ACTIONS(1598), + [anon_sym_c_func] = ACTIONS(1598), + [anon_sym_BANG] = ACTIONS(1600), + [anon_sym_struct] = ACTIONS(1598), + [anon_sym_c_struct] = ACTIONS(1598), + [sym_opaque_type] = ACTIONS(1598), + [anon_sym_distinct] = ACTIONS(1598), + [anon_sym_alias] = ACTIONS(1598), + [anon_sym_union] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1600), + [anon_sym_enum] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1600), + [anon_sym_LBRACE] = ACTIONS(1600), + [anon_sym_COMMA] = ACTIONS(1600), + [anon_sym_RBRACE] = ACTIONS(1600), + [anon_sym_DASH] = ACTIONS(1600), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1600), + [anon_sym_DOLLAR] = ACTIONS(1600), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_QMARK] = ACTIONS(1600), + [anon_sym_AT] = ACTIONS(1600), + [anon_sym_STAR] = ACTIONS(1600), + [anon_sym_LBRACK] = ACTIONS(1600), + [anon_sym_SEMI] = ACTIONS(1600), + [anon_sym_RBRACK] = ACTIONS(1600), + [anon_sym_void] = ACTIONS(1598), + [anon_sym_anyopaque] = ACTIONS(1598), + [anon_sym_bool] = ACTIONS(1598), + [anon_sym_int] = ACTIONS(1598), + [anon_sym_float] = ACTIONS(1598), + [anon_sym_range] = ACTIONS(1598), + [anon_sym_i8] = ACTIONS(1598), + [anon_sym_i16] = ACTIONS(1598), + [anon_sym_i32] = ACTIONS(1598), + [anon_sym_i64] = ACTIONS(1598), + [anon_sym_u8] = ACTIONS(1598), + [anon_sym_u16] = ACTIONS(1598), + [anon_sym_u32] = ACTIONS(1598), + [anon_sym_u64] = ACTIONS(1598), + [anon_sym_isize] = ACTIONS(1598), + [anon_sym_usize] = ACTIONS(1598), + [anon_sym_f32] = ACTIONS(1598), + [anon_sym_f64] = ACTIONS(1598), + [anon_sym_c_char] = ACTIONS(1598), + [anon_sym_c_schar] = ACTIONS(1598), + [anon_sym_c_uchar] = ACTIONS(1598), + [anon_sym_c_short] = ACTIONS(1598), + [anon_sym_c_ushort] = ACTIONS(1598), + [anon_sym_c_int] = ACTIONS(1598), + [anon_sym_c_uint] = ACTIONS(1598), + [anon_sym_c_long] = ACTIONS(1598), + [anon_sym_c_ulong] = ACTIONS(1598), + [anon_sym_c_longlong] = ACTIONS(1598), + [anon_sym_c_ulonglong] = ACTIONS(1598), + [anon_sym_c_float] = ACTIONS(1598), + [anon_sym_c_double] = ACTIONS(1598), + [anon_sym_c_longdouble] = ACTIONS(1598), + [anon_sym_return] = ACTIONS(1598), + [anon_sym_yield] = ACTIONS(1598), + [anon_sym_break] = ACTIONS(1598), + [anon_sym_continue] = ACTIONS(1598), + [anon_sym_defer] = ACTIONS(1598), + [anon_sym_errdefer] = ACTIONS(1598), + [anon_sym_if] = ACTIONS(1598), + [anon_sym_else] = ACTIONS(1598), + [anon_sym_while] = ACTIONS(1598), + [anon_sym_for] = ACTIONS(1598), + [anon_sym_match] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1600), + [anon_sym_try] = ACTIONS(1598), + [anon_sym_DOT] = ACTIONS(1598), + [anon_sym_true] = ACTIONS(1598), + [anon_sym_false] = ACTIONS(1598), + [sym_none] = ACTIONS(1598), + [sym_undefined] = ACTIONS(1598), + [sym_sink] = ACTIONS(1598), + [sym_integer] = ACTIONS(1598), + [sym_float] = ACTIONS(1600), + [anon_sym_DQUOTE] = ACTIONS(1600), + [sym_multiline_string] = ACTIONS(1600), + [sym_character] = ACTIONS(1600), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1633), + [sym__newline] = ACTIONS(1602), }, [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1430), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(1261), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_RBRACK] = ACTIONS(1611), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(1613), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(1615), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(1617), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(345), + [sym__newline] = ACTIONS(1619), }, [STATE(692)] = { - [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(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(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(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(1619), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1431), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(693), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_RBRACK] = ACTIONS(1625), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(1615), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(1629), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1635), + [sym__newline] = ACTIONS(1631), }, [STATE(693)] = { - [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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1430), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(1261), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_RBRACK] = ACTIONS(1633), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(1613), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(1615), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(1617), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1637), + [sym__newline] = ACTIONS(1619), }, [STATE(694)] = { - [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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_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(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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1430), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(1261), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_RBRACK] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(1613), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(1615), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(1617), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(309), + [sym__newline] = ACTIONS(1619), }, [STATE(695)] = { - [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1431), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(694), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_RBRACK] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(1615), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(1629), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1647), + [sym__newline] = ACTIONS(1639), }, [STATE(696)] = { - [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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_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(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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1431), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(691), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_RBRACK] = ACTIONS(1641), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(1615), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(1629), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(576), + [sym__newline] = ACTIONS(1643), }, [STATE(697)] = { - [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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_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(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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1454), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(700), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_RBRACK] = ACTIONS(1649), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(1651), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(576), + [sym__newline] = ACTIONS(1653), }, [STATE(698)] = { - [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(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(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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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(1655), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_match_arm] = STATE(699), + [sym_expression] = STATE(1426), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_match_statement_repeat1] = STATE(699), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RBRACE] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1657), + [sym__newline] = ACTIONS(1667), }, [STATE(699)] = { - [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_match_arm] = STATE(722), + [sym_expression] = STATE(1426), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_match_statement_repeat1] = STATE(722), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RBRACE] = ACTIONS(1669), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1671), }, [STATE(700)] = { - [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(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(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(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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1453), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(1262), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_RBRACK] = ACTIONS(1677), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(1679), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1673), + [sym__newline] = ACTIONS(1681), }, [STATE(701)] = { - [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(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_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(1619), - [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(2095), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(859), + [sym_identifier] = ACTIONS(844), + [anon_sym_COLON_COLON] = ACTIONS(1683), + [anon_sym_import] = ACTIONS(854), + [anon_sym_hide] = ACTIONS(854), + [anon_sym_func] = ACTIONS(283), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(867), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_PLUS_EQ] = ACTIONS(859), + [anon_sym_DASH_EQ] = ACTIONS(859), + [anon_sym_STAR_EQ] = ACTIONS(859), + [anon_sym_SLASH_EQ] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(873), + [anon_sym_else] = ACTIONS(854), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(859), + [anon_sym_orelse] = ACTIONS(854), + [anon_sym_catch] = ACTIONS(854), + [anon_sym_or] = ACTIONS(854), + [anon_sym_and] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(854), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(854), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_CARET] = ACTIONS(859), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1635), + [sym__newline] = ACTIONS(859), }, [STATE(702)] = { - [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_type] = STATE(461), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(1685), + [anon_sym_func] = ACTIONS(283), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_EQ] = ACTIONS(296), + [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(296), + [anon_sym_QMARK] = ACTIONS(301), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(304), + [anon_sym_mut] = ACTIONS(896), + [anon_sym_LBRACK] = ACTIONS(309), + [anon_sym_SEMI] = ACTIONS(291), + [anon_sym_RBRACK] = ACTIONS(291), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [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_else] = ACTIONS(296), + [anon_sym_DOT_DOT] = ACTIONS(296), + [anon_sym_DOT_DOT_EQ] = ACTIONS(291), + [anon_sym_orelse] = ACTIONS(296), + [anon_sym_catch] = ACTIONS(296), + [anon_sym_or] = ACTIONS(296), + [anon_sym_and] = ACTIONS(296), + [anon_sym_EQ_EQ] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(291), + [anon_sym_LT] = ACTIONS(296), + [anon_sym_LT_EQ] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(296), + [anon_sym_GT_EQ] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_SLASH] = ACTIONS(296), + [anon_sym_DOT] = ACTIONS(296), + [anon_sym_CARET] = ACTIONS(291), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1677), + [sym__newline] = ACTIONS(291), }, [STATE(703)] = { - [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_type] = STATE(427), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(1685), + [anon_sym_func] = ACTIONS(283), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_EQ] = ACTIONS(281), + [anon_sym_LPAREN] = ACTIONS(277), + [anon_sym_RPAREN] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(277), + [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_RBRACE] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(281), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(324), + [anon_sym_mut] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(329), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(277), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_PLUS_EQ] = ACTIONS(277), + [anon_sym_DASH_EQ] = ACTIONS(277), + [anon_sym_STAR_EQ] = ACTIONS(277), + [anon_sym_SLASH_EQ] = ACTIONS(277), + [anon_sym_else] = ACTIONS(281), + [anon_sym_DOT_DOT] = ACTIONS(281), + [anon_sym_DOT_DOT_EQ] = ACTIONS(277), + [anon_sym_orelse] = ACTIONS(281), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_or] = ACTIONS(281), + [anon_sym_and] = ACTIONS(281), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ] = ACTIONS(277), + [anon_sym_LT] = ACTIONS(281), + [anon_sym_LT_EQ] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(281), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(281), + [anon_sym_SLASH] = ACTIONS(281), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_CARET] = ACTIONS(277), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1726), + [sym__newline] = ACTIONS(277), }, [STATE(704)] = { - [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_type] = STATE(426), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(1685), + [anon_sym_func] = ACTIONS(283), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_EQ] = ACTIONS(281), + [anon_sym_LPAREN] = ACTIONS(277), + [anon_sym_RPAREN] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(277), + [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_RBRACE] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(281), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(324), + [anon_sym_mut] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(329), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_RBRACK] = ACTIONS(277), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_PLUS_EQ] = ACTIONS(277), + [anon_sym_DASH_EQ] = ACTIONS(277), + [anon_sym_STAR_EQ] = ACTIONS(277), + [anon_sym_SLASH_EQ] = ACTIONS(277), + [anon_sym_else] = ACTIONS(281), + [anon_sym_DOT_DOT] = ACTIONS(281), + [anon_sym_DOT_DOT_EQ] = ACTIONS(277), + [anon_sym_orelse] = ACTIONS(281), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_or] = ACTIONS(281), + [anon_sym_and] = ACTIONS(281), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ] = ACTIONS(277), + [anon_sym_LT] = ACTIONS(281), + [anon_sym_LT_EQ] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(281), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(281), + [anon_sym_SLASH] = ACTIONS(281), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_CARET] = ACTIONS(277), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1729), + [sym__newline] = ACTIONS(277), }, [STATE(705)] = { - [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_match_arm] = STATE(711), + [sym_expression] = STATE(1426), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_match_statement_repeat1] = STATE(711), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1671), + [sym__newline] = ACTIONS(1689), }, [STATE(706)] = { - [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_type] = STATE(449), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(1685), + [anon_sym_func] = ACTIONS(283), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_EQ] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_RPAREN] = ACTIONS(337), + [anon_sym_LBRACE] = ACTIONS(337), + [anon_sym_COMMA] = ACTIONS(337), + [anon_sym_RBRACE] = ACTIONS(337), + [anon_sym_DASH] = ACTIONS(341), + [anon_sym_QMARK] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(356), + [anon_sym_mut] = ACTIONS(345), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(337), + [anon_sym_RBRACK] = ACTIONS(337), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_PLUS_EQ] = ACTIONS(337), + [anon_sym_DASH_EQ] = ACTIONS(337), + [anon_sym_STAR_EQ] = ACTIONS(337), + [anon_sym_SLASH_EQ] = ACTIONS(337), + [anon_sym_else] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(341), + [anon_sym_DOT_DOT_EQ] = ACTIONS(337), + [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(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_LT_EQ] = ACTIONS(337), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(337), + [anon_sym_PLUS] = ACTIONS(341), + [anon_sym_SLASH] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(341), + [anon_sym_CARET] = ACTIONS(337), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1735), + [sym__newline] = ACTIONS(337), }, [STATE(707)] = { - [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_type] = STATE(451), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(1685), + [anon_sym_func] = ACTIONS(283), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_EQ] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_RPAREN] = ACTIONS(337), + [anon_sym_LBRACE] = ACTIONS(337), + [anon_sym_COMMA] = ACTIONS(337), + [anon_sym_RBRACE] = ACTIONS(337), + [anon_sym_DASH] = ACTIONS(341), + [anon_sym_QMARK] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(356), + [anon_sym_mut] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_SEMI] = ACTIONS(337), + [anon_sym_RBRACK] = ACTIONS(337), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_PLUS_EQ] = ACTIONS(337), + [anon_sym_DASH_EQ] = ACTIONS(337), + [anon_sym_STAR_EQ] = ACTIONS(337), + [anon_sym_SLASH_EQ] = ACTIONS(337), + [anon_sym_else] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(341), + [anon_sym_DOT_DOT_EQ] = ACTIONS(337), + [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(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_LT_EQ] = ACTIONS(337), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(337), + [anon_sym_PLUS] = ACTIONS(341), + [anon_sym_SLASH] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(341), + [anon_sym_CARET] = ACTIONS(337), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1739), + [sym__newline] = ACTIONS(337), }, [STATE(708)] = { - [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(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_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(1619), - [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(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(1685), + [anon_sym_func] = ACTIONS(283), + [anon_sym_c_func] = ACTIONS(283), + [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(287), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_mut] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_SEMI] = ACTIONS(369), + [anon_sym_RBRACK] = ACTIONS(369), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [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(1635), + [sym__newline] = ACTIONS(369), }, [STATE(709)] = { - [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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1440), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(710), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_RBRACK] = ACTIONS(1641), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(1629), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(610), + [sym__newline] = ACTIONS(1691), }, [STATE(710)] = { - [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(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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1441), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(1263), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_RBRACK] = ACTIONS(1611), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(1617), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1671), + [sym__newline] = ACTIONS(1693), }, [STATE(711)] = { - [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(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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_match_arm] = STATE(722), + [sym_expression] = STATE(1426), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_match_statement_repeat1] = STATE(722), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RBRACE] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1671), }, [STATE(712)] = { - [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(1659), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_match_arm] = STATE(723), + [sym_expression] = STATE(1426), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_match_statement_repeat1] = STATE(723), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RBRACE] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1745), + [sym__newline] = ACTIONS(1697), }, [STATE(713)] = { - [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(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(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), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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(1655), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_match_arm] = STATE(724), + [sym_expression] = STATE(1426), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_match_statement_repeat1] = STATE(724), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RBRACE] = ACTIONS(1699), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1657), + [sym__newline] = ACTIONS(1701), }, [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), + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1433), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), [aux_sym_import_declaration_repeat1] = STATE(715), - [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(1749), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_RBRACK] = ACTIONS(1637), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(1629), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1751), + [sym__newline] = ACTIONS(1703), }, [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(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(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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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(1655), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1437), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(1263), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_RBRACK] = ACTIONS(1635), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(1617), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1657), + [sym__newline] = ACTIONS(1693), }, [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1428), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(717), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_RBRACK] = ACTIONS(1705), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(1651), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1763), + [sym__newline] = ACTIONS(1707), }, [STATE(717)] = { - [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(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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1429), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(1262), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_RBRACK] = ACTIONS(1709), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(1679), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(1681), }, [STATE(718)] = { - [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1434), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(719), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_STAR] = ACTIONS(1645), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(1647), + [anon_sym_RBRACK] = ACTIONS(1711), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(1651), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(1713), }, [STATE(719)] = { - [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), - [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), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1436), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(1262), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_STAR] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_RBRACK] = ACTIONS(1715), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(1679), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1765), + [sym__newline] = ACTIONS(1681), }, [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1435), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(1263), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_STAR] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_RBRACK] = ACTIONS(1633), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(1617), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1438), + [sym__newline] = ACTIONS(1693), }, [STATE(721)] = { - [sym_argument_list] = STATE(523), + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1439), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(720), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_RBRACK] = ACTIONS(1625), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(1629), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1717), + }, + [STATE(722)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_match_arm] = STATE(722), + [sym_expression] = STATE(1426), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_match_statement_repeat1] = STATE(722), + [sym_identifier] = ACTIONS(1719), + [anon_sym_func] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1725), + [anon_sym_struct] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1731), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_DOLLAR] = ACTIONS(1736), + [anon_sym_LBRACK] = ACTIONS(1739), + [anon_sym_void] = ACTIONS(1742), + [anon_sym_anyopaque] = ACTIONS(1742), + [anon_sym_bool] = ACTIONS(1742), + [anon_sym_int] = ACTIONS(1742), + [anon_sym_float] = ACTIONS(1742), + [anon_sym_range] = ACTIONS(1742), + [anon_sym_i8] = ACTIONS(1742), + [anon_sym_i16] = ACTIONS(1742), + [anon_sym_i32] = ACTIONS(1742), + [anon_sym_i64] = ACTIONS(1742), + [anon_sym_u8] = ACTIONS(1742), + [anon_sym_u16] = ACTIONS(1742), + [anon_sym_u32] = ACTIONS(1742), + [anon_sym_u64] = ACTIONS(1742), + [anon_sym_isize] = ACTIONS(1742), + [anon_sym_usize] = ACTIONS(1742), + [anon_sym_f32] = ACTIONS(1742), + [anon_sym_f64] = ACTIONS(1742), + [anon_sym_c_char] = ACTIONS(1742), + [anon_sym_c_schar] = ACTIONS(1742), + [anon_sym_c_uchar] = ACTIONS(1742), + [anon_sym_c_short] = ACTIONS(1742), + [anon_sym_c_ushort] = ACTIONS(1742), + [anon_sym_c_int] = ACTIONS(1742), + [anon_sym_c_uint] = ACTIONS(1742), + [anon_sym_c_long] = ACTIONS(1742), + [anon_sym_c_ulong] = ACTIONS(1742), + [anon_sym_c_longlong] = ACTIONS(1742), + [anon_sym_c_ulonglong] = ACTIONS(1742), + [anon_sym_c_float] = ACTIONS(1742), + [anon_sym_c_double] = ACTIONS(1742), + [anon_sym_c_longdouble] = ACTIONS(1742), + [anon_sym_else] = ACTIONS(1745), + [anon_sym_AMP] = ACTIONS(1725), + [anon_sym_try] = ACTIONS(1748), + [anon_sym_DOT] = ACTIONS(1751), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [sym_none] = ACTIONS(1757), + [sym_undefined] = ACTIONS(1757), + [sym_sink] = ACTIONS(1757), + [sym_integer] = ACTIONS(1757), + [sym_float] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym_multiline_string] = ACTIONS(1760), + [sym_character] = ACTIONS(1760), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1766), + }, + [STATE(723)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_match_arm] = STATE(722), + [sym_expression] = STATE(1426), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_match_statement_repeat1] = STATE(722), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RBRACE] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1671), + }, + [STATE(724)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_match_arm] = STATE(722), + [sym_expression] = STATE(1426), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_match_statement_repeat1] = STATE(722), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RBRACE] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1671), + }, + [STATE(725)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(503), + [sym_expression] = STATE(435), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(726)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_assignment_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(758), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1775), + }, + [STATE(727)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(503), + [sym_expression] = STATE(435), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(728)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_assignment_statement] = STATE(2022), + [sym_expression_statement] = STATE(2022), + [sym_expression] = STATE(1423), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(729)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1479), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_keyed_field_initializer] = STATE(1656), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1777), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RBRACE] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(730)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(503), + [sym_expression] = STATE(435), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(731)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(466), + [sym_expression] = STATE(419), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(730), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1781), + }, + [STATE(732)] = { + [sym_type] = STATE(427), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(277), + [sym_identifier] = ACTIONS(315), + [anon_sym_import] = ACTIONS(281), + [anon_sym_hide] = ACTIONS(281), + [anon_sym_func] = ACTIONS(283), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_EQ] = ACTIONS(281), + [anon_sym_LPAREN] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(281), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(324), + [anon_sym_mut] = ACTIONS(289), + [anon_sym_LBRACK] = ACTIONS(329), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_PLUS_EQ] = ACTIONS(277), + [anon_sym_DASH_EQ] = ACTIONS(277), + [anon_sym_STAR_EQ] = ACTIONS(277), + [anon_sym_SLASH_EQ] = ACTIONS(277), + [anon_sym_COLON] = ACTIONS(277), + [anon_sym_else] = ACTIONS(281), + [anon_sym_DOT_DOT] = ACTIONS(281), + [anon_sym_DOT_DOT_EQ] = ACTIONS(277), + [anon_sym_orelse] = ACTIONS(281), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_or] = ACTIONS(281), + [anon_sym_and] = ACTIONS(281), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ] = ACTIONS(277), + [anon_sym_LT] = ACTIONS(281), + [anon_sym_LT_EQ] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(281), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(281), + [anon_sym_SLASH] = ACTIONS(281), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_CARET] = ACTIONS(277), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(277), + }, + [STATE(733)] = { + [sym_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(1468), + [anon_sym_func] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_EQ] = ACTIONS(1783), + [anon_sym_struct] = ACTIONS(1468), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_anyopaque] = ACTIONS(1468), + [anon_sym_bool] = ACTIONS(1468), + [anon_sym_int] = ACTIONS(1468), + [anon_sym_float] = ACTIONS(1468), + [anon_sym_range] = ACTIONS(1468), + [anon_sym_i8] = ACTIONS(1468), + [anon_sym_i16] = ACTIONS(1468), + [anon_sym_i32] = ACTIONS(1468), + [anon_sym_i64] = ACTIONS(1468), + [anon_sym_u8] = ACTIONS(1468), + [anon_sym_u16] = ACTIONS(1468), + [anon_sym_u32] = ACTIONS(1468), + [anon_sym_u64] = ACTIONS(1468), + [anon_sym_isize] = ACTIONS(1468), + [anon_sym_usize] = ACTIONS(1468), + [anon_sym_f32] = ACTIONS(1468), + [anon_sym_f64] = ACTIONS(1468), + [anon_sym_c_char] = ACTIONS(1468), + [anon_sym_c_schar] = ACTIONS(1468), + [anon_sym_c_uchar] = ACTIONS(1468), + [anon_sym_c_short] = ACTIONS(1468), + [anon_sym_c_ushort] = ACTIONS(1468), + [anon_sym_c_int] = ACTIONS(1468), + [anon_sym_c_uint] = ACTIONS(1468), + [anon_sym_c_long] = ACTIONS(1468), + [anon_sym_c_ulong] = ACTIONS(1468), + [anon_sym_c_longlong] = ACTIONS(1468), + [anon_sym_c_ulonglong] = ACTIONS(1468), + [anon_sym_c_float] = ACTIONS(1468), + [anon_sym_c_double] = ACTIONS(1468), + [anon_sym_c_longdouble] = ACTIONS(1468), + [anon_sym_PLUS_EQ] = ACTIONS(1789), + [anon_sym_DASH_EQ] = ACTIONS(1789), + [anon_sym_STAR_EQ] = ACTIONS(1789), + [anon_sym_SLASH_EQ] = ACTIONS(1789), + [anon_sym_else] = ACTIONS(1468), + [anon_sym_DOT_DOT] = ACTIONS(1791), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1793), + [anon_sym_orelse] = ACTIONS(1795), + [anon_sym_catch] = ACTIONS(1797), + [anon_sym_or] = ACTIONS(1799), + [anon_sym_and] = ACTIONS(1801), + [anon_sym_EQ_EQ] = ACTIONS(1803), + [anon_sym_BANG_EQ] = ACTIONS(1803), + [anon_sym_LT] = ACTIONS(1805), + [anon_sym_LT_EQ] = ACTIONS(1803), + [anon_sym_GT] = ACTIONS(1805), + [anon_sym_GT_EQ] = ACTIONS(1803), + [anon_sym_PLUS] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_try] = ACTIONS(1468), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [sym_none] = ACTIONS(1468), + [sym_undefined] = ACTIONS(1468), + [sym_sink] = ACTIONS(1468), + [sym_integer] = ACTIONS(1468), + [sym_float] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [sym_multiline_string] = ACTIONS(1472), + [sym_character] = ACTIONS(1472), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1472), + }, + [STATE(734)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(503), + [sym_expression] = STATE(435), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(735)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1481), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_keyed_field_initializer] = STATE(1669), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(729), + [sym_identifier] = ACTIONS(1777), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RBRACE] = ACTIONS(1807), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1809), + }, + [STATE(736)] = { + [sym_type] = STATE(426), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(277), + [sym_identifier] = ACTIONS(315), + [anon_sym_import] = ACTIONS(281), + [anon_sym_hide] = ACTIONS(281), + [anon_sym_func] = ACTIONS(283), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_EQ] = ACTIONS(281), + [anon_sym_LPAREN] = ACTIONS(277), + [anon_sym_LBRACE] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(281), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(324), + [anon_sym_mut] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(329), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_PLUS_EQ] = ACTIONS(277), + [anon_sym_DASH_EQ] = ACTIONS(277), + [anon_sym_STAR_EQ] = ACTIONS(277), + [anon_sym_SLASH_EQ] = ACTIONS(277), + [anon_sym_COLON] = ACTIONS(277), + [anon_sym_else] = ACTIONS(281), + [anon_sym_DOT_DOT] = ACTIONS(281), + [anon_sym_DOT_DOT_EQ] = ACTIONS(277), + [anon_sym_orelse] = ACTIONS(281), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_or] = ACTIONS(281), + [anon_sym_and] = ACTIONS(281), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ] = ACTIONS(277), + [anon_sym_LT] = ACTIONS(281), + [anon_sym_LT_EQ] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(281), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(281), + [anon_sym_SLASH] = ACTIONS(281), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_CARET] = ACTIONS(277), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(277), + }, + [STATE(737)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_assignment_statement] = STATE(2075), + [sym_expression_statement] = STATE(2075), + [sym_expression] = STATE(1423), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(738)] = { + [sym_type] = STATE(449), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(337), + [sym_identifier] = ACTIONS(347), + [anon_sym_import] = ACTIONS(341), + [anon_sym_hide] = ACTIONS(341), + [anon_sym_func] = ACTIONS(283), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_EQ] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_LBRACE] = ACTIONS(337), + [anon_sym_DASH] = ACTIONS(341), + [anon_sym_QMARK] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(356), + [anon_sym_mut] = ACTIONS(345), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_PLUS_EQ] = ACTIONS(337), + [anon_sym_DASH_EQ] = ACTIONS(337), + [anon_sym_STAR_EQ] = ACTIONS(337), + [anon_sym_SLASH_EQ] = ACTIONS(337), + [anon_sym_COLON] = ACTIONS(337), + [anon_sym_else] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(341), + [anon_sym_DOT_DOT_EQ] = ACTIONS(337), + [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(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_LT_EQ] = ACTIONS(337), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(337), + [anon_sym_PLUS] = ACTIONS(341), + [anon_sym_SLASH] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(341), + [anon_sym_CARET] = ACTIONS(337), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(337), + }, + [STATE(739)] = { + [sym_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(981), + [anon_sym_func] = ACTIONS(981), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_EQ] = ACTIONS(981), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(979), + [anon_sym_DASH] = ACTIONS(981), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(981), + [anon_sym_anyopaque] = ACTIONS(981), + [anon_sym_bool] = ACTIONS(981), + [anon_sym_int] = ACTIONS(981), + [anon_sym_float] = ACTIONS(981), + [anon_sym_range] = ACTIONS(981), + [anon_sym_i8] = ACTIONS(981), + [anon_sym_i16] = ACTIONS(981), + [anon_sym_i32] = ACTIONS(981), + [anon_sym_i64] = ACTIONS(981), + [anon_sym_u8] = ACTIONS(981), + [anon_sym_u16] = ACTIONS(981), + [anon_sym_u32] = ACTIONS(981), + [anon_sym_u64] = ACTIONS(981), + [anon_sym_isize] = ACTIONS(981), + [anon_sym_usize] = ACTIONS(981), + [anon_sym_f32] = ACTIONS(981), + [anon_sym_f64] = ACTIONS(981), + [anon_sym_c_char] = ACTIONS(981), + [anon_sym_c_schar] = ACTIONS(981), + [anon_sym_c_uchar] = ACTIONS(981), + [anon_sym_c_short] = ACTIONS(981), + [anon_sym_c_ushort] = ACTIONS(981), + [anon_sym_c_int] = ACTIONS(981), + [anon_sym_c_uint] = ACTIONS(981), + [anon_sym_c_long] = ACTIONS(981), + [anon_sym_c_ulong] = ACTIONS(981), + [anon_sym_c_longlong] = ACTIONS(981), + [anon_sym_c_ulonglong] = ACTIONS(981), + [anon_sym_c_float] = ACTIONS(981), + [anon_sym_c_double] = ACTIONS(981), + [anon_sym_c_longdouble] = ACTIONS(981), + [anon_sym_PLUS_EQ] = ACTIONS(979), + [anon_sym_DASH_EQ] = ACTIONS(979), + [anon_sym_STAR_EQ] = ACTIONS(979), + [anon_sym_SLASH_EQ] = ACTIONS(979), + [anon_sym_else] = ACTIONS(981), + [anon_sym_DOT_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT_EQ] = ACTIONS(979), + [anon_sym_orelse] = ACTIONS(981), + [anon_sym_catch] = ACTIONS(981), + [anon_sym_or] = ACTIONS(981), + [anon_sym_and] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(979), + [anon_sym_BANG_EQ] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(981), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(979), + [anon_sym_PLUS] = ACTIONS(981), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_try] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(981), + [anon_sym_false] = ACTIONS(981), + [sym_none] = ACTIONS(981), + [sym_undefined] = ACTIONS(981), + [sym_sink] = ACTIONS(981), + [sym_integer] = ACTIONS(981), + [sym_float] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [sym_multiline_string] = ACTIONS(979), + [sym_character] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(979), + }, + [STATE(740)] = { + [sym_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(981), + [anon_sym_func] = ACTIONS(981), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_EQ] = ACTIONS(981), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(979), + [anon_sym_DASH] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(981), + [anon_sym_anyopaque] = ACTIONS(981), + [anon_sym_bool] = ACTIONS(981), + [anon_sym_int] = ACTIONS(981), + [anon_sym_float] = ACTIONS(981), + [anon_sym_range] = ACTIONS(981), + [anon_sym_i8] = ACTIONS(981), + [anon_sym_i16] = ACTIONS(981), + [anon_sym_i32] = ACTIONS(981), + [anon_sym_i64] = ACTIONS(981), + [anon_sym_u8] = ACTIONS(981), + [anon_sym_u16] = ACTIONS(981), + [anon_sym_u32] = ACTIONS(981), + [anon_sym_u64] = ACTIONS(981), + [anon_sym_isize] = ACTIONS(981), + [anon_sym_usize] = ACTIONS(981), + [anon_sym_f32] = ACTIONS(981), + [anon_sym_f64] = ACTIONS(981), + [anon_sym_c_char] = ACTIONS(981), + [anon_sym_c_schar] = ACTIONS(981), + [anon_sym_c_uchar] = ACTIONS(981), + [anon_sym_c_short] = ACTIONS(981), + [anon_sym_c_ushort] = ACTIONS(981), + [anon_sym_c_int] = ACTIONS(981), + [anon_sym_c_uint] = ACTIONS(981), + [anon_sym_c_long] = ACTIONS(981), + [anon_sym_c_ulong] = ACTIONS(981), + [anon_sym_c_longlong] = ACTIONS(981), + [anon_sym_c_ulonglong] = ACTIONS(981), + [anon_sym_c_float] = ACTIONS(981), + [anon_sym_c_double] = ACTIONS(981), + [anon_sym_c_longdouble] = ACTIONS(981), + [anon_sym_PLUS_EQ] = ACTIONS(979), + [anon_sym_DASH_EQ] = ACTIONS(979), + [anon_sym_STAR_EQ] = ACTIONS(979), + [anon_sym_SLASH_EQ] = ACTIONS(979), + [anon_sym_else] = ACTIONS(981), + [anon_sym_DOT_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT_EQ] = ACTIONS(979), + [anon_sym_orelse] = ACTIONS(1795), + [anon_sym_catch] = ACTIONS(1797), + [anon_sym_or] = ACTIONS(1799), + [anon_sym_and] = ACTIONS(1801), + [anon_sym_EQ_EQ] = ACTIONS(1803), + [anon_sym_BANG_EQ] = ACTIONS(1803), + [anon_sym_LT] = ACTIONS(1805), + [anon_sym_LT_EQ] = ACTIONS(1803), + [anon_sym_GT] = ACTIONS(1805), + [anon_sym_GT_EQ] = ACTIONS(1803), + [anon_sym_PLUS] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_try] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(981), + [anon_sym_false] = ACTIONS(981), + [sym_none] = ACTIONS(981), + [sym_undefined] = ACTIONS(981), + [sym_sink] = ACTIONS(981), + [sym_integer] = ACTIONS(981), + [sym_float] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [sym_multiline_string] = ACTIONS(979), + [sym_character] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(979), + }, + [STATE(741)] = { + [sym_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(981), + [anon_sym_func] = ACTIONS(981), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_EQ] = ACTIONS(981), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(979), + [anon_sym_DASH] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(981), + [anon_sym_anyopaque] = ACTIONS(981), + [anon_sym_bool] = ACTIONS(981), + [anon_sym_int] = ACTIONS(981), + [anon_sym_float] = ACTIONS(981), + [anon_sym_range] = ACTIONS(981), + [anon_sym_i8] = ACTIONS(981), + [anon_sym_i16] = ACTIONS(981), + [anon_sym_i32] = ACTIONS(981), + [anon_sym_i64] = ACTIONS(981), + [anon_sym_u8] = ACTIONS(981), + [anon_sym_u16] = ACTIONS(981), + [anon_sym_u32] = ACTIONS(981), + [anon_sym_u64] = ACTIONS(981), + [anon_sym_isize] = ACTIONS(981), + [anon_sym_usize] = ACTIONS(981), + [anon_sym_f32] = ACTIONS(981), + [anon_sym_f64] = ACTIONS(981), + [anon_sym_c_char] = ACTIONS(981), + [anon_sym_c_schar] = ACTIONS(981), + [anon_sym_c_uchar] = ACTIONS(981), + [anon_sym_c_short] = ACTIONS(981), + [anon_sym_c_ushort] = ACTIONS(981), + [anon_sym_c_int] = ACTIONS(981), + [anon_sym_c_uint] = ACTIONS(981), + [anon_sym_c_long] = ACTIONS(981), + [anon_sym_c_ulong] = ACTIONS(981), + [anon_sym_c_longlong] = ACTIONS(981), + [anon_sym_c_ulonglong] = ACTIONS(981), + [anon_sym_c_float] = ACTIONS(981), + [anon_sym_c_double] = ACTIONS(981), + [anon_sym_c_longdouble] = ACTIONS(981), + [anon_sym_PLUS_EQ] = ACTIONS(979), + [anon_sym_DASH_EQ] = ACTIONS(979), + [anon_sym_STAR_EQ] = ACTIONS(979), + [anon_sym_SLASH_EQ] = ACTIONS(979), + [anon_sym_else] = ACTIONS(981), + [anon_sym_DOT_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT_EQ] = ACTIONS(979), + [anon_sym_orelse] = ACTIONS(981), + [anon_sym_catch] = ACTIONS(981), + [anon_sym_or] = ACTIONS(1799), + [anon_sym_and] = ACTIONS(1801), + [anon_sym_EQ_EQ] = ACTIONS(1803), + [anon_sym_BANG_EQ] = ACTIONS(1803), + [anon_sym_LT] = ACTIONS(1805), + [anon_sym_LT_EQ] = ACTIONS(1803), + [anon_sym_GT] = ACTIONS(1805), + [anon_sym_GT_EQ] = ACTIONS(1803), + [anon_sym_PLUS] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_try] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(981), + [anon_sym_false] = ACTIONS(981), + [sym_none] = ACTIONS(981), + [sym_undefined] = ACTIONS(981), + [sym_sink] = ACTIONS(981), + [sym_integer] = ACTIONS(981), + [sym_float] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [sym_multiline_string] = ACTIONS(979), + [sym_character] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(979), + }, + [STATE(742)] = { + [sym_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(1444), + [anon_sym_func] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_EQ] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1442), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_anyopaque] = ACTIONS(1444), + [anon_sym_bool] = ACTIONS(1444), + [anon_sym_int] = ACTIONS(1444), + [anon_sym_float] = ACTIONS(1444), + [anon_sym_range] = ACTIONS(1444), + [anon_sym_i8] = ACTIONS(1444), + [anon_sym_i16] = ACTIONS(1444), + [anon_sym_i32] = ACTIONS(1444), + [anon_sym_i64] = ACTIONS(1444), + [anon_sym_u8] = ACTIONS(1444), + [anon_sym_u16] = ACTIONS(1444), + [anon_sym_u32] = ACTIONS(1444), + [anon_sym_u64] = ACTIONS(1444), + [anon_sym_isize] = ACTIONS(1444), + [anon_sym_usize] = ACTIONS(1444), + [anon_sym_f32] = ACTIONS(1444), + [anon_sym_f64] = ACTIONS(1444), + [anon_sym_c_char] = ACTIONS(1444), + [anon_sym_c_schar] = ACTIONS(1444), + [anon_sym_c_uchar] = ACTIONS(1444), + [anon_sym_c_short] = ACTIONS(1444), + [anon_sym_c_ushort] = ACTIONS(1444), + [anon_sym_c_int] = ACTIONS(1444), + [anon_sym_c_uint] = ACTIONS(1444), + [anon_sym_c_long] = ACTIONS(1444), + [anon_sym_c_ulong] = ACTIONS(1444), + [anon_sym_c_longlong] = ACTIONS(1444), + [anon_sym_c_ulonglong] = ACTIONS(1444), + [anon_sym_c_float] = ACTIONS(1444), + [anon_sym_c_double] = ACTIONS(1444), + [anon_sym_c_longdouble] = ACTIONS(1444), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_else] = ACTIONS(1444), + [anon_sym_DOT_DOT] = ACTIONS(1444), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1442), + [anon_sym_orelse] = ACTIONS(1444), + [anon_sym_catch] = ACTIONS(1444), + [anon_sym_or] = ACTIONS(1444), + [anon_sym_and] = ACTIONS(1801), + [anon_sym_EQ_EQ] = ACTIONS(1803), + [anon_sym_BANG_EQ] = ACTIONS(1803), + [anon_sym_LT] = ACTIONS(1805), + [anon_sym_LT_EQ] = ACTIONS(1803), + [anon_sym_GT] = ACTIONS(1805), + [anon_sym_GT_EQ] = ACTIONS(1803), + [anon_sym_PLUS] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_try] = ACTIONS(1444), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(1444), + [anon_sym_false] = ACTIONS(1444), + [sym_none] = ACTIONS(1444), + [sym_undefined] = ACTIONS(1444), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [sym_multiline_string] = ACTIONS(1442), + [sym_character] = ACTIONS(1442), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1442), + }, + [STATE(743)] = { + [sym_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(1444), + [anon_sym_func] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_EQ] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_DASH] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1442), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(1444), + [anon_sym_anyopaque] = ACTIONS(1444), + [anon_sym_bool] = ACTIONS(1444), + [anon_sym_int] = ACTIONS(1444), + [anon_sym_float] = ACTIONS(1444), + [anon_sym_range] = ACTIONS(1444), + [anon_sym_i8] = ACTIONS(1444), + [anon_sym_i16] = ACTIONS(1444), + [anon_sym_i32] = ACTIONS(1444), + [anon_sym_i64] = ACTIONS(1444), + [anon_sym_u8] = ACTIONS(1444), + [anon_sym_u16] = ACTIONS(1444), + [anon_sym_u32] = ACTIONS(1444), + [anon_sym_u64] = ACTIONS(1444), + [anon_sym_isize] = ACTIONS(1444), + [anon_sym_usize] = ACTIONS(1444), + [anon_sym_f32] = ACTIONS(1444), + [anon_sym_f64] = ACTIONS(1444), + [anon_sym_c_char] = ACTIONS(1444), + [anon_sym_c_schar] = ACTIONS(1444), + [anon_sym_c_uchar] = ACTIONS(1444), + [anon_sym_c_short] = ACTIONS(1444), + [anon_sym_c_ushort] = ACTIONS(1444), + [anon_sym_c_int] = ACTIONS(1444), + [anon_sym_c_uint] = ACTIONS(1444), + [anon_sym_c_long] = ACTIONS(1444), + [anon_sym_c_ulong] = ACTIONS(1444), + [anon_sym_c_longlong] = ACTIONS(1444), + [anon_sym_c_ulonglong] = ACTIONS(1444), + [anon_sym_c_float] = ACTIONS(1444), + [anon_sym_c_double] = ACTIONS(1444), + [anon_sym_c_longdouble] = ACTIONS(1444), + [anon_sym_PLUS_EQ] = ACTIONS(1442), + [anon_sym_DASH_EQ] = ACTIONS(1442), + [anon_sym_STAR_EQ] = ACTIONS(1442), + [anon_sym_SLASH_EQ] = ACTIONS(1442), + [anon_sym_else] = ACTIONS(1444), + [anon_sym_DOT_DOT] = ACTIONS(1444), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1442), + [anon_sym_orelse] = ACTIONS(1444), + [anon_sym_catch] = ACTIONS(1444), + [anon_sym_or] = ACTIONS(1444), + [anon_sym_and] = ACTIONS(1444), + [anon_sym_EQ_EQ] = ACTIONS(1803), + [anon_sym_BANG_EQ] = ACTIONS(1803), + [anon_sym_LT] = ACTIONS(1805), + [anon_sym_LT_EQ] = ACTIONS(1803), + [anon_sym_GT] = ACTIONS(1805), + [anon_sym_GT_EQ] = ACTIONS(1803), + [anon_sym_PLUS] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_try] = ACTIONS(1444), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(1444), + [anon_sym_false] = ACTIONS(1444), + [sym_none] = ACTIONS(1444), + [sym_undefined] = ACTIONS(1444), + [sym_sink] = ACTIONS(1444), + [sym_integer] = ACTIONS(1444), + [sym_float] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1442), + [sym_multiline_string] = ACTIONS(1442), + [sym_character] = ACTIONS(1442), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1442), + }, + [STATE(744)] = { + [sym_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(981), + [anon_sym_func] = ACTIONS(981), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_EQ] = ACTIONS(981), + [anon_sym_struct] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(979), + [anon_sym_DASH] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(981), + [anon_sym_anyopaque] = ACTIONS(981), + [anon_sym_bool] = ACTIONS(981), + [anon_sym_int] = ACTIONS(981), + [anon_sym_float] = ACTIONS(981), + [anon_sym_range] = ACTIONS(981), + [anon_sym_i8] = ACTIONS(981), + [anon_sym_i16] = ACTIONS(981), + [anon_sym_i32] = ACTIONS(981), + [anon_sym_i64] = ACTIONS(981), + [anon_sym_u8] = ACTIONS(981), + [anon_sym_u16] = ACTIONS(981), + [anon_sym_u32] = ACTIONS(981), + [anon_sym_u64] = ACTIONS(981), + [anon_sym_isize] = ACTIONS(981), + [anon_sym_usize] = ACTIONS(981), + [anon_sym_f32] = ACTIONS(981), + [anon_sym_f64] = ACTIONS(981), + [anon_sym_c_char] = ACTIONS(981), + [anon_sym_c_schar] = ACTIONS(981), + [anon_sym_c_uchar] = ACTIONS(981), + [anon_sym_c_short] = ACTIONS(981), + [anon_sym_c_ushort] = ACTIONS(981), + [anon_sym_c_int] = ACTIONS(981), + [anon_sym_c_uint] = ACTIONS(981), + [anon_sym_c_long] = ACTIONS(981), + [anon_sym_c_ulong] = ACTIONS(981), + [anon_sym_c_longlong] = ACTIONS(981), + [anon_sym_c_ulonglong] = ACTIONS(981), + [anon_sym_c_float] = ACTIONS(981), + [anon_sym_c_double] = ACTIONS(981), + [anon_sym_c_longdouble] = ACTIONS(981), + [anon_sym_PLUS_EQ] = ACTIONS(979), + [anon_sym_DASH_EQ] = ACTIONS(979), + [anon_sym_STAR_EQ] = ACTIONS(979), + [anon_sym_SLASH_EQ] = ACTIONS(979), + [anon_sym_else] = ACTIONS(981), + [anon_sym_DOT_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT_EQ] = ACTIONS(979), + [anon_sym_orelse] = ACTIONS(981), + [anon_sym_catch] = ACTIONS(981), + [anon_sym_or] = ACTIONS(981), + [anon_sym_and] = ACTIONS(981), + [anon_sym_EQ_EQ] = ACTIONS(979), + [anon_sym_BANG_EQ] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(981), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(981), + [anon_sym_GT_EQ] = ACTIONS(979), + [anon_sym_PLUS] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_try] = ACTIONS(981), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(981), + [anon_sym_false] = ACTIONS(981), + [sym_none] = ACTIONS(981), + [sym_undefined] = ACTIONS(981), + [sym_sink] = ACTIONS(981), + [sym_integer] = ACTIONS(981), + [sym_float] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(979), + [sym_multiline_string] = ACTIONS(979), + [sym_character] = ACTIONS(979), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(979), + }, + [STATE(745)] = { + [sym_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(1113), + [anon_sym_func] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_EQ] = ACTIONS(1113), + [anon_sym_struct] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(1111), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_DOLLAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(1113), + [anon_sym_anyopaque] = ACTIONS(1113), + [anon_sym_bool] = ACTIONS(1113), + [anon_sym_int] = ACTIONS(1113), + [anon_sym_float] = ACTIONS(1113), + [anon_sym_range] = ACTIONS(1113), + [anon_sym_i8] = ACTIONS(1113), + [anon_sym_i16] = ACTIONS(1113), + [anon_sym_i32] = ACTIONS(1113), + [anon_sym_i64] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1113), + [anon_sym_u16] = ACTIONS(1113), + [anon_sym_u32] = ACTIONS(1113), + [anon_sym_u64] = ACTIONS(1113), + [anon_sym_isize] = ACTIONS(1113), + [anon_sym_usize] = ACTIONS(1113), + [anon_sym_f32] = ACTIONS(1113), + [anon_sym_f64] = ACTIONS(1113), + [anon_sym_c_char] = ACTIONS(1113), + [anon_sym_c_schar] = ACTIONS(1113), + [anon_sym_c_uchar] = ACTIONS(1113), + [anon_sym_c_short] = ACTIONS(1113), + [anon_sym_c_ushort] = ACTIONS(1113), + [anon_sym_c_int] = ACTIONS(1113), + [anon_sym_c_uint] = ACTIONS(1113), + [anon_sym_c_long] = ACTIONS(1113), + [anon_sym_c_ulong] = ACTIONS(1113), + [anon_sym_c_longlong] = ACTIONS(1113), + [anon_sym_c_ulonglong] = ACTIONS(1113), + [anon_sym_c_float] = ACTIONS(1113), + [anon_sym_c_double] = ACTIONS(1113), + [anon_sym_c_longdouble] = ACTIONS(1113), + [anon_sym_PLUS_EQ] = ACTIONS(1111), + [anon_sym_DASH_EQ] = ACTIONS(1111), + [anon_sym_STAR_EQ] = ACTIONS(1111), + [anon_sym_SLASH_EQ] = ACTIONS(1111), + [anon_sym_else] = ACTIONS(1113), + [anon_sym_DOT_DOT] = ACTIONS(1113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1111), + [anon_sym_orelse] = ACTIONS(1113), + [anon_sym_catch] = ACTIONS(1113), + [anon_sym_or] = ACTIONS(1113), + [anon_sym_and] = ACTIONS(1113), + [anon_sym_EQ_EQ] = ACTIONS(1111), + [anon_sym_BANG_EQ] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1113), + [anon_sym_GT_EQ] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_try] = ACTIONS(1113), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(1113), + [anon_sym_false] = ACTIONS(1113), + [sym_none] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1113), + [sym_sink] = ACTIONS(1113), + [sym_integer] = ACTIONS(1113), + [sym_float] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1111), + [sym_multiline_string] = ACTIONS(1111), + [sym_character] = ACTIONS(1111), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1111), + }, + [STATE(746)] = { + [sym_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(1113), + [anon_sym_func] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_EQ] = ACTIONS(1113), + [anon_sym_struct] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(1111), + [anon_sym_DASH] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(1113), + [anon_sym_anyopaque] = ACTIONS(1113), + [anon_sym_bool] = ACTIONS(1113), + [anon_sym_int] = ACTIONS(1113), + [anon_sym_float] = ACTIONS(1113), + [anon_sym_range] = ACTIONS(1113), + [anon_sym_i8] = ACTIONS(1113), + [anon_sym_i16] = ACTIONS(1113), + [anon_sym_i32] = ACTIONS(1113), + [anon_sym_i64] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1113), + [anon_sym_u16] = ACTIONS(1113), + [anon_sym_u32] = ACTIONS(1113), + [anon_sym_u64] = ACTIONS(1113), + [anon_sym_isize] = ACTIONS(1113), + [anon_sym_usize] = ACTIONS(1113), + [anon_sym_f32] = ACTIONS(1113), + [anon_sym_f64] = ACTIONS(1113), + [anon_sym_c_char] = ACTIONS(1113), + [anon_sym_c_schar] = ACTIONS(1113), + [anon_sym_c_uchar] = ACTIONS(1113), + [anon_sym_c_short] = ACTIONS(1113), + [anon_sym_c_ushort] = ACTIONS(1113), + [anon_sym_c_int] = ACTIONS(1113), + [anon_sym_c_uint] = ACTIONS(1113), + [anon_sym_c_long] = ACTIONS(1113), + [anon_sym_c_ulong] = ACTIONS(1113), + [anon_sym_c_longlong] = ACTIONS(1113), + [anon_sym_c_ulonglong] = ACTIONS(1113), + [anon_sym_c_float] = ACTIONS(1113), + [anon_sym_c_double] = ACTIONS(1113), + [anon_sym_c_longdouble] = ACTIONS(1113), + [anon_sym_PLUS_EQ] = ACTIONS(1111), + [anon_sym_DASH_EQ] = ACTIONS(1111), + [anon_sym_STAR_EQ] = ACTIONS(1111), + [anon_sym_SLASH_EQ] = ACTIONS(1111), + [anon_sym_else] = ACTIONS(1113), + [anon_sym_DOT_DOT] = ACTIONS(1113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1111), + [anon_sym_orelse] = ACTIONS(1795), + [anon_sym_catch] = ACTIONS(1797), + [anon_sym_or] = ACTIONS(1799), + [anon_sym_and] = ACTIONS(1801), + [anon_sym_EQ_EQ] = ACTIONS(1803), + [anon_sym_BANG_EQ] = ACTIONS(1803), + [anon_sym_LT] = ACTIONS(1805), + [anon_sym_LT_EQ] = ACTIONS(1803), + [anon_sym_GT] = ACTIONS(1805), + [anon_sym_GT_EQ] = ACTIONS(1803), + [anon_sym_PLUS] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_try] = ACTIONS(1113), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(1113), + [anon_sym_false] = ACTIONS(1113), + [sym_none] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1113), + [sym_sink] = ACTIONS(1113), + [sym_integer] = ACTIONS(1113), + [sym_float] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1111), + [sym_multiline_string] = ACTIONS(1111), + [sym_character] = ACTIONS(1111), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1111), + }, + [STATE(747)] = { + [sym_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(1113), + [anon_sym_func] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_EQ] = ACTIONS(1113), + [anon_sym_struct] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(1111), + [anon_sym_DASH] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(1113), + [anon_sym_anyopaque] = ACTIONS(1113), + [anon_sym_bool] = ACTIONS(1113), + [anon_sym_int] = ACTIONS(1113), + [anon_sym_float] = ACTIONS(1113), + [anon_sym_range] = ACTIONS(1113), + [anon_sym_i8] = ACTIONS(1113), + [anon_sym_i16] = ACTIONS(1113), + [anon_sym_i32] = ACTIONS(1113), + [anon_sym_i64] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1113), + [anon_sym_u16] = ACTIONS(1113), + [anon_sym_u32] = ACTIONS(1113), + [anon_sym_u64] = ACTIONS(1113), + [anon_sym_isize] = ACTIONS(1113), + [anon_sym_usize] = ACTIONS(1113), + [anon_sym_f32] = ACTIONS(1113), + [anon_sym_f64] = ACTIONS(1113), + [anon_sym_c_char] = ACTIONS(1113), + [anon_sym_c_schar] = ACTIONS(1113), + [anon_sym_c_uchar] = ACTIONS(1113), + [anon_sym_c_short] = ACTIONS(1113), + [anon_sym_c_ushort] = ACTIONS(1113), + [anon_sym_c_int] = ACTIONS(1113), + [anon_sym_c_uint] = ACTIONS(1113), + [anon_sym_c_long] = ACTIONS(1113), + [anon_sym_c_ulong] = ACTIONS(1113), + [anon_sym_c_longlong] = ACTIONS(1113), + [anon_sym_c_ulonglong] = ACTIONS(1113), + [anon_sym_c_float] = ACTIONS(1113), + [anon_sym_c_double] = ACTIONS(1113), + [anon_sym_c_longdouble] = ACTIONS(1113), + [anon_sym_PLUS_EQ] = ACTIONS(1111), + [anon_sym_DASH_EQ] = ACTIONS(1111), + [anon_sym_STAR_EQ] = ACTIONS(1111), + [anon_sym_SLASH_EQ] = ACTIONS(1111), + [anon_sym_else] = ACTIONS(1113), + [anon_sym_DOT_DOT] = ACTIONS(1113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1111), + [anon_sym_orelse] = ACTIONS(1113), + [anon_sym_catch] = ACTIONS(1113), + [anon_sym_or] = ACTIONS(1799), + [anon_sym_and] = ACTIONS(1801), + [anon_sym_EQ_EQ] = ACTIONS(1803), + [anon_sym_BANG_EQ] = ACTIONS(1803), + [anon_sym_LT] = ACTIONS(1805), + [anon_sym_LT_EQ] = ACTIONS(1803), + [anon_sym_GT] = ACTIONS(1805), + [anon_sym_GT_EQ] = ACTIONS(1803), + [anon_sym_PLUS] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_try] = ACTIONS(1113), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(1113), + [anon_sym_false] = ACTIONS(1113), + [sym_none] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1113), + [sym_sink] = ACTIONS(1113), + [sym_integer] = ACTIONS(1113), + [sym_float] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1111), + [sym_multiline_string] = ACTIONS(1111), + [sym_character] = ACTIONS(1111), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1111), + }, + [STATE(748)] = { + [sym_argument_list] = STATE(504), [sym_identifier] = ACTIONS(1448), [anon_sym_func] = ACTIONS(1448), [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(1777), + [anon_sym_EQ] = ACTIONS(1448), [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_LPAREN] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1446), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(983), [anon_sym_void] = ACTIONS(1448), [anon_sym_anyopaque] = ACTIONS(1448), [anon_sym_bool] = ACTIONS(1448), @@ -82785,27811 +85484,25961 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_PLUS_EQ] = ACTIONS(1446), + [anon_sym_DASH_EQ] = ACTIONS(1446), + [anon_sym_STAR_EQ] = ACTIONS(1446), + [anon_sym_SLASH_EQ] = ACTIONS(1446), [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_DOT_DOT] = ACTIONS(1448), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1446), + [anon_sym_orelse] = ACTIONS(1448), + [anon_sym_catch] = ACTIONS(1448), + [anon_sym_or] = ACTIONS(1448), + [anon_sym_and] = ACTIONS(1801), + [anon_sym_EQ_EQ] = ACTIONS(1803), + [anon_sym_BANG_EQ] = ACTIONS(1803), + [anon_sym_LT] = ACTIONS(1805), + [anon_sym_LT_EQ] = ACTIONS(1803), + [anon_sym_GT] = ACTIONS(1805), + [anon_sym_GT_EQ] = ACTIONS(1803), + [anon_sym_PLUS] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1446), [anon_sym_try] = ACTIONS(1448), - [anon_sym_DOT] = ACTIONS(933), - [anon_sym_CARET] = ACTIONS(31), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), [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_float] = ACTIONS(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1452), + [sym__newline] = ACTIONS(1446), }, - [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), + [STATE(749)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_assignment_statement] = STATE(1977), + [sym_expression_statement] = STATE(1977), + [sym_expression] = STATE(1423), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(750)] = { + [sym_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(1113), + [anon_sym_func] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_EQ] = ACTIONS(1113), + [anon_sym_struct] = ACTIONS(1113), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(1111), + [anon_sym_DASH] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1111), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(1113), + [anon_sym_anyopaque] = ACTIONS(1113), + [anon_sym_bool] = ACTIONS(1113), + [anon_sym_int] = ACTIONS(1113), + [anon_sym_float] = ACTIONS(1113), + [anon_sym_range] = ACTIONS(1113), + [anon_sym_i8] = ACTIONS(1113), + [anon_sym_i16] = ACTIONS(1113), + [anon_sym_i32] = ACTIONS(1113), + [anon_sym_i64] = ACTIONS(1113), + [anon_sym_u8] = ACTIONS(1113), + [anon_sym_u16] = ACTIONS(1113), + [anon_sym_u32] = ACTIONS(1113), + [anon_sym_u64] = ACTIONS(1113), + [anon_sym_isize] = ACTIONS(1113), + [anon_sym_usize] = ACTIONS(1113), + [anon_sym_f32] = ACTIONS(1113), + [anon_sym_f64] = ACTIONS(1113), + [anon_sym_c_char] = ACTIONS(1113), + [anon_sym_c_schar] = ACTIONS(1113), + [anon_sym_c_uchar] = ACTIONS(1113), + [anon_sym_c_short] = ACTIONS(1113), + [anon_sym_c_ushort] = ACTIONS(1113), + [anon_sym_c_int] = ACTIONS(1113), + [anon_sym_c_uint] = ACTIONS(1113), + [anon_sym_c_long] = ACTIONS(1113), + [anon_sym_c_ulong] = ACTIONS(1113), + [anon_sym_c_longlong] = ACTIONS(1113), + [anon_sym_c_ulonglong] = ACTIONS(1113), + [anon_sym_c_float] = ACTIONS(1113), + [anon_sym_c_double] = ACTIONS(1113), + [anon_sym_c_longdouble] = ACTIONS(1113), + [anon_sym_PLUS_EQ] = ACTIONS(1111), + [anon_sym_DASH_EQ] = ACTIONS(1111), + [anon_sym_STAR_EQ] = ACTIONS(1111), + [anon_sym_SLASH_EQ] = ACTIONS(1111), + [anon_sym_else] = ACTIONS(1113), + [anon_sym_DOT_DOT] = ACTIONS(1113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1111), + [anon_sym_orelse] = ACTIONS(1113), + [anon_sym_catch] = ACTIONS(1113), + [anon_sym_or] = ACTIONS(1113), + [anon_sym_and] = ACTIONS(1113), + [anon_sym_EQ_EQ] = ACTIONS(1111), + [anon_sym_BANG_EQ] = ACTIONS(1111), + [anon_sym_LT] = ACTIONS(1113), + [anon_sym_LT_EQ] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1113), + [anon_sym_GT_EQ] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_try] = ACTIONS(1113), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(1113), + [anon_sym_false] = ACTIONS(1113), + [sym_none] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1113), + [sym_sink] = ACTIONS(1113), + [sym_integer] = ACTIONS(1113), + [sym_float] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1111), + [sym_multiline_string] = ACTIONS(1111), + [sym_character] = ACTIONS(1111), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(991), + [sym__newline] = ACTIONS(1111), }, - [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(525), - [sym_catch_expression] = STATE(525), - [sym_unary_expression] = STATE(525), - [sym_field_expression] = STATE(525), - [sym_intrinsic_call_expression] = STATE(525), - [sym_call_expression] = STATE(525), - [sym_index_expression] = STATE(525), - [sym_slice_expression] = STATE(525), - [sym_postfix_expression] = STATE(525), - [sym_struct_literal] = STATE(525), - [sym_enum_literal] = STATE(525), - [sym_array_literal] = STATE(525), - [sym_parenthesized_expression] = STATE(525), - [sym_comptime_block] = STATE(525), - [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(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), + [STATE(751)] = { + [sym_type] = STATE(451), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(337), + [sym_identifier] = ACTIONS(347), + [anon_sym_import] = ACTIONS(341), + [anon_sym_hide] = ACTIONS(341), + [anon_sym_func] = ACTIONS(283), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_EQ] = ACTIONS(341), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_LBRACE] = ACTIONS(337), + [anon_sym_DASH] = ACTIONS(341), + [anon_sym_QMARK] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(356), + [anon_sym_mut] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_PLUS_EQ] = ACTIONS(337), + [anon_sym_DASH_EQ] = ACTIONS(337), + [anon_sym_STAR_EQ] = ACTIONS(337), + [anon_sym_SLASH_EQ] = ACTIONS(337), + [anon_sym_COLON] = ACTIONS(337), + [anon_sym_else] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(341), + [anon_sym_DOT_DOT_EQ] = ACTIONS(337), + [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(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_LT_EQ] = ACTIONS(337), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(337), + [anon_sym_PLUS] = ACTIONS(341), + [anon_sym_SLASH] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(341), + [anon_sym_CARET] = ACTIONS(337), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1791), + [sym__newline] = ACTIONS(337), }, - [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), + [STATE(752)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_assignment_statement] = STATE(1969), + [sym_expression_statement] = STATE(1969), + [sym_expression] = STATE(1424), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(760), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(991), + [sym__newline] = ACTIONS(1811), }, - [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(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), + [STATE(753)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(466), + [sym_expression] = STATE(419), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(767), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1793), + [sym__newline] = ACTIONS(1813), }, - [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(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), + [STATE(754)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(466), + [sym_expression] = STATE(419), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(755), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(1815), }, - [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), + [STATE(755)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(503), + [sym_expression] = STATE(435), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(857), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(756)] = { + [sym_type] = STATE(461), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(291), + [sym_identifier] = ACTIONS(293), + [anon_sym_import] = ACTIONS(296), + [anon_sym_hide] = ACTIONS(296), + [anon_sym_func] = ACTIONS(283), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_EQ] = ACTIONS(296), + [anon_sym_LPAREN] = ACTIONS(291), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_QMARK] = ACTIONS(301), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(304), + [anon_sym_mut] = ACTIONS(896), + [anon_sym_LBRACK] = ACTIONS(309), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [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_COLON] = ACTIONS(291), + [anon_sym_else] = ACTIONS(296), + [anon_sym_DOT_DOT] = ACTIONS(296), + [anon_sym_DOT_DOT_EQ] = ACTIONS(291), + [anon_sym_orelse] = ACTIONS(296), + [anon_sym_catch] = ACTIONS(296), + [anon_sym_or] = ACTIONS(296), + [anon_sym_and] = ACTIONS(296), + [anon_sym_EQ_EQ] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(291), + [anon_sym_LT] = ACTIONS(296), + [anon_sym_LT_EQ] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(296), + [anon_sym_GT_EQ] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_SLASH] = ACTIONS(296), + [anon_sym_DOT] = ACTIONS(296), + [anon_sym_CARET] = ACTIONS(291), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1797), + [sym__newline] = ACTIONS(291), }, - [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(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), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(757)] = { + [sym_type] = STATE(418), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(369), + [sym_identifier] = ACTIONS(371), + [anon_sym_import] = ACTIONS(374), + [anon_sym_hide] = ACTIONS(374), + [anon_sym_func] = ACTIONS(283), + [anon_sym_c_func] = ACTIONS(283), + [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(287), + [anon_sym_STAR] = ACTIONS(382), + [anon_sym_mut] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [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(227), + [sym__newline] = ACTIONS(369), }, - [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), + [STATE(758)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_assignment_statement] = STATE(1636), + [sym_expression_statement] = STATE(1636), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(1817), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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(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(167), - [anon_sym_struct] = ACTIONS(19), - [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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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(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(113), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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(1807), - }, - [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(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(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), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_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(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(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), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_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), + [STATE(759)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_assignment_statement] = STATE(1642), + [sym_expression_statement] = STATE(1642), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(764), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), [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), - [sym_undefined] = ACTIONS(83), - [sym_sink] = 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_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1821), }, - [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(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), + [STATE(760)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_assignment_statement] = STATE(1987), + [sym_expression_statement] = STATE(1987), + [sym_expression] = STATE(1423), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(761)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_assignment_statement] = STATE(2089), + [sym_expression_statement] = STATE(2089), + [sym_expression] = STATE(1424), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(737), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1823), }, - [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(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), + [STATE(762)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(503), + [sym_expression] = STATE(435), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1825), + [sym__newline] = ACTIONS(237), }, - [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(1829), - [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(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(167), - [anon_sym_struct] = ACTIONS(19), - [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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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), + [STATE(763)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_assignment_statement] = STATE(1993), + [sym_expression_statement] = STATE(1993), + [sym_expression] = STATE(1424), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(749), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(764)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_assignment_statement] = STATE(1676), + [sym_expression_statement] = STATE(1676), + [sym_expression] = STATE(1422), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1835), + [sym__newline] = ACTIONS(237), }, - [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(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), + [STATE(765)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(466), + [sym_expression] = STATE(419), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(727), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(1837), }, - [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), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(766)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_assignment_statement] = STATE(2038), + [sym_expression_statement] = STATE(2038), + [sym_expression] = STATE(1424), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(728), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1839), }, - [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), + [STATE(767)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(503), + [sym_expression] = STATE(435), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1434), + [sym__newline] = ACTIONS(237), }, - [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(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), + [STATE(768)] = { + [ts_builtin_sym_end] = ACTIONS(859), + [sym_identifier] = ACTIONS(854), + [anon_sym_import] = ACTIONS(854), + [anon_sym_hide] = ACTIONS(854), + [anon_sym_func] = ACTIONS(854), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_struct] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_RPAREN] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_RBRACE] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_DOLLAR] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(859), + [anon_sym_void] = ACTIONS(854), + [anon_sym_anyopaque] = ACTIONS(854), + [anon_sym_bool] = ACTIONS(854), + [anon_sym_int] = ACTIONS(854), + [anon_sym_float] = ACTIONS(854), + [anon_sym_range] = ACTIONS(854), + [anon_sym_i8] = ACTIONS(854), + [anon_sym_i16] = ACTIONS(854), + [anon_sym_i32] = ACTIONS(854), + [anon_sym_i64] = ACTIONS(854), + [anon_sym_u8] = ACTIONS(854), + [anon_sym_u16] = ACTIONS(854), + [anon_sym_u32] = ACTIONS(854), + [anon_sym_u64] = ACTIONS(854), + [anon_sym_isize] = ACTIONS(854), + [anon_sym_usize] = ACTIONS(854), + [anon_sym_f32] = ACTIONS(854), + [anon_sym_f64] = ACTIONS(854), + [anon_sym_c_char] = ACTIONS(854), + [anon_sym_c_schar] = ACTIONS(854), + [anon_sym_c_uchar] = ACTIONS(854), + [anon_sym_c_short] = ACTIONS(854), + [anon_sym_c_ushort] = ACTIONS(854), + [anon_sym_c_int] = ACTIONS(854), + [anon_sym_c_uint] = ACTIONS(854), + [anon_sym_c_long] = ACTIONS(854), + [anon_sym_c_ulong] = ACTIONS(854), + [anon_sym_c_longlong] = ACTIONS(854), + [anon_sym_c_ulonglong] = ACTIONS(854), + [anon_sym_c_float] = ACTIONS(854), + [anon_sym_c_double] = ACTIONS(854), + [anon_sym_c_longdouble] = ACTIONS(854), + [anon_sym_COLON] = ACTIONS(1588), + [anon_sym_else] = ACTIONS(854), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(859), + [anon_sym_orelse] = ACTIONS(854), + [anon_sym_catch] = ACTIONS(854), + [anon_sym_or] = ACTIONS(854), + [anon_sym_and] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(854), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(854), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(859), + [anon_sym_try] = ACTIONS(854), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_true] = ACTIONS(854), + [anon_sym_false] = ACTIONS(854), + [sym_none] = ACTIONS(854), + [sym_undefined] = ACTIONS(854), + [sym_sink] = ACTIONS(854), + [sym_integer] = ACTIONS(854), + [sym_float] = ACTIONS(859), + [anon_sym_DQUOTE] = ACTIONS(859), + [sym_multiline_string] = ACTIONS(859), + [sym_character] = ACTIONS(859), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(859), }, - [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(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(1843), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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), + [STATE(769)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(466), + [sym_expression] = STATE(419), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(762), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1845), + [sym__newline] = ACTIONS(1841), }, - [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), + [STATE(770)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(466), + [sym_expression] = STATE(419), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(734), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1849), + [sym__newline] = ACTIONS(1843), }, - [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), + [STATE(771)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(503), + [sym_expression] = STATE(435), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1849), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(772)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(466), + [sym_expression] = STATE(419), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(771), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1849), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1851), + }, + [STATE(773)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_block] = STATE(466), + [sym_expression] = STATE(419), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(725), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(774)] = { + [sym_type] = STATE(2093), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(859), + [sym_identifier] = ACTIONS(844), + [anon_sym_COLON_COLON] = ACTIONS(1855), + [anon_sym_import] = ACTIONS(854), + [anon_sym_hide] = ACTIONS(854), + [anon_sym_func] = ACTIONS(283), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(867), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_PLUS_EQ] = ACTIONS(859), + [anon_sym_DASH_EQ] = ACTIONS(859), + [anon_sym_STAR_EQ] = ACTIONS(859), + [anon_sym_SLASH_EQ] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(873), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(859), + [anon_sym_orelse] = ACTIONS(854), + [anon_sym_catch] = ACTIONS(854), + [anon_sym_or] = ACTIONS(854), + [anon_sym_and] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(854), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(854), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_CARET] = ACTIONS(859), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1855), + [sym__newline] = ACTIONS(859), }, - [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), + [STATE(775)] = { + [sym_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(1448), + [anon_sym_func] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_EQ] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_DASH] = ACTIONS(1785), + [anon_sym_DOLLAR] = ACTIONS(1446), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(983), + [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(1446), + [anon_sym_DASH_EQ] = ACTIONS(1446), + [anon_sym_STAR_EQ] = ACTIONS(1446), + [anon_sym_SLASH_EQ] = ACTIONS(1446), + [anon_sym_else] = ACTIONS(1448), + [anon_sym_DOT_DOT] = ACTIONS(1448), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1446), + [anon_sym_orelse] = ACTIONS(1448), + [anon_sym_catch] = ACTIONS(1448), + [anon_sym_or] = ACTIONS(1448), + [anon_sym_and] = ACTIONS(1448), + [anon_sym_EQ_EQ] = ACTIONS(1803), + [anon_sym_BANG_EQ] = ACTIONS(1803), + [anon_sym_LT] = ACTIONS(1805), + [anon_sym_LT_EQ] = ACTIONS(1803), + [anon_sym_GT] = ACTIONS(1805), + [anon_sym_GT_EQ] = ACTIONS(1803), + [anon_sym_PLUS] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_try] = ACTIONS(1448), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [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(1446), + [anon_sym_DQUOTE] = ACTIONS(1446), + [sym_multiline_string] = ACTIONS(1446), + [sym_character] = ACTIONS(1446), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(1446), }, - [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), + [STATE(776)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1460), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), [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), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(777)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1484), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(1260), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(1613), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(1615), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(778)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(576), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(836), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(779)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), [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_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(803), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_RBRACK] = ACTIONS(1865), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1865), + [sym__newline] = ACTIONS(1867), }, - [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(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), + [STATE(780)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1494), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(1994), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), [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), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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(1873), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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), + [STATE(781)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1471), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(783), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(1873), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1875), }, - [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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_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(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(309), - }, - [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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_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(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(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(1811), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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), + [STATE(782)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1411), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(885), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1877), }, - [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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_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(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), + [STATE(783)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1460), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(576), + [sym__newline] = ACTIONS(237), }, - [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), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(784)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1460), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(808), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1881), }, - [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(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), + [STATE(785)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1471), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(776), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1883), }, - [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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_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), + [STATE(786)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1465), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_RBRACK] = ACTIONS(1885), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(857), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(787)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1460), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_RBRACK] = ACTIONS(1885), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(345), + [sym__newline] = ACTIONS(237), }, - [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), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(788)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1460), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(818), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_RBRACK] = ACTIONS(1885), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(1887), }, - [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(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), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(789)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1460), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_RBRACK] = ACTIONS(1889), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(790)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1471), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(819), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_RBRACK] = ACTIONS(1885), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1891), }, - [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(113), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1893), - [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), + [STATE(791)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1460), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(786), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_RBRACK] = ACTIONS(1889), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1895), + [sym__newline] = ACTIONS(1893), }, - [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(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), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(792)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1393), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_RBRACK] = ACTIONS(1895), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(793)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1471), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(787), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_RBRACK] = ACTIONS(1889), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1899), + [sym__newline] = ACTIONS(1897), }, - [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(113), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(1901), - [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), + [STATE(794)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1443), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(797), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(1901), }, - [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), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(795)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1459), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(904), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1903), }, - [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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_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(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), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(796)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1486), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(1963), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_RBRACK] = ACTIONS(1905), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1907), }, - [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(113), - [anon_sym_struct] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(219), - [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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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(1909), - }, - [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), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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(1911), - }, - [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(525), - [sym_catch_expression] = STATE(525), - [sym_unary_expression] = STATE(525), - [sym_field_expression] = STATE(525), - [sym_intrinsic_call_expression] = STATE(525), - [sym_call_expression] = STATE(525), - [sym_index_expression] = STATE(525), - [sym_slice_expression] = STATE(525), - [sym_postfix_expression] = STATE(525), - [sym_struct_literal] = STATE(525), - [sym_enum_literal] = STATE(525), - [sym_array_literal] = STATE(525), - [sym_parenthesized_expression] = STATE(525), - [sym_comptime_block] = STATE(525), - [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(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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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(1913), - }, [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1447), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(610), + [sym__newline] = ACTIONS(237), }, [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(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(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_type] = STATE(2107), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(1685), + [anon_sym_COLON_COLON] = ACTIONS(1911), + [anon_sym_func] = ACTIONS(283), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_RPAREN] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(867), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_PLUS_EQ] = ACTIONS(859), + [anon_sym_DASH_EQ] = ACTIONS(859), + [anon_sym_STAR_EQ] = ACTIONS(859), + [anon_sym_SLASH_EQ] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(873), + [anon_sym_else] = ACTIONS(854), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(859), + [anon_sym_orelse] = ACTIONS(854), + [anon_sym_catch] = ACTIONS(854), + [anon_sym_or] = ACTIONS(854), + [anon_sym_and] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(854), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(854), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_CARET] = ACTIONS(859), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(859), }, [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), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1465), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(1913), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1917), + [sym__newline] = ACTIONS(237), }, [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(741), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(923), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(857), + [sym__newline] = ACTIONS(1915), }, [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(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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1465), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(1917), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1460), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(1917), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1919), + [sym__newline] = ACTIONS(237), }, [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1393), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_RBRACK] = ACTIONS(1919), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(857), + [sym__newline] = ACTIONS(237), }, [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1446), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(792), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_RBRACK] = ACTIONS(1921), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(1923), }, [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1480), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(777), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(1615), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1925), + }, + [STATE(806)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1400), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(843), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_PIPE] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(807)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1460), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(799), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(1917), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(808)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1465), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(1857), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(809)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1460), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(812), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), [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), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1460), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(801), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(1857), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(811)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1471), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(802), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(1857), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1937), }, + [STATE(812)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1465), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_RBRACK] = ACTIONS(1939), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1471), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(789), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_RBRACK] = ACTIONS(1941), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(814)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1500), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(988), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_PIPE] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1849), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1945), }, - [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(525), - [sym_catch_expression] = STATE(525), - [sym_unary_expression] = STATE(525), - [sym_field_expression] = STATE(525), - [sym_intrinsic_call_expression] = STATE(525), - [sym_call_expression] = STATE(525), - [sym_index_expression] = STATE(525), - [sym_slice_expression] = STATE(525), - [sym_postfix_expression] = STATE(525), - [sym_struct_literal] = STATE(525), - [sym_enum_literal] = STATE(525), - [sym_array_literal] = STATE(525), - [sym_parenthesized_expression] = STATE(525), - [sym_comptime_block] = STATE(525), - [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(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), + [STATE(815)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1448), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(816)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1394), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(866), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_PIPE] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1947), }, - [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(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), + [STATE(817)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1445), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(815), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_RPAREN] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1949), }, - [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(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), + [STATE(818)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1465), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_RBRACK] = ACTIONS(1931), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1877), + [sym__newline] = ACTIONS(237), }, - [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(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), + [STATE(819)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1460), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_RBRACK] = ACTIONS(1931), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(820)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(533), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(958), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_PIPE] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1951), }, - [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(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), + [STATE(821)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(419), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(891), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1953), }, - [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(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), + [STATE(822)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(435), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(823)] = { + [sym_type] = STATE(2095), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(859), + [sym_identifier] = ACTIONS(844), + [anon_sym_COLON_COLON] = ACTIONS(1683), + [anon_sym_import] = ACTIONS(854), + [anon_sym_hide] = ACTIONS(854), + [anon_sym_func] = ACTIONS(283), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(867), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_PLUS_EQ] = ACTIONS(859), + [anon_sym_DASH_EQ] = ACTIONS(859), + [anon_sym_STAR_EQ] = ACTIONS(859), + [anon_sym_SLASH_EQ] = ACTIONS(859), + [anon_sym_else] = ACTIONS(854), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(859), + [anon_sym_orelse] = ACTIONS(854), + [anon_sym_catch] = ACTIONS(854), + [anon_sym_or] = ACTIONS(854), + [anon_sym_and] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(854), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(854), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_DOT] = ACTIONS(854), + [anon_sym_CARET] = ACTIONS(859), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(859), + }, + [STATE(824)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1490), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(825)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(575), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(833), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(826)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(415), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(834), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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), + [STATE(827)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(573), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(835), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1959), }, + [STATE(828)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(576), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(836), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1863), + }, [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(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(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(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(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(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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(563), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(837), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1961), }, - [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(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(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(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), + [STATE(830)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(566), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(838), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1963), }, - [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(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(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(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), + [STATE(831)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(565), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(839), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1965), }, - [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(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(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), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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), + [STATE(832)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(551), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(849), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1967), }, - [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(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), + [STATE(833)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(567), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), + }, + [STATE(834)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(446), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(835)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(568), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(836)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(569), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(837)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(570), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(838)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(571), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), }, [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(572), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1969), + [sym__newline] = ACTIONS(237), }, [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(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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1404), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(446), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(842)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1397), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(843)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1398), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(844)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1399), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(845)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1401), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(846)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1403), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(847)] = { + [sym_type] = STATE(2099), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(844), + [anon_sym_COLON_COLON] = ACTIONS(1969), + [anon_sym_func] = ACTIONS(283), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(856), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(867), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_PLUS_EQ] = ACTIONS(859), + [anon_sym_DASH_EQ] = ACTIONS(859), + [anon_sym_STAR_EQ] = ACTIONS(859), + [anon_sym_SLASH_EQ] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(873), + [anon_sym_else] = ACTIONS(854), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(859), + [anon_sym_orelse] = ACTIONS(854), + [anon_sym_catch] = ACTIONS(854), + [anon_sym_or] = ACTIONS(854), + [anon_sym_and] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(854), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(854), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_CARET] = ACTIONS(859), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(859), + }, + [STATE(848)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(435), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(849)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(552), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(850)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1465), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(851)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(419), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(822), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_try] = ACTIONS(99), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1971), }, - [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(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(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), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(852)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(4), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(854), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1973), }, - [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(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), + [STATE(853)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(435), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(854)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(5), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(855)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1384), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(863), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1975), }, - [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(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), + [STATE(856)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(415), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(864), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1977), }, - [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), - [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(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(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(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(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), + [STATE(857)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1386), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(865), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1979), }, - [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), + [STATE(858)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1394), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(866), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(1947), }, - [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(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), + [STATE(859)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1388), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(867), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1981), }, - [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(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(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(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(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(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), + [STATE(860)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1383), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(868), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1983), }, - [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(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(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(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(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), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(861)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1385), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(869), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1985), }, - [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(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(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(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(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), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(556), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(871), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1987), }, + [STATE(863)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1389), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(864)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(446), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, [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(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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1393), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(866)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1390), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(867)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1391), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(868)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1392), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(869)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1387), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(870)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1489), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(871)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(560), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(872)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(419), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(848), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1989), }, - [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(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), + [STATE(873)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1495), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(967), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1991), }, - [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(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), + [STATE(874)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(435), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(875)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1413), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(882), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1993), }, - [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(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), + [STATE(876)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(415), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(883), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1995), }, - [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(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(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), + [STATE(877)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1410), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(884), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1997), }, - [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(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), + [STATE(878)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1411), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(885), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(1877), }, - [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), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(879)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1412), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(886), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(1999), }, - [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(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), + [STATE(880)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1414), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(887), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2001), }, - [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(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(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), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(881)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1408), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(888), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2003), }, - [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(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), + [STATE(882)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1418), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1911), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(883)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(446), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(884)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1417), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(885)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1415), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(886)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1416), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(887)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1420), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(888)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1419), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(889)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(419), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(874), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2005), }, - [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(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), + [STATE(890)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(13), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(892), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2007), }, - [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(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), + [STATE(891)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(435), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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(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), + [STATE(892)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(14), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(893)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1455), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(901), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2009), }, - [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(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(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(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), + [STATE(894)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(415), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(902), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2011), }, - [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(525), - [sym_catch_expression] = STATE(525), - [sym_unary_expression] = STATE(525), - [sym_field_expression] = STATE(525), - [sym_intrinsic_call_expression] = STATE(525), - [sym_call_expression] = STATE(525), - [sym_index_expression] = STATE(525), - [sym_slice_expression] = STATE(525), - [sym_postfix_expression] = STATE(525), - [sym_struct_literal] = STATE(525), - [sym_enum_literal] = STATE(525), - [sym_array_literal] = STATE(525), - [sym_parenthesized_expression] = STATE(525), - [sym_comptime_block] = STATE(525), - [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), - [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), + [STATE(895)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1457), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(903), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2013), }, - [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(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), + [STATE(896)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1459), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(904), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(1903), }, - [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), + [STATE(897)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1461), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(905), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2015), }, - [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(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), + [STATE(898)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1463), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(906), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2017), }, - [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(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), + [STATE(899)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1464), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(907), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2019), }, - [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(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), + [STATE(900)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(578), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(908), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2021), }, - [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(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), + [STATE(901)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1470), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(902)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(446), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(903)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1449), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(904)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1473), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(905)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1474), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(906)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1475), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(907)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1450), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(908)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(579), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(909)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1491), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(870), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2023), }, - [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(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(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), + [STATE(910)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(6), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(912), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(911)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(435), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(912)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(7), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(913)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(739), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(920), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2027), }, - [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(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), + [STATE(914)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(415), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(921), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2029), }, - [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), + [STATE(915)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(740), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(922), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(916)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(741), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(923), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(1915), }, - [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), - [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(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(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), + [STATE(917)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(743), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(925), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2033), }, - [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(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(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), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(918)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(744), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(926), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2035), }, - [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(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), + [STATE(919)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(555), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(927), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2037), }, - [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(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), + [STATE(920)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(745), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(921)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(446), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [STATE(911)] = { - [sym_struct_type] = STATE(525), - [sym_array_type] = STATE(525), - [sym_builtin_type] = STATE(525), + [STATE(922)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(746), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(923)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(747), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(924)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(748), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(925)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(775), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(926)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(750), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(927)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), [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), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(928)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(8), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(929), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2039), }, - [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(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), + [STATE(929)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(9), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(930)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(559), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(931), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2041), }, - [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(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), + [STATE(931)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(561), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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(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), + [STATE(932)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(15), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(934), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2043), }, - [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(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), + [STATE(933)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(10), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(1917), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(934)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(16), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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), + [STATE(935)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(17), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(936)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(419), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(853), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(937)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(11), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(938), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2047), }, - [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(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), + [STATE(938)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(12), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(939)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1471), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(997), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2049), }, - [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(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), + [STATE(940)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1456), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(941), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2051), }, - [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(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), + [STATE(941)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1478), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(942)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1478), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(944), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2053), }, - [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(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), + [STATE(943)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(3), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(944)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1467), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(945)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1438), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(946)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1487), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(947)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(435), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(948)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(535), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(955), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2055), }, - [STATE(923)] = { - [sym_struct_type] = STATE(525), - [sym_array_type] = STATE(525), - [sym_builtin_type] = STATE(525), + [STATE(949)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), [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(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(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), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(956), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2057), }, - [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(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(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(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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(1875), - }, - [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(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), + [STATE(950)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(536), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(957), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(951)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(533), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(958), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1951), + }, + [STATE(952)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(537), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(959), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2061), }, - [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(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), + [STATE(953)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(538), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(960), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2063), }, - [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(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(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), + [STATE(954)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(539), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(961), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2065), }, - [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(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), + [STATE(955)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(540), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(956)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(446), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(957)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(541), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(958)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(542), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(959)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(547), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(960)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(543), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(961)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(544), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(962)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1482), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(824), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2067), }, - [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(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), + [STATE(963)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1492), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1849), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(964)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(2), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(943), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2069), }, - [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(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), + [STATE(965)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1405), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(840), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2071), }, - [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(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(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), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(966)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1432), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(945), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_DOLLAR] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(143), + [anon_sym_try] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2073), }, - [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(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), + [STATE(967)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1485), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, - [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(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), + [STATE(968)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(415), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(841), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2075), }, - [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(525), - [sym_catch_expression] = STATE(525), - [sym_unary_expression] = STATE(525), - [sym_field_expression] = STATE(525), - [sym_intrinsic_call_expression] = STATE(525), - [sym_call_expression] = STATE(525), - [sym_index_expression] = STATE(525), - [sym_slice_expression] = STATE(525), - [sym_postfix_expression] = STATE(525), - [sym_struct_literal] = STATE(525), - [sym_enum_literal] = STATE(525), - [sym_array_literal] = STATE(525), - [sym_parenthesized_expression] = STATE(525), - [sym_comptime_block] = STATE(525), - [sym_function_literal] = STATE(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(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(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), + [STATE(969)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1402), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(842), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2077), }, - [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(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), + [STATE(970)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1400), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(843), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(1927), }, - [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), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(971)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1406), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(844), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2079), }, - [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(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(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), + [STATE(972)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(419), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(947), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2081), }, - [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(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(966)] = { - [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_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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(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(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), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(973)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1407), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(845), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2083), }, - [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(223), - [anon_sym_void] = ACTIONS(37), - [anon_sym_anyopaque] = ACTIONS(37), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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), + [STATE(974)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1395), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(846), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(79), + [anon_sym_DOLLAR] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(225), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(79), + [anon_sym_try] = ACTIONS(19), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2085), }, - [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(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(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), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), - [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2087), - }, - [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(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(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), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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_type] = STATE(2121), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(1685), + [anon_sym_COLON_COLON] = ACTIONS(2087), + [anon_sym_func] = ACTIONS(283), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_RPAREN] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(867), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_PLUS_EQ] = ACTIONS(859), + [anon_sym_DASH_EQ] = ACTIONS(859), + [anon_sym_STAR_EQ] = ACTIONS(859), + [anon_sym_SLASH_EQ] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(873), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(859), + [anon_sym_orelse] = ACTIONS(854), + [anon_sym_catch] = ACTIONS(854), + [anon_sym_or] = ACTIONS(854), + [anon_sym_and] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(854), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(854), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_CARET] = ACTIONS(859), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(859), }, [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(18), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(933), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2089), }, [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(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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(435), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1849), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(237), }, [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), - [anon_sym_bool] = ACTIONS(37), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1498), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(985), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1849), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(2091), }, [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(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(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(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(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), - [sym_none] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(415), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(986), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1849), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2093), }, - [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(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(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), - [sym_undefined] = ACTIONS(83), - [sym_sink] = ACTIONS(83), - [sym_integer] = ACTIONS(83), - [sym_float] = ACTIONS(87), - [anon_sym_DQUOTE] = ACTIONS(89), - [sym_multiline_string] = ACTIONS(87), - [sym_character] = ACTIONS(87), + [STATE(980)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1499), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(987), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1849), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2095), }, - [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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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(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), + [STATE(981)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1500), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), [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_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1849), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1945), + }, + [STATE(982)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1497), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(989), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1849), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(983)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1502), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(990), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1849), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(227), + [sym__newline] = ACTIONS(2099), }, - [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), + [STATE(984)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1501), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(991), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1849), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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), + [STATE(985)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1504), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1849), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(857), + [sym__newline] = ACTIONS(237), + }, + [STATE(986)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(446), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1849), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(987)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1505), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1849), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(988)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1506), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1849), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(989)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1496), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1849), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(990)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1507), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1849), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(991)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1503), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1849), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), }, [STATE(992)] = { - [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_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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_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_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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(419), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1849), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(857), + [sym__newline] = ACTIONS(2103), }, [STATE(993)] = { - [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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_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_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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(419), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(911), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(857), + [sym__newline] = ACTIONS(2105), }, [STATE(994)] = { - [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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(19), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(935), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2107), }, [STATE(995)] = { - [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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_c_ulonglong] = 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), - }, - [STATE(996)] = { - [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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_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_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_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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_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(857), - }, - [STATE(998)] = { - [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(857), - }, - [STATE(999)] = { - [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(1576), - }, - [STATE(1000)] = { - [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), - [anon_sym_int] = ACTIONS(37), - [anon_sym_float] = ACTIONS(37), - [anon_sym_range] = ACTIONS(37), - [anon_sym_i8] = ACTIONS(37), - [anon_sym_i16] = ACTIONS(37), - [anon_sym_i32] = ACTIONS(37), - [anon_sym_i64] = ACTIONS(37), - [anon_sym_u8] = ACTIONS(37), - [anon_sym_u16] = ACTIONS(37), - [anon_sym_u32] = ACTIONS(37), - [anon_sym_u64] = ACTIONS(37), - [anon_sym_isize] = ACTIONS(37), - [anon_sym_usize] = ACTIONS(37), - [anon_sym_f32] = ACTIONS(37), - [anon_sym_f64] = ACTIONS(37), - [anon_sym_c_char] = ACTIONS(37), - [anon_sym_c_schar] = ACTIONS(37), - [anon_sym_c_uchar] = ACTIONS(37), - [anon_sym_c_short] = ACTIONS(37), - [anon_sym_c_ushort] = ACTIONS(37), - [anon_sym_c_int] = ACTIONS(37), - [anon_sym_c_uint] = ACTIONS(37), - [anon_sym_c_long] = ACTIONS(37), - [anon_sym_c_ulong] = ACTIONS(37), - [anon_sym_c_longlong] = ACTIONS(37), - [anon_sym_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(857), - }, - [STATE(1001)] = { - [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1488), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(946), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2109), }, - [STATE(1002)] = { - [ts_builtin_sym_end] = ACTIONS(2115), - [sym_identifier] = ACTIONS(2117), - [anon_sym_import] = ACTIONS(2117), - [anon_sym_func] = ACTIONS(2117), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_struct] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2115), - [anon_sym_RPAREN] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(2115), - [anon_sym_RBRACE] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_DOLLAR] = ACTIONS(2115), - [anon_sym_LBRACK] = ACTIONS(2115), - [anon_sym_void] = ACTIONS(2117), - [anon_sym_anyopaque] = ACTIONS(2117), - [anon_sym_bool] = ACTIONS(2117), - [anon_sym_int] = ACTIONS(2117), - [anon_sym_float] = ACTIONS(2117), - [anon_sym_range] = ACTIONS(2117), - [anon_sym_i8] = ACTIONS(2117), - [anon_sym_i16] = ACTIONS(2117), - [anon_sym_i32] = ACTIONS(2117), - [anon_sym_i64] = ACTIONS(2117), - [anon_sym_u8] = ACTIONS(2117), - [anon_sym_u16] = ACTIONS(2117), - [anon_sym_u32] = ACTIONS(2117), - [anon_sym_u64] = ACTIONS(2117), - [anon_sym_isize] = ACTIONS(2117), - [anon_sym_usize] = ACTIONS(2117), - [anon_sym_f32] = ACTIONS(2117), - [anon_sym_f64] = ACTIONS(2117), - [anon_sym_c_char] = ACTIONS(2117), - [anon_sym_c_schar] = ACTIONS(2117), - [anon_sym_c_uchar] = ACTIONS(2117), - [anon_sym_c_short] = ACTIONS(2117), - [anon_sym_c_ushort] = ACTIONS(2117), - [anon_sym_c_int] = ACTIONS(2117), - [anon_sym_c_uint] = ACTIONS(2117), - [anon_sym_c_long] = ACTIONS(2117), - [anon_sym_c_ulong] = ACTIONS(2117), - [anon_sym_c_longlong] = ACTIONS(2117), - [anon_sym_c_ulonglong] = ACTIONS(2117), - [anon_sym_c_float] = ACTIONS(2117), - [anon_sym_c_double] = ACTIONS(2117), - [anon_sym_c_longdouble] = ACTIONS(2117), - [anon_sym_return] = ACTIONS(2117), - [anon_sym_yield] = ACTIONS(2117), - [anon_sym_COLON] = ACTIONS(2119), - [anon_sym_break] = ACTIONS(2117), - [anon_sym_continue] = ACTIONS(2117), - [anon_sym_defer] = ACTIONS(2117), - [anon_sym_errdefer] = ACTIONS(2117), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_else] = ACTIONS(2117), - [anon_sym_while] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_match] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_try] = ACTIONS(2117), - [anon_sym_DOT] = ACTIONS(2115), - [anon_sym_true] = ACTIONS(2117), - [anon_sym_false] = ACTIONS(2117), - [sym_none] = ACTIONS(2117), - [sym_undefined] = ACTIONS(2117), - [sym_sink] = ACTIONS(2117), - [sym_integer] = ACTIONS(2117), - [sym_float] = ACTIONS(2115), - [anon_sym_DQUOTE] = ACTIONS(2115), - [sym_multiline_string] = ACTIONS(2115), - [sym_character] = ACTIONS(2115), + [STATE(996)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1483), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(963), + [sym_identifier] = ACTIONS(1771), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1845), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1849), + [anon_sym_DOT] = ACTIONS(227), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2111), + }, + [STATE(997)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1460), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(690), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(237), + }, + [STATE(998)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1460), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(850), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(197), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_DOLLAR] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(235), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(197), + [anon_sym_try] = ACTIONS(179), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2113), + }, + [STATE(999)] = { + [sym_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(742), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [aux_sym_import_declaration_repeat1] = STATE(924), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(169), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_DOLLAR] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(241), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(169), + [anon_sym_try] = ACTIONS(153), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2115), }, - [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), + [STATE(1000)] = { + [sym_type] = STATE(2093), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(859), + [sym_identifier] = ACTIONS(844), + [anon_sym_COLON_COLON] = ACTIONS(1855), + [anon_sym_import] = ACTIONS(854), + [anon_sym_hide] = ACTIONS(854), + [anon_sym_func] = ACTIONS(283), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(867), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_PLUS_EQ] = ACTIONS(859), + [anon_sym_DASH_EQ] = ACTIONS(859), + [anon_sym_STAR_EQ] = ACTIONS(859), + [anon_sym_SLASH_EQ] = ACTIONS(859), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(859), + [anon_sym_orelse] = ACTIONS(854), + [anon_sym_catch] = ACTIONS(854), + [anon_sym_or] = ACTIONS(854), + [anon_sym_and] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(854), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(854), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_DOT] = ACTIONS(854), + [anon_sym_CARET] = ACTIONS(859), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(345), + [sym__newline] = ACTIONS(859), + }, + [STATE(1001)] = { + [sym_type] = STATE(2096), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(844), + [anon_sym_COLON_COLON] = ACTIONS(2117), + [anon_sym_func] = ACTIONS(283), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(856), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(867), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_PLUS_EQ] = ACTIONS(859), + [anon_sym_DASH_EQ] = ACTIONS(859), + [anon_sym_STAR_EQ] = ACTIONS(859), + [anon_sym_SLASH_EQ] = ACTIONS(859), + [anon_sym_COLON] = ACTIONS(873), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(859), + [anon_sym_orelse] = ACTIONS(854), + [anon_sym_catch] = ACTIONS(854), + [anon_sym_or] = ACTIONS(854), + [anon_sym_and] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(854), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(854), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_CARET] = ACTIONS(859), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(859), + }, + [STATE(1002)] = { + [sym_type] = STATE(2107), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(1685), + [anon_sym_COLON_COLON] = ACTIONS(1911), + [anon_sym_func] = ACTIONS(283), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(859), + [anon_sym_RPAREN] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(867), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_PLUS_EQ] = ACTIONS(859), + [anon_sym_DASH_EQ] = ACTIONS(859), + [anon_sym_STAR_EQ] = ACTIONS(859), + [anon_sym_SLASH_EQ] = ACTIONS(859), + [anon_sym_else] = ACTIONS(854), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(859), + [anon_sym_orelse] = ACTIONS(854), + [anon_sym_catch] = ACTIONS(854), + [anon_sym_or] = ACTIONS(854), + [anon_sym_and] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(854), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(854), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_DOT] = ACTIONS(854), + [anon_sym_CARET] = ACTIONS(859), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(859), + }, + [STATE(1003)] = { + [sym_type] = STATE(2099), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(844), + [anon_sym_COLON_COLON] = ACTIONS(1969), + [anon_sym_func] = ACTIONS(283), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(867), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_PLUS_EQ] = ACTIONS(859), + [anon_sym_DASH_EQ] = ACTIONS(859), + [anon_sym_STAR_EQ] = ACTIONS(859), + [anon_sym_SLASH_EQ] = ACTIONS(859), + [anon_sym_else] = ACTIONS(854), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(859), + [anon_sym_orelse] = ACTIONS(854), + [anon_sym_catch] = ACTIONS(854), + [anon_sym_or] = ACTIONS(854), + [anon_sym_and] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(854), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(854), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_DOT] = ACTIONS(854), + [anon_sym_CARET] = ACTIONS(859), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(859), }, [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1508), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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_struct_type] = STATE(476), + [sym_array_type] = STATE(476), + [sym_builtin_type] = STATE(476), + [sym_expression] = STATE(1509), + [sym_binary_expression] = STATE(476), + [sym_catch_expression] = STATE(476), + [sym_unary_expression] = STATE(476), + [sym_field_expression] = STATE(476), + [sym_intrinsic_call_expression] = STATE(476), + [sym_call_expression] = STATE(476), + [sym_index_expression] = STATE(476), + [sym_slice_expression] = STATE(476), + [sym_postfix_expression] = STATE(476), + [sym_struct_literal] = STATE(476), + [sym_enum_literal] = STATE(476), + [sym_array_literal] = STATE(476), + [sym_parenthesized_expression] = STATE(476), + [sym_comptime_block] = STATE(476), + [sym_function_literal] = STATE(476), + [sym_qualified_identifier] = STATE(1894), + [sym_boolean] = STATE(476), + [sym_string] = STATE(476), + [sym_identifier] = ACTIONS(1605), + [anon_sym_func] = ACTIONS(17), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1661), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1665), + [anon_sym_DOT] = ACTIONS(231), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [sym_none] = ACTIONS(85), + [sym_undefined] = ACTIONS(85), + [sym_sink] = ACTIONS(85), + [sym_integer] = ACTIONS(85), + [sym_float] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(91), + [sym_multiline_string] = ACTIONS(89), + [sym_character] = ACTIONS(89), [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_type] = STATE(2096), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(844), + [anon_sym_COLON_COLON] = ACTIONS(2117), + [anon_sym_func] = ACTIONS(283), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(867), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_PLUS_EQ] = ACTIONS(859), + [anon_sym_DASH_EQ] = ACTIONS(859), + [anon_sym_STAR_EQ] = ACTIONS(859), + [anon_sym_SLASH_EQ] = ACTIONS(859), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(859), + [anon_sym_orelse] = ACTIONS(854), + [anon_sym_catch] = ACTIONS(854), + [anon_sym_or] = ACTIONS(854), + [anon_sym_and] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(854), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(854), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_DOT] = ACTIONS(854), + [anon_sym_CARET] = ACTIONS(859), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(610), + [sym__newline] = ACTIONS(859), }, [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_argument_list] = STATE(504), + [sym_identifier] = ACTIONS(1590), + [anon_sym_func] = ACTIONS(1590), + [anon_sym_BANG] = ACTIONS(1590), + [anon_sym_struct] = ACTIONS(1590), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(1592), + [anon_sym_DASH] = ACTIONS(2119), + [anon_sym_DOLLAR] = ACTIONS(1592), + [anon_sym_QMARK] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(2121), + [anon_sym_LBRACK] = ACTIONS(983), + [anon_sym_void] = ACTIONS(1590), + [anon_sym_anyopaque] = ACTIONS(1590), + [anon_sym_bool] = ACTIONS(1590), + [anon_sym_int] = ACTIONS(1590), + [anon_sym_float] = ACTIONS(1590), + [anon_sym_range] = ACTIONS(1590), + [anon_sym_i8] = ACTIONS(1590), + [anon_sym_i16] = ACTIONS(1590), + [anon_sym_i32] = ACTIONS(1590), + [anon_sym_i64] = ACTIONS(1590), + [anon_sym_u8] = ACTIONS(1590), + [anon_sym_u16] = ACTIONS(1590), + [anon_sym_u32] = ACTIONS(1590), + [anon_sym_u64] = ACTIONS(1590), + [anon_sym_isize] = ACTIONS(1590), + [anon_sym_usize] = ACTIONS(1590), + [anon_sym_f32] = ACTIONS(1590), + [anon_sym_f64] = ACTIONS(1590), + [anon_sym_c_char] = ACTIONS(1590), + [anon_sym_c_schar] = ACTIONS(1590), + [anon_sym_c_uchar] = ACTIONS(1590), + [anon_sym_c_short] = ACTIONS(1590), + [anon_sym_c_ushort] = ACTIONS(1590), + [anon_sym_c_int] = ACTIONS(1590), + [anon_sym_c_uint] = ACTIONS(1590), + [anon_sym_c_long] = ACTIONS(1590), + [anon_sym_c_ulong] = ACTIONS(1590), + [anon_sym_c_longlong] = ACTIONS(1590), + [anon_sym_c_ulonglong] = ACTIONS(1590), + [anon_sym_c_float] = ACTIONS(1590), + [anon_sym_c_double] = ACTIONS(1590), + [anon_sym_c_longdouble] = ACTIONS(1590), + [anon_sym_else] = ACTIONS(1590), + [anon_sym_DOT_DOT] = ACTIONS(1791), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1793), + [anon_sym_orelse] = ACTIONS(1795), + [anon_sym_catch] = ACTIONS(1797), + [anon_sym_or] = ACTIONS(1799), + [anon_sym_and] = ACTIONS(1801), + [anon_sym_EQ_EQ] = ACTIONS(1803), + [anon_sym_BANG_EQ] = ACTIONS(1803), + [anon_sym_LT] = ACTIONS(1805), + [anon_sym_LT_EQ] = ACTIONS(1803), + [anon_sym_GT] = ACTIONS(1805), + [anon_sym_GT_EQ] = ACTIONS(1803), + [anon_sym_PLUS] = ACTIONS(2119), + [anon_sym_SLASH] = ACTIONS(2121), + [anon_sym_AMP] = ACTIONS(1592), + [anon_sym_try] = ACTIONS(1590), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(33), + [anon_sym_true] = ACTIONS(1590), + [anon_sym_false] = ACTIONS(1590), + [sym_none] = ACTIONS(1590), + [sym_undefined] = ACTIONS(1590), + [sym_sink] = ACTIONS(1590), + [sym_integer] = ACTIONS(1590), + [sym_float] = ACTIONS(1592), + [anon_sym_DQUOTE] = ACTIONS(1592), + [sym_multiline_string] = ACTIONS(1592), + [sym_character] = ACTIONS(1592), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(576), + [sym__newline] = ACTIONS(1592), }, [STATE(1008)] = { - [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_type] = STATE(2121), + [sym__type_atom] = STATE(399), + [sym_named_type] = STATE(399), + [sym_optional_type] = STATE(399), + [sym_pointer_type] = STATE(399), + [sym_array_type] = STATE(399), + [sym_function_type] = STATE(399), + [sym_builtin_type] = STATE(399), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(1685), + [anon_sym_COLON_COLON] = ACTIONS(2087), + [anon_sym_func] = ACTIONS(283), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_EQ] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(859), + [anon_sym_RPAREN] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(867), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_PLUS_EQ] = ACTIONS(859), + [anon_sym_DASH_EQ] = ACTIONS(859), + [anon_sym_STAR_EQ] = ACTIONS(859), + [anon_sym_SLASH_EQ] = ACTIONS(859), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT_EQ] = ACTIONS(859), + [anon_sym_orelse] = ACTIONS(854), + [anon_sym_catch] = ACTIONS(854), + [anon_sym_or] = ACTIONS(854), + [anon_sym_and] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(854), + [anon_sym_LT_EQ] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(854), + [anon_sym_GT_EQ] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_DOT] = ACTIONS(854), + [anon_sym_CARET] = ACTIONS(859), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(309), + [sym__newline] = ACTIONS(859), }, [STATE(1009)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2123), + [sym_identifier] = ACTIONS(2125), + [anon_sym_import] = ACTIONS(2125), + [anon_sym_hide] = ACTIONS(2125), + [anon_sym_func] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2123), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_RPAREN] = ACTIONS(2123), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_RBRACE] = ACTIONS(2123), + [anon_sym_DASH] = ACTIONS(2123), + [anon_sym_DOLLAR] = ACTIONS(2123), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_void] = ACTIONS(2125), + [anon_sym_anyopaque] = ACTIONS(2125), + [anon_sym_bool] = ACTIONS(2125), + [anon_sym_int] = ACTIONS(2125), + [anon_sym_float] = ACTIONS(2125), + [anon_sym_range] = ACTIONS(2125), + [anon_sym_i8] = ACTIONS(2125), + [anon_sym_i16] = ACTIONS(2125), + [anon_sym_i32] = ACTIONS(2125), + [anon_sym_i64] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2125), + [anon_sym_u16] = ACTIONS(2125), + [anon_sym_u32] = ACTIONS(2125), + [anon_sym_u64] = ACTIONS(2125), + [anon_sym_isize] = ACTIONS(2125), + [anon_sym_usize] = ACTIONS(2125), + [anon_sym_f32] = ACTIONS(2125), + [anon_sym_f64] = ACTIONS(2125), + [anon_sym_c_char] = ACTIONS(2125), + [anon_sym_c_schar] = ACTIONS(2125), + [anon_sym_c_uchar] = ACTIONS(2125), + [anon_sym_c_short] = ACTIONS(2125), + [anon_sym_c_ushort] = ACTIONS(2125), + [anon_sym_c_int] = ACTIONS(2125), + [anon_sym_c_uint] = ACTIONS(2125), + [anon_sym_c_long] = ACTIONS(2125), + [anon_sym_c_ulong] = ACTIONS(2125), + [anon_sym_c_longlong] = ACTIONS(2125), + [anon_sym_c_ulonglong] = ACTIONS(2125), + [anon_sym_c_float] = ACTIONS(2125), + [anon_sym_c_double] = ACTIONS(2125), + [anon_sym_c_longdouble] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_yield] = ACTIONS(2125), + [anon_sym_COLON] = ACTIONS(2127), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_defer] = ACTIONS(2125), + [anon_sym_errdefer] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_else] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_match] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2123), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_DOT] = ACTIONS(2123), + [anon_sym_true] = ACTIONS(2125), + [anon_sym_false] = ACTIONS(2125), + [sym_none] = ACTIONS(2125), + [sym_undefined] = ACTIONS(2125), + [sym_sink] = ACTIONS(2125), + [sym_integer] = ACTIONS(2125), + [sym_float] = ACTIONS(2123), + [anon_sym_DQUOTE] = ACTIONS(2123), + [sym_multiline_string] = ACTIONS(2123), + [sym_character] = ACTIONS(2123), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2133), + [sym__newline] = ACTIONS(2123), }, [STATE(1010)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2129), + [sym_identifier] = ACTIONS(2131), + [anon_sym_import] = ACTIONS(2131), + [anon_sym_hide] = ACTIONS(2131), + [anon_sym_func] = ACTIONS(2131), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2129), + [anon_sym_RPAREN] = ACTIONS(2129), + [anon_sym_LBRACE] = ACTIONS(2129), + [anon_sym_RBRACE] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_DOLLAR] = ACTIONS(2129), + [anon_sym_LBRACK] = ACTIONS(2129), + [anon_sym_void] = ACTIONS(2131), + [anon_sym_anyopaque] = ACTIONS(2131), + [anon_sym_bool] = ACTIONS(2131), + [anon_sym_int] = ACTIONS(2131), + [anon_sym_float] = ACTIONS(2131), + [anon_sym_range] = ACTIONS(2131), + [anon_sym_i8] = ACTIONS(2131), + [anon_sym_i16] = ACTIONS(2131), + [anon_sym_i32] = ACTIONS(2131), + [anon_sym_i64] = ACTIONS(2131), + [anon_sym_u8] = ACTIONS(2131), + [anon_sym_u16] = ACTIONS(2131), + [anon_sym_u32] = ACTIONS(2131), + [anon_sym_u64] = ACTIONS(2131), + [anon_sym_isize] = ACTIONS(2131), + [anon_sym_usize] = ACTIONS(2131), + [anon_sym_f32] = ACTIONS(2131), + [anon_sym_f64] = ACTIONS(2131), + [anon_sym_c_char] = ACTIONS(2131), + [anon_sym_c_schar] = ACTIONS(2131), + [anon_sym_c_uchar] = ACTIONS(2131), + [anon_sym_c_short] = ACTIONS(2131), + [anon_sym_c_ushort] = ACTIONS(2131), + [anon_sym_c_int] = ACTIONS(2131), + [anon_sym_c_uint] = ACTIONS(2131), + [anon_sym_c_long] = ACTIONS(2131), + [anon_sym_c_ulong] = ACTIONS(2131), + [anon_sym_c_longlong] = ACTIONS(2131), + [anon_sym_c_ulonglong] = ACTIONS(2131), + [anon_sym_c_float] = ACTIONS(2131), + [anon_sym_c_double] = ACTIONS(2131), + [anon_sym_c_longdouble] = ACTIONS(2131), + [anon_sym_return] = ACTIONS(2131), + [anon_sym_yield] = ACTIONS(2131), + [anon_sym_COLON] = ACTIONS(2133), + [anon_sym_break] = ACTIONS(2131), + [anon_sym_continue] = ACTIONS(2131), + [anon_sym_defer] = ACTIONS(2131), + [anon_sym_errdefer] = ACTIONS(2131), + [anon_sym_if] = ACTIONS(2131), + [anon_sym_else] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2131), + [anon_sym_for] = ACTIONS(2131), + [anon_sym_match] = ACTIONS(2131), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_try] = ACTIONS(2131), + [anon_sym_DOT] = ACTIONS(2129), + [anon_sym_true] = ACTIONS(2131), + [anon_sym_false] = ACTIONS(2131), + [sym_none] = ACTIONS(2131), + [sym_undefined] = ACTIONS(2131), + [sym_sink] = ACTIONS(2131), + [sym_integer] = ACTIONS(2131), + [sym_float] = ACTIONS(2129), + [anon_sym_DQUOTE] = ACTIONS(2129), + [sym_multiline_string] = ACTIONS(2129), + [sym_character] = ACTIONS(2129), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2137), + [sym__newline] = ACTIONS(2129), }, [STATE(1011)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2135), + [sym_identifier] = ACTIONS(2137), + [anon_sym_import] = ACTIONS(2137), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2141), + [sym__newline] = ACTIONS(2135), }, [STATE(1012)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2139), + [sym_identifier] = ACTIONS(2141), + [anon_sym_import] = ACTIONS(2141), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2145), + [sym__newline] = ACTIONS(2139), }, [STATE(1013)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2143), + [sym_identifier] = ACTIONS(2145), + [anon_sym_import] = ACTIONS(2145), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2149), + [sym__newline] = ACTIONS(2143), }, [STATE(1014)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2147), + [sym_identifier] = ACTIONS(2149), + [anon_sym_import] = ACTIONS(2149), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2153), + [sym__newline] = ACTIONS(2147), }, [STATE(1015)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2151), + [sym_identifier] = ACTIONS(2153), + [anon_sym_import] = ACTIONS(2153), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2157), + [sym__newline] = ACTIONS(2151), }, [STATE(1016)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2155), + [sym_identifier] = ACTIONS(2157), + [anon_sym_import] = ACTIONS(2157), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2161), + [sym__newline] = ACTIONS(2155), }, [STATE(1017)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2159), + [sym_identifier] = ACTIONS(2161), + [anon_sym_import] = ACTIONS(2161), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2165), + [sym__newline] = ACTIONS(2159), }, [STATE(1018)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2163), + [sym_identifier] = ACTIONS(2165), + [anon_sym_import] = ACTIONS(2165), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2169), + [sym__newline] = ACTIONS(2163), }, [STATE(1019)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2167), + [sym_identifier] = ACTIONS(2169), + [anon_sym_import] = ACTIONS(2169), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2173), + [sym__newline] = ACTIONS(2167), }, [STATE(1020)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2173), + [anon_sym_import] = ACTIONS(2173), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2177), + [sym__newline] = ACTIONS(2171), }, [STATE(1021)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2175), + [sym_identifier] = ACTIONS(2177), + [anon_sym_import] = ACTIONS(2177), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2181), + [sym__newline] = ACTIONS(2175), }, [STATE(1022)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2179), + [sym_identifier] = ACTIONS(2181), + [anon_sym_import] = ACTIONS(2181), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2185), + [sym__newline] = ACTIONS(2179), }, [STATE(1023)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2183), + [sym_identifier] = ACTIONS(2185), + [anon_sym_import] = ACTIONS(2185), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2189), + [sym__newline] = ACTIONS(2183), }, [STATE(1024)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2187), + [sym_identifier] = ACTIONS(2189), + [anon_sym_import] = ACTIONS(2189), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2193), + [sym__newline] = ACTIONS(2187), }, [STATE(1025)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2191), + [sym_identifier] = ACTIONS(2193), + [anon_sym_import] = ACTIONS(2193), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2197), + [sym__newline] = ACTIONS(2191), }, [STATE(1026)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2195), + [sym_identifier] = ACTIONS(2197), + [anon_sym_import] = ACTIONS(2197), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2201), + [sym__newline] = ACTIONS(2195), }, [STATE(1027)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2199), + [sym_identifier] = ACTIONS(2201), + [anon_sym_import] = ACTIONS(2201), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2205), + [sym__newline] = ACTIONS(2199), }, [STATE(1028)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2203), + [sym_identifier] = ACTIONS(2205), + [anon_sym_import] = ACTIONS(2205), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2209), + [sym__newline] = ACTIONS(2203), }, [STATE(1029)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2207), + [sym_identifier] = ACTIONS(2209), + [anon_sym_import] = ACTIONS(2209), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2213), + [sym__newline] = ACTIONS(2207), }, [STATE(1030)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2211), + [sym_identifier] = ACTIONS(2213), + [anon_sym_import] = ACTIONS(2213), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2217), + [sym__newline] = ACTIONS(2211), }, [STATE(1031)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2215), + [sym_identifier] = ACTIONS(2217), + [anon_sym_import] = ACTIONS(2217), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2221), + [sym__newline] = ACTIONS(2215), }, [STATE(1032)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2219), + [sym_identifier] = ACTIONS(2221), + [anon_sym_import] = ACTIONS(2221), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2225), + [sym__newline] = ACTIONS(2219), }, [STATE(1033)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2223), + [sym_identifier] = ACTIONS(2225), + [anon_sym_import] = ACTIONS(2225), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2229), + [sym__newline] = ACTIONS(2223), }, [STATE(1034)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2227), + [sym_identifier] = ACTIONS(2229), + [anon_sym_import] = ACTIONS(2229), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2233), + [sym__newline] = ACTIONS(2227), }, [STATE(1035)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2231), + [sym_identifier] = ACTIONS(2233), + [anon_sym_import] = ACTIONS(2233), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2237), + [sym__newline] = ACTIONS(2231), }, [STATE(1036)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2235), + [sym_identifier] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2241), + [sym__newline] = ACTIONS(2235), }, [STATE(1037)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2239), + [sym_identifier] = ACTIONS(2241), + [anon_sym_import] = ACTIONS(2241), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2245), + [sym__newline] = ACTIONS(2239), }, [STATE(1038)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2243), + [sym_identifier] = ACTIONS(2245), + [anon_sym_import] = ACTIONS(2245), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2249), + [sym__newline] = ACTIONS(2243), }, [STATE(1039)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2247), + [sym_identifier] = ACTIONS(2249), + [anon_sym_import] = ACTIONS(2249), + [anon_sym_hide] = ACTIONS(2249), + [anon_sym_func] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2247), + [anon_sym_struct] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2247), + [anon_sym_RPAREN] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_RBRACE] = ACTIONS(2247), + [anon_sym_DASH] = ACTIONS(2247), + [anon_sym_DOLLAR] = ACTIONS(2247), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_void] = ACTIONS(2249), + [anon_sym_anyopaque] = ACTIONS(2249), + [anon_sym_bool] = ACTIONS(2249), + [anon_sym_int] = ACTIONS(2249), + [anon_sym_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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2253), + [sym__newline] = ACTIONS(2247), }, [STATE(1040)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2251), + [sym_identifier] = ACTIONS(2253), + [anon_sym_import] = ACTIONS(2253), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2257), + [sym__newline] = ACTIONS(2251), }, [STATE(1041)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2255), + [sym_identifier] = ACTIONS(2257), + [anon_sym_import] = ACTIONS(2257), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2261), + [sym__newline] = ACTIONS(2255), }, [STATE(1042)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(2261), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2265), + [sym__newline] = ACTIONS(2259), }, [STATE(1043)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2263), + [sym_identifier] = ACTIONS(2265), + [anon_sym_import] = ACTIONS(2265), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2269), + [sym__newline] = ACTIONS(2263), }, [STATE(1044)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2267), + [sym_identifier] = ACTIONS(2269), + [anon_sym_import] = ACTIONS(2269), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2273), + [sym__newline] = ACTIONS(2267), }, [STATE(1045)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2271), + [sym_identifier] = ACTIONS(2273), + [anon_sym_import] = ACTIONS(2273), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2277), + [sym__newline] = ACTIONS(2271), }, [STATE(1046)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2275), + [sym_identifier] = ACTIONS(2277), + [anon_sym_import] = ACTIONS(2277), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2281), + [sym__newline] = ACTIONS(2275), }, [STATE(1047)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2279), + [sym_identifier] = ACTIONS(2281), + [anon_sym_import] = ACTIONS(2281), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2285), + [sym__newline] = ACTIONS(2279), }, [STATE(1048)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2289), + [sym__newline] = ACTIONS(2283), }, [STATE(1049)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2287), + [sym_identifier] = ACTIONS(2289), + [anon_sym_import] = ACTIONS(2289), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2293), + [sym__newline] = ACTIONS(2287), }, [STATE(1050)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2291), + [sym_identifier] = ACTIONS(2293), + [anon_sym_import] = ACTIONS(2293), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2297), + [sym__newline] = ACTIONS(2291), }, [STATE(1051)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2295), + [sym_identifier] = ACTIONS(2297), + [anon_sym_import] = ACTIONS(2297), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2301), + [sym__newline] = ACTIONS(2295), }, [STATE(1052)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2299), + [sym_identifier] = ACTIONS(2301), + [anon_sym_import] = ACTIONS(2301), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2305), + [sym__newline] = ACTIONS(2299), }, [STATE(1053)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2303), + [sym_identifier] = ACTIONS(2305), + [anon_sym_import] = ACTIONS(2305), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2309), + [sym__newline] = ACTIONS(2303), }, [STATE(1054)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2307), + [sym_identifier] = ACTIONS(2309), + [anon_sym_import] = ACTIONS(2309), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2313), + [sym__newline] = ACTIONS(2307), }, [STATE(1055)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2311), + [sym_identifier] = ACTIONS(2313), + [anon_sym_import] = ACTIONS(2313), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2317), + [sym__newline] = ACTIONS(2311), }, [STATE(1056)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2315), + [sym_identifier] = ACTIONS(2317), + [anon_sym_import] = ACTIONS(2317), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2321), + [sym__newline] = ACTIONS(2315), }, [STATE(1057)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2319), + [sym_identifier] = ACTIONS(2321), + [anon_sym_import] = ACTIONS(2321), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2325), + [sym__newline] = ACTIONS(2319), }, [STATE(1058)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2323), + [sym_identifier] = ACTIONS(2325), + [anon_sym_import] = ACTIONS(2325), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2329), + [sym__newline] = ACTIONS(2323), }, [STATE(1059)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2327), + [sym_identifier] = ACTIONS(2329), + [anon_sym_import] = ACTIONS(2329), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2333), + [sym__newline] = ACTIONS(2327), }, [STATE(1060)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2331), + [sym_identifier] = ACTIONS(2333), + [anon_sym_import] = ACTIONS(2333), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2337), + [sym__newline] = ACTIONS(2331), }, [STATE(1061)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2335), + [sym_identifier] = ACTIONS(2337), + [anon_sym_import] = ACTIONS(2337), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2341), + [sym__newline] = ACTIONS(2335), }, [STATE(1062)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2339), + [sym_identifier] = ACTIONS(2341), + [anon_sym_import] = ACTIONS(2341), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2345), + [sym__newline] = ACTIONS(2339), }, [STATE(1063)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2343), + [sym_identifier] = ACTIONS(2345), + [anon_sym_import] = ACTIONS(2345), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2349), + [sym__newline] = ACTIONS(2343), }, [STATE(1064)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2347), + [sym_identifier] = ACTIONS(2349), + [anon_sym_import] = ACTIONS(2349), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2353), + [sym__newline] = ACTIONS(2347), }, [STATE(1065)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2351), + [sym_identifier] = ACTIONS(2353), + [anon_sym_import] = ACTIONS(2353), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2357), + [sym__newline] = ACTIONS(2351), }, [STATE(1066)] = { - [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_type] = STATE(461), + [sym__type_atom] = STATE(394), + [sym_named_type] = STATE(394), + [sym_optional_type] = STATE(394), + [sym_pointer_type] = STATE(394), + [sym_array_type] = STATE(394), + [sym_function_type] = STATE(394), + [sym_builtin_type] = STATE(394), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(1685), + [anon_sym_func] = ACTIONS(283), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(291), + [anon_sym_COMMA] = ACTIONS(291), + [anon_sym_DASH] = ACTIONS(291), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_QMARK] = ACTIONS(301), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(2355), + [anon_sym_mut] = ACTIONS(307), + [anon_sym_LBRACK] = ACTIONS(309), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_COLON] = ACTIONS(291), + [anon_sym_DOT_DOT] = ACTIONS(296), + [anon_sym_DOT_DOT_EQ] = ACTIONS(291), + [anon_sym_orelse] = ACTIONS(296), + [anon_sym_catch] = ACTIONS(296), + [anon_sym_or] = ACTIONS(296), + [anon_sym_and] = ACTIONS(296), + [anon_sym_EQ_EQ] = ACTIONS(291), + [anon_sym_BANG_EQ] = ACTIONS(291), + [anon_sym_LT] = ACTIONS(296), + [anon_sym_LT_EQ] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(296), + [anon_sym_GT_EQ] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(291), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_DOT] = ACTIONS(296), + [anon_sym_CARET] = ACTIONS(291), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2361), + [sym__newline] = ACTIONS(291), }, [STATE(1067)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2360), + [anon_sym_import] = ACTIONS(2360), + [anon_sym_hide] = ACTIONS(2360), + [anon_sym_func] = ACTIONS(2360), + [anon_sym_BANG] = ACTIONS(2358), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(2358), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_DASH] = ACTIONS(2358), + [anon_sym_DOLLAR] = ACTIONS(2358), + [anon_sym_LBRACK] = ACTIONS(2358), + [anon_sym_void] = ACTIONS(2360), + [anon_sym_anyopaque] = ACTIONS(2360), + [anon_sym_bool] = ACTIONS(2360), + [anon_sym_int] = ACTIONS(2360), + [anon_sym_float] = ACTIONS(2360), + [anon_sym_range] = ACTIONS(2360), + [anon_sym_i8] = ACTIONS(2360), + [anon_sym_i16] = ACTIONS(2360), + [anon_sym_i32] = ACTIONS(2360), + [anon_sym_i64] = ACTIONS(2360), + [anon_sym_u8] = ACTIONS(2360), + [anon_sym_u16] = ACTIONS(2360), + [anon_sym_u32] = ACTIONS(2360), + [anon_sym_u64] = ACTIONS(2360), + [anon_sym_isize] = ACTIONS(2360), + [anon_sym_usize] = ACTIONS(2360), + [anon_sym_f32] = ACTIONS(2360), + [anon_sym_f64] = ACTIONS(2360), + [anon_sym_c_char] = ACTIONS(2360), + [anon_sym_c_schar] = ACTIONS(2360), + [anon_sym_c_uchar] = ACTIONS(2360), + [anon_sym_c_short] = ACTIONS(2360), + [anon_sym_c_ushort] = ACTIONS(2360), + [anon_sym_c_int] = ACTIONS(2360), + [anon_sym_c_uint] = ACTIONS(2360), + [anon_sym_c_long] = ACTIONS(2360), + [anon_sym_c_ulong] = ACTIONS(2360), + [anon_sym_c_longlong] = ACTIONS(2360), + [anon_sym_c_ulonglong] = ACTIONS(2360), + [anon_sym_c_float] = ACTIONS(2360), + [anon_sym_c_double] = ACTIONS(2360), + [anon_sym_c_longdouble] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_yield] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_defer] = ACTIONS(2360), + [anon_sym_errdefer] = ACTIONS(2360), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_else] = ACTIONS(2360), + [anon_sym_while] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2358), + [anon_sym_try] = ACTIONS(2360), + [anon_sym_DOT] = ACTIONS(2358), + [anon_sym_true] = ACTIONS(2360), + [anon_sym_false] = ACTIONS(2360), + [sym_none] = ACTIONS(2360), + [sym_undefined] = ACTIONS(2360), + [sym_sink] = ACTIONS(2360), + [sym_integer] = ACTIONS(2360), + [sym_float] = ACTIONS(2358), + [anon_sym_DQUOTE] = ACTIONS(2358), + [sym_multiline_string] = ACTIONS(2358), + [sym_character] = ACTIONS(2358), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2365), + [sym__newline] = ACTIONS(2358), }, [STATE(1068)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2362), + [sym_identifier] = ACTIONS(2364), + [anon_sym_import] = ACTIONS(2364), + [anon_sym_hide] = ACTIONS(2364), + [anon_sym_func] = ACTIONS(2364), + [anon_sym_BANG] = ACTIONS(2362), + [anon_sym_struct] = ACTIONS(2364), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_RPAREN] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2362), + [anon_sym_LBRACK] = ACTIONS(2362), + [anon_sym_void] = ACTIONS(2364), + [anon_sym_anyopaque] = ACTIONS(2364), + [anon_sym_bool] = ACTIONS(2364), + [anon_sym_int] = ACTIONS(2364), + [anon_sym_float] = ACTIONS(2364), + [anon_sym_range] = ACTIONS(2364), + [anon_sym_i8] = ACTIONS(2364), + [anon_sym_i16] = ACTIONS(2364), + [anon_sym_i32] = ACTIONS(2364), + [anon_sym_i64] = ACTIONS(2364), + [anon_sym_u8] = ACTIONS(2364), + [anon_sym_u16] = ACTIONS(2364), + [anon_sym_u32] = ACTIONS(2364), + [anon_sym_u64] = ACTIONS(2364), + [anon_sym_isize] = ACTIONS(2364), + [anon_sym_usize] = ACTIONS(2364), + [anon_sym_f32] = ACTIONS(2364), + [anon_sym_f64] = ACTIONS(2364), + [anon_sym_c_char] = ACTIONS(2364), + [anon_sym_c_schar] = ACTIONS(2364), + [anon_sym_c_uchar] = ACTIONS(2364), + [anon_sym_c_short] = ACTIONS(2364), + [anon_sym_c_ushort] = ACTIONS(2364), + [anon_sym_c_int] = ACTIONS(2364), + [anon_sym_c_uint] = ACTIONS(2364), + [anon_sym_c_long] = ACTIONS(2364), + [anon_sym_c_ulong] = ACTIONS(2364), + [anon_sym_c_longlong] = ACTIONS(2364), + [anon_sym_c_ulonglong] = ACTIONS(2364), + [anon_sym_c_float] = ACTIONS(2364), + [anon_sym_c_double] = ACTIONS(2364), + [anon_sym_c_longdouble] = ACTIONS(2364), + [anon_sym_return] = ACTIONS(2364), + [anon_sym_yield] = ACTIONS(2364), + [anon_sym_break] = ACTIONS(2364), + [anon_sym_continue] = ACTIONS(2364), + [anon_sym_defer] = ACTIONS(2364), + [anon_sym_errdefer] = ACTIONS(2364), + [anon_sym_if] = ACTIONS(2364), + [anon_sym_else] = ACTIONS(2364), + [anon_sym_while] = ACTIONS(2364), + [anon_sym_for] = ACTIONS(2364), + [anon_sym_match] = ACTIONS(2364), + [anon_sym_AMP] = ACTIONS(2362), + [anon_sym_try] = ACTIONS(2364), + [anon_sym_DOT] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2364), + [anon_sym_false] = ACTIONS(2364), + [sym_none] = ACTIONS(2364), + [sym_undefined] = ACTIONS(2364), + [sym_sink] = ACTIONS(2364), + [sym_integer] = ACTIONS(2364), + [sym_float] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym_multiline_string] = ACTIONS(2362), + [sym_character] = ACTIONS(2362), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2369), + [sym__newline] = ACTIONS(2362), }, [STATE(1069)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2366), + [sym_identifier] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_hide] = ACTIONS(2368), + [anon_sym_func] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_struct] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2366), + [anon_sym_RPAREN] = ACTIONS(2366), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2366), + [anon_sym_DOLLAR] = ACTIONS(2366), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_anyopaque] = ACTIONS(2368), + [anon_sym_bool] = ACTIONS(2368), + [anon_sym_int] = ACTIONS(2368), + [anon_sym_float] = ACTIONS(2368), + [anon_sym_range] = ACTIONS(2368), + [anon_sym_i8] = ACTIONS(2368), + [anon_sym_i16] = ACTIONS(2368), + [anon_sym_i32] = ACTIONS(2368), + [anon_sym_i64] = ACTIONS(2368), + [anon_sym_u8] = ACTIONS(2368), + [anon_sym_u16] = ACTIONS(2368), + [anon_sym_u32] = ACTIONS(2368), + [anon_sym_u64] = ACTIONS(2368), + [anon_sym_isize] = ACTIONS(2368), + [anon_sym_usize] = ACTIONS(2368), + [anon_sym_f32] = ACTIONS(2368), + [anon_sym_f64] = ACTIONS(2368), + [anon_sym_c_char] = ACTIONS(2368), + [anon_sym_c_schar] = ACTIONS(2368), + [anon_sym_c_uchar] = ACTIONS(2368), + [anon_sym_c_short] = ACTIONS(2368), + [anon_sym_c_ushort] = ACTIONS(2368), + [anon_sym_c_int] = ACTIONS(2368), + [anon_sym_c_uint] = ACTIONS(2368), + [anon_sym_c_long] = ACTIONS(2368), + [anon_sym_c_ulong] = ACTIONS(2368), + [anon_sym_c_longlong] = ACTIONS(2368), + [anon_sym_c_ulonglong] = ACTIONS(2368), + [anon_sym_c_float] = ACTIONS(2368), + [anon_sym_c_double] = ACTIONS(2368), + [anon_sym_c_longdouble] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_defer] = ACTIONS(2368), + [anon_sym_errdefer] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_match] = ACTIONS(2368), + [anon_sym_AMP] = ACTIONS(2366), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_DOT] = ACTIONS(2366), + [anon_sym_true] = ACTIONS(2368), + [anon_sym_false] = ACTIONS(2368), + [sym_none] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [sym_sink] = ACTIONS(2368), + [sym_integer] = ACTIONS(2368), + [sym_float] = ACTIONS(2366), + [anon_sym_DQUOTE] = ACTIONS(2366), + [sym_multiline_string] = ACTIONS(2366), + [sym_character] = ACTIONS(2366), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2373), + [sym__newline] = ACTIONS(2366), }, [STATE(1070)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2370), + [sym_identifier] = ACTIONS(2372), + [anon_sym_import] = ACTIONS(2372), + [anon_sym_hide] = ACTIONS(2372), + [anon_sym_func] = ACTIONS(2372), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_struct] = ACTIONS(2372), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_RPAREN] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_DOLLAR] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2372), + [anon_sym_anyopaque] = ACTIONS(2372), + [anon_sym_bool] = ACTIONS(2372), + [anon_sym_int] = ACTIONS(2372), + [anon_sym_float] = ACTIONS(2372), + [anon_sym_range] = ACTIONS(2372), + [anon_sym_i8] = ACTIONS(2372), + [anon_sym_i16] = ACTIONS(2372), + [anon_sym_i32] = ACTIONS(2372), + [anon_sym_i64] = ACTIONS(2372), + [anon_sym_u8] = ACTIONS(2372), + [anon_sym_u16] = ACTIONS(2372), + [anon_sym_u32] = ACTIONS(2372), + [anon_sym_u64] = ACTIONS(2372), + [anon_sym_isize] = ACTIONS(2372), + [anon_sym_usize] = ACTIONS(2372), + [anon_sym_f32] = ACTIONS(2372), + [anon_sym_f64] = ACTIONS(2372), + [anon_sym_c_char] = ACTIONS(2372), + [anon_sym_c_schar] = ACTIONS(2372), + [anon_sym_c_uchar] = ACTIONS(2372), + [anon_sym_c_short] = ACTIONS(2372), + [anon_sym_c_ushort] = ACTIONS(2372), + [anon_sym_c_int] = ACTIONS(2372), + [anon_sym_c_uint] = ACTIONS(2372), + [anon_sym_c_long] = ACTIONS(2372), + [anon_sym_c_ulong] = ACTIONS(2372), + [anon_sym_c_longlong] = ACTIONS(2372), + [anon_sym_c_ulonglong] = ACTIONS(2372), + [anon_sym_c_float] = ACTIONS(2372), + [anon_sym_c_double] = ACTIONS(2372), + [anon_sym_c_longdouble] = ACTIONS(2372), + [anon_sym_return] = ACTIONS(2372), + [anon_sym_yield] = ACTIONS(2372), + [anon_sym_break] = ACTIONS(2372), + [anon_sym_continue] = ACTIONS(2372), + [anon_sym_defer] = ACTIONS(2372), + [anon_sym_errdefer] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_else] = ACTIONS(2372), + [anon_sym_while] = ACTIONS(2372), + [anon_sym_for] = ACTIONS(2372), + [anon_sym_match] = ACTIONS(2372), + [anon_sym_AMP] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2372), + [anon_sym_DOT] = ACTIONS(2370), + [anon_sym_true] = ACTIONS(2372), + [anon_sym_false] = ACTIONS(2372), + [sym_none] = ACTIONS(2372), + [sym_undefined] = ACTIONS(2372), + [sym_sink] = ACTIONS(2372), + [sym_integer] = ACTIONS(2372), + [sym_float] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [sym_multiline_string] = ACTIONS(2370), + [sym_character] = ACTIONS(2370), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2377), + [sym__newline] = ACTIONS(2370), }, [STATE(1071)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2374), + [sym_identifier] = ACTIONS(2376), + [anon_sym_import] = ACTIONS(2376), + [anon_sym_hide] = ACTIONS(2376), + [anon_sym_func] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(2374), + [anon_sym_struct] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2374), + [anon_sym_RPAREN] = ACTIONS(2374), + [anon_sym_LBRACE] = ACTIONS(2374), + [anon_sym_RBRACE] = ACTIONS(2374), + [anon_sym_DASH] = ACTIONS(2374), + [anon_sym_DOLLAR] = ACTIONS(2374), + [anon_sym_LBRACK] = ACTIONS(2374), + [anon_sym_void] = ACTIONS(2376), + [anon_sym_anyopaque] = ACTIONS(2376), + [anon_sym_bool] = ACTIONS(2376), + [anon_sym_int] = ACTIONS(2376), + [anon_sym_float] = ACTIONS(2376), + [anon_sym_range] = ACTIONS(2376), + [anon_sym_i8] = ACTIONS(2376), + [anon_sym_i16] = ACTIONS(2376), + [anon_sym_i32] = ACTIONS(2376), + [anon_sym_i64] = ACTIONS(2376), + [anon_sym_u8] = ACTIONS(2376), + [anon_sym_u16] = ACTIONS(2376), + [anon_sym_u32] = ACTIONS(2376), + [anon_sym_u64] = ACTIONS(2376), + [anon_sym_isize] = ACTIONS(2376), + [anon_sym_usize] = ACTIONS(2376), + [anon_sym_f32] = ACTIONS(2376), + [anon_sym_f64] = ACTIONS(2376), + [anon_sym_c_char] = ACTIONS(2376), + [anon_sym_c_schar] = ACTIONS(2376), + [anon_sym_c_uchar] = ACTIONS(2376), + [anon_sym_c_short] = ACTIONS(2376), + [anon_sym_c_ushort] = ACTIONS(2376), + [anon_sym_c_int] = ACTIONS(2376), + [anon_sym_c_uint] = ACTIONS(2376), + [anon_sym_c_long] = ACTIONS(2376), + [anon_sym_c_ulong] = ACTIONS(2376), + [anon_sym_c_longlong] = ACTIONS(2376), + [anon_sym_c_ulonglong] = ACTIONS(2376), + [anon_sym_c_float] = ACTIONS(2376), + [anon_sym_c_double] = ACTIONS(2376), + [anon_sym_c_longdouble] = ACTIONS(2376), + [anon_sym_return] = ACTIONS(2376), + [anon_sym_yield] = ACTIONS(2376), + [anon_sym_break] = ACTIONS(2376), + [anon_sym_continue] = ACTIONS(2376), + [anon_sym_defer] = ACTIONS(2376), + [anon_sym_errdefer] = ACTIONS(2376), + [anon_sym_if] = ACTIONS(2376), + [anon_sym_else] = ACTIONS(2376), + [anon_sym_while] = ACTIONS(2376), + [anon_sym_for] = ACTIONS(2376), + [anon_sym_match] = ACTIONS(2376), + [anon_sym_AMP] = ACTIONS(2374), + [anon_sym_try] = ACTIONS(2376), + [anon_sym_DOT] = ACTIONS(2374), + [anon_sym_true] = ACTIONS(2376), + [anon_sym_false] = ACTIONS(2376), + [sym_none] = ACTIONS(2376), + [sym_undefined] = ACTIONS(2376), + [sym_sink] = ACTIONS(2376), + [sym_integer] = ACTIONS(2376), + [sym_float] = ACTIONS(2374), + [anon_sym_DQUOTE] = ACTIONS(2374), + [sym_multiline_string] = ACTIONS(2374), + [sym_character] = ACTIONS(2374), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2381), + [sym__newline] = ACTIONS(2374), }, [STATE(1072)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2378), + [sym_identifier] = ACTIONS(2380), + [anon_sym_import] = ACTIONS(2380), + [anon_sym_hide] = ACTIONS(2380), + [anon_sym_func] = ACTIONS(2380), + [anon_sym_BANG] = ACTIONS(2378), + [anon_sym_struct] = ACTIONS(2380), + [anon_sym_LPAREN] = ACTIONS(2378), + [anon_sym_RPAREN] = ACTIONS(2378), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_RBRACE] = ACTIONS(2378), + [anon_sym_DASH] = ACTIONS(2378), + [anon_sym_DOLLAR] = ACTIONS(2378), + [anon_sym_LBRACK] = ACTIONS(2378), + [anon_sym_void] = ACTIONS(2380), + [anon_sym_anyopaque] = ACTIONS(2380), + [anon_sym_bool] = ACTIONS(2380), + [anon_sym_int] = ACTIONS(2380), + [anon_sym_float] = ACTIONS(2380), + [anon_sym_range] = ACTIONS(2380), + [anon_sym_i8] = ACTIONS(2380), + [anon_sym_i16] = ACTIONS(2380), + [anon_sym_i32] = ACTIONS(2380), + [anon_sym_i64] = ACTIONS(2380), + [anon_sym_u8] = ACTIONS(2380), + [anon_sym_u16] = ACTIONS(2380), + [anon_sym_u32] = ACTIONS(2380), + [anon_sym_u64] = ACTIONS(2380), + [anon_sym_isize] = ACTIONS(2380), + [anon_sym_usize] = ACTIONS(2380), + [anon_sym_f32] = ACTIONS(2380), + [anon_sym_f64] = ACTIONS(2380), + [anon_sym_c_char] = ACTIONS(2380), + [anon_sym_c_schar] = ACTIONS(2380), + [anon_sym_c_uchar] = ACTIONS(2380), + [anon_sym_c_short] = ACTIONS(2380), + [anon_sym_c_ushort] = ACTIONS(2380), + [anon_sym_c_int] = ACTIONS(2380), + [anon_sym_c_uint] = ACTIONS(2380), + [anon_sym_c_long] = ACTIONS(2380), + [anon_sym_c_ulong] = ACTIONS(2380), + [anon_sym_c_longlong] = ACTIONS(2380), + [anon_sym_c_ulonglong] = ACTIONS(2380), + [anon_sym_c_float] = ACTIONS(2380), + [anon_sym_c_double] = ACTIONS(2380), + [anon_sym_c_longdouble] = ACTIONS(2380), + [anon_sym_return] = ACTIONS(2380), + [anon_sym_yield] = ACTIONS(2380), + [anon_sym_break] = ACTIONS(2380), + [anon_sym_continue] = ACTIONS(2380), + [anon_sym_defer] = ACTIONS(2380), + [anon_sym_errdefer] = ACTIONS(2380), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_else] = ACTIONS(2380), + [anon_sym_while] = ACTIONS(2380), + [anon_sym_for] = ACTIONS(2380), + [anon_sym_match] = ACTIONS(2380), + [anon_sym_AMP] = ACTIONS(2378), + [anon_sym_try] = ACTIONS(2380), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_true] = ACTIONS(2380), + [anon_sym_false] = ACTIONS(2380), + [sym_none] = ACTIONS(2380), + [sym_undefined] = ACTIONS(2380), + [sym_sink] = ACTIONS(2380), + [sym_integer] = ACTIONS(2380), + [sym_float] = ACTIONS(2378), + [anon_sym_DQUOTE] = ACTIONS(2378), + [sym_multiline_string] = ACTIONS(2378), + [sym_character] = ACTIONS(2378), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2385), + [sym__newline] = ACTIONS(2378), }, [STATE(1073)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2382), + [sym_identifier] = ACTIONS(2384), + [anon_sym_import] = ACTIONS(2384), + [anon_sym_hide] = ACTIONS(2384), + [anon_sym_func] = ACTIONS(2384), + [anon_sym_BANG] = ACTIONS(2382), + [anon_sym_struct] = ACTIONS(2384), + [anon_sym_LPAREN] = ACTIONS(2382), + [anon_sym_RPAREN] = ACTIONS(2382), + [anon_sym_LBRACE] = ACTIONS(2382), + [anon_sym_RBRACE] = ACTIONS(2382), + [anon_sym_DASH] = ACTIONS(2382), + [anon_sym_DOLLAR] = ACTIONS(2382), + [anon_sym_LBRACK] = ACTIONS(2382), + [anon_sym_void] = ACTIONS(2384), + [anon_sym_anyopaque] = ACTIONS(2384), + [anon_sym_bool] = ACTIONS(2384), + [anon_sym_int] = ACTIONS(2384), + [anon_sym_float] = ACTIONS(2384), + [anon_sym_range] = ACTIONS(2384), + [anon_sym_i8] = ACTIONS(2384), + [anon_sym_i16] = ACTIONS(2384), + [anon_sym_i32] = ACTIONS(2384), + [anon_sym_i64] = ACTIONS(2384), + [anon_sym_u8] = ACTIONS(2384), + [anon_sym_u16] = ACTIONS(2384), + [anon_sym_u32] = ACTIONS(2384), + [anon_sym_u64] = ACTIONS(2384), + [anon_sym_isize] = ACTIONS(2384), + [anon_sym_usize] = ACTIONS(2384), + [anon_sym_f32] = ACTIONS(2384), + [anon_sym_f64] = ACTIONS(2384), + [anon_sym_c_char] = ACTIONS(2384), + [anon_sym_c_schar] = ACTIONS(2384), + [anon_sym_c_uchar] = ACTIONS(2384), + [anon_sym_c_short] = ACTIONS(2384), + [anon_sym_c_ushort] = ACTIONS(2384), + [anon_sym_c_int] = ACTIONS(2384), + [anon_sym_c_uint] = ACTIONS(2384), + [anon_sym_c_long] = ACTIONS(2384), + [anon_sym_c_ulong] = ACTIONS(2384), + [anon_sym_c_longlong] = ACTIONS(2384), + [anon_sym_c_ulonglong] = ACTIONS(2384), + [anon_sym_c_float] = ACTIONS(2384), + [anon_sym_c_double] = ACTIONS(2384), + [anon_sym_c_longdouble] = ACTIONS(2384), + [anon_sym_return] = ACTIONS(2384), + [anon_sym_yield] = ACTIONS(2384), + [anon_sym_break] = ACTIONS(2384), + [anon_sym_continue] = ACTIONS(2384), + [anon_sym_defer] = ACTIONS(2384), + [anon_sym_errdefer] = ACTIONS(2384), + [anon_sym_if] = ACTIONS(2384), + [anon_sym_else] = ACTIONS(2384), + [anon_sym_while] = ACTIONS(2384), + [anon_sym_for] = ACTIONS(2384), + [anon_sym_match] = ACTIONS(2384), + [anon_sym_AMP] = ACTIONS(2382), + [anon_sym_try] = ACTIONS(2384), + [anon_sym_DOT] = ACTIONS(2382), + [anon_sym_true] = ACTIONS(2384), + [anon_sym_false] = ACTIONS(2384), + [sym_none] = ACTIONS(2384), + [sym_undefined] = ACTIONS(2384), + [sym_sink] = ACTIONS(2384), + [sym_integer] = ACTIONS(2384), + [sym_float] = ACTIONS(2382), + [anon_sym_DQUOTE] = ACTIONS(2382), + [sym_multiline_string] = ACTIONS(2382), + [sym_character] = ACTIONS(2382), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2389), + [sym__newline] = ACTIONS(2382), }, [STATE(1074)] = { + [ts_builtin_sym_end] = ACTIONS(2386), + [sym_identifier] = ACTIONS(2388), + [anon_sym_import] = ACTIONS(2388), + [anon_sym_hide] = ACTIONS(2388), + [anon_sym_func] = ACTIONS(2388), + [anon_sym_BANG] = ACTIONS(2386), + [anon_sym_struct] = ACTIONS(2388), + [anon_sym_LPAREN] = ACTIONS(2386), + [anon_sym_RPAREN] = ACTIONS(2386), + [anon_sym_LBRACE] = ACTIONS(2386), + [anon_sym_RBRACE] = ACTIONS(2386), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_DOLLAR] = ACTIONS(2386), + [anon_sym_LBRACK] = ACTIONS(2386), + [anon_sym_void] = ACTIONS(2388), + [anon_sym_anyopaque] = ACTIONS(2388), + [anon_sym_bool] = ACTIONS(2388), + [anon_sym_int] = ACTIONS(2388), + [anon_sym_float] = ACTIONS(2388), + [anon_sym_range] = ACTIONS(2388), + [anon_sym_i8] = ACTIONS(2388), + [anon_sym_i16] = ACTIONS(2388), + [anon_sym_i32] = ACTIONS(2388), + [anon_sym_i64] = ACTIONS(2388), + [anon_sym_u8] = ACTIONS(2388), + [anon_sym_u16] = ACTIONS(2388), + [anon_sym_u32] = ACTIONS(2388), + [anon_sym_u64] = ACTIONS(2388), + [anon_sym_isize] = ACTIONS(2388), + [anon_sym_usize] = ACTIONS(2388), + [anon_sym_f32] = ACTIONS(2388), + [anon_sym_f64] = ACTIONS(2388), + [anon_sym_c_char] = ACTIONS(2388), + [anon_sym_c_schar] = ACTIONS(2388), + [anon_sym_c_uchar] = ACTIONS(2388), + [anon_sym_c_short] = ACTIONS(2388), + [anon_sym_c_ushort] = ACTIONS(2388), + [anon_sym_c_int] = ACTIONS(2388), + [anon_sym_c_uint] = ACTIONS(2388), + [anon_sym_c_long] = ACTIONS(2388), + [anon_sym_c_ulong] = ACTIONS(2388), + [anon_sym_c_longlong] = ACTIONS(2388), + [anon_sym_c_ulonglong] = ACTIONS(2388), + [anon_sym_c_float] = ACTIONS(2388), + [anon_sym_c_double] = ACTIONS(2388), + [anon_sym_c_longdouble] = ACTIONS(2388), + [anon_sym_return] = ACTIONS(2388), + [anon_sym_yield] = ACTIONS(2388), + [anon_sym_break] = ACTIONS(2388), + [anon_sym_continue] = ACTIONS(2388), + [anon_sym_defer] = ACTIONS(2388), + [anon_sym_errdefer] = ACTIONS(2388), + [anon_sym_if] = ACTIONS(2388), + [anon_sym_else] = ACTIONS(2388), + [anon_sym_while] = ACTIONS(2388), + [anon_sym_for] = ACTIONS(2388), + [anon_sym_match] = ACTIONS(2388), + [anon_sym_AMP] = ACTIONS(2386), + [anon_sym_try] = ACTIONS(2388), + [anon_sym_DOT] = ACTIONS(2386), + [anon_sym_true] = ACTIONS(2388), + [anon_sym_false] = ACTIONS(2388), + [sym_none] = ACTIONS(2388), + [sym_undefined] = ACTIONS(2388), + [sym_sink] = ACTIONS(2388), + [sym_integer] = ACTIONS(2388), + [sym_float] = ACTIONS(2386), + [anon_sym_DQUOTE] = ACTIONS(2386), + [sym_multiline_string] = ACTIONS(2386), + [sym_character] = ACTIONS(2386), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(2386), + }, + [STATE(1075)] = { + [sym_type] = STATE(427), + [sym__type_atom] = STATE(394), + [sym_named_type] = STATE(394), + [sym_optional_type] = STATE(394), + [sym_pointer_type] = STATE(394), + [sym_array_type] = STATE(394), + [sym_function_type] = STATE(394), + [sym_builtin_type] = STATE(394), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(1685), + [anon_sym_func] = ACTIONS(283), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(277), + [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(2390), + [anon_sym_mut] = ACTIONS(327), + [anon_sym_LBRACK] = ACTIONS(329), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_COLON] = ACTIONS(277), + [anon_sym_DOT_DOT] = ACTIONS(281), + [anon_sym_DOT_DOT_EQ] = ACTIONS(277), + [anon_sym_orelse] = ACTIONS(281), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_or] = ACTIONS(281), + [anon_sym_and] = ACTIONS(281), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ] = ACTIONS(277), + [anon_sym_LT] = ACTIONS(281), + [anon_sym_LT_EQ] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(281), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(277), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_CARET] = ACTIONS(277), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(277), + }, + [STATE(1076)] = { + [sym_type] = STATE(426), + [sym__type_atom] = STATE(394), + [sym_named_type] = STATE(394), + [sym_optional_type] = STATE(394), + [sym_pointer_type] = STATE(394), + [sym_array_type] = STATE(394), + [sym_function_type] = STATE(394), + [sym_builtin_type] = STATE(394), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(1685), + [anon_sym_func] = ACTIONS(283), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(277), + [anon_sym_COMMA] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_QMARK] = ACTIONS(321), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(2390), + [anon_sym_mut] = ACTIONS(335), + [anon_sym_LBRACK] = ACTIONS(329), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_COLON] = ACTIONS(277), + [anon_sym_DOT_DOT] = ACTIONS(281), + [anon_sym_DOT_DOT_EQ] = ACTIONS(277), + [anon_sym_orelse] = ACTIONS(281), + [anon_sym_catch] = ACTIONS(281), + [anon_sym_or] = ACTIONS(281), + [anon_sym_and] = ACTIONS(281), + [anon_sym_EQ_EQ] = ACTIONS(277), + [anon_sym_BANG_EQ] = ACTIONS(277), + [anon_sym_LT] = ACTIONS(281), + [anon_sym_LT_EQ] = ACTIONS(277), + [anon_sym_GT] = ACTIONS(281), + [anon_sym_GT_EQ] = ACTIONS(277), + [anon_sym_PLUS] = ACTIONS(277), + [anon_sym_SLASH] = ACTIONS(277), + [anon_sym_DOT] = ACTIONS(281), + [anon_sym_CARET] = ACTIONS(277), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(277), + }, + [STATE(1077)] = { [ts_builtin_sym_end] = ACTIONS(2393), [sym_identifier] = ACTIONS(2395), [anon_sym_import] = ACTIONS(2395), + [anon_sym_hide] = ACTIONS(2395), [anon_sym_func] = ACTIONS(2395), [anon_sym_BANG] = ACTIONS(2393), [anon_sym_struct] = ACTIONS(2395), @@ -110659,10 +111508,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2393), }, - [STATE(1075)] = { + [STATE(1078)] = { [ts_builtin_sym_end] = ACTIONS(2397), [sym_identifier] = ACTIONS(2399), [anon_sym_import] = ACTIONS(2399), + [anon_sym_hide] = ACTIONS(2399), [anon_sym_func] = ACTIONS(2399), [anon_sym_BANG] = ACTIONS(2397), [anon_sym_struct] = ACTIONS(2399), @@ -110732,10 +111582,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2397), }, - [STATE(1076)] = { + [STATE(1079)] = { [ts_builtin_sym_end] = ACTIONS(2401), [sym_identifier] = ACTIONS(2403), [anon_sym_import] = ACTIONS(2403), + [anon_sym_hide] = ACTIONS(2403), [anon_sym_func] = ACTIONS(2403), [anon_sym_BANG] = ACTIONS(2401), [anon_sym_struct] = ACTIONS(2403), @@ -110805,10 +111656,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2401), }, - [STATE(1077)] = { + [STATE(1080)] = { [ts_builtin_sym_end] = ACTIONS(2405), [sym_identifier] = ACTIONS(2407), [anon_sym_import] = ACTIONS(2407), + [anon_sym_hide] = ACTIONS(2407), [anon_sym_func] = ACTIONS(2407), [anon_sym_BANG] = ACTIONS(2405), [anon_sym_struct] = ACTIONS(2407), @@ -110878,10 +111730,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2405), }, - [STATE(1078)] = { + [STATE(1081)] = { [ts_builtin_sym_end] = ACTIONS(2409), [sym_identifier] = ACTIONS(2411), [anon_sym_import] = ACTIONS(2411), + [anon_sym_hide] = ACTIONS(2411), [anon_sym_func] = ACTIONS(2411), [anon_sym_BANG] = ACTIONS(2409), [anon_sym_struct] = ACTIONS(2411), @@ -110951,10 +111804,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2409), }, - [STATE(1079)] = { + [STATE(1082)] = { [ts_builtin_sym_end] = ACTIONS(2413), [sym_identifier] = ACTIONS(2415), [anon_sym_import] = ACTIONS(2415), + [anon_sym_hide] = ACTIONS(2415), [anon_sym_func] = ACTIONS(2415), [anon_sym_BANG] = ACTIONS(2413), [anon_sym_struct] = ACTIONS(2415), @@ -111024,10 +111878,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2413), }, - [STATE(1080)] = { + [STATE(1083)] = { [ts_builtin_sym_end] = ACTIONS(2417), [sym_identifier] = ACTIONS(2419), [anon_sym_import] = ACTIONS(2419), + [anon_sym_hide] = ACTIONS(2419), [anon_sym_func] = ACTIONS(2419), [anon_sym_BANG] = ACTIONS(2417), [anon_sym_struct] = ACTIONS(2419), @@ -111097,11686 +111952,11491 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(2417), }, - [STATE(1081)] = { - [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(2421), - }, - [STATE(1082)] = { - [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(2425), - }, - [STATE(1083)] = { - [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(2429), - }, [STATE(1084)] = { - [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_type] = STATE(449), + [sym__type_atom] = STATE(394), + [sym_named_type] = STATE(394), + [sym_optional_type] = STATE(394), + [sym_pointer_type] = STATE(394), + [sym_array_type] = STATE(394), + [sym_function_type] = STATE(394), + [sym_builtin_type] = STATE(394), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(1685), + [anon_sym_func] = ACTIONS(283), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_COMMA] = ACTIONS(337), + [anon_sym_DASH] = ACTIONS(337), + [anon_sym_PIPE] = ACTIONS(337), + [anon_sym_QMARK] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_COLON] = ACTIONS(337), + [anon_sym_DOT_DOT] = ACTIONS(341), + [anon_sym_DOT_DOT_EQ] = ACTIONS(337), + [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(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_LT_EQ] = ACTIONS(337), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(337), + [anon_sym_PLUS] = ACTIONS(337), + [anon_sym_SLASH] = ACTIONS(337), + [anon_sym_DOT] = ACTIONS(341), + [anon_sym_CARET] = ACTIONS(337), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2433), + [sym__newline] = ACTIONS(337), }, [STATE(1085)] = { - [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_type] = STATE(451), + [sym__type_atom] = STATE(394), + [sym_named_type] = STATE(394), + [sym_optional_type] = STATE(394), + [sym_pointer_type] = STATE(394), + [sym_array_type] = STATE(394), + [sym_function_type] = STATE(394), + [sym_builtin_type] = STATE(394), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(1685), + [anon_sym_func] = ACTIONS(283), + [anon_sym_c_func] = ACTIONS(283), + [anon_sym_LPAREN] = ACTIONS(337), + [anon_sym_COMMA] = ACTIONS(337), + [anon_sym_DASH] = ACTIONS(337), + [anon_sym_PIPE] = ACTIONS(337), + [anon_sym_QMARK] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(287), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_LBRACK] = ACTIONS(361), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [anon_sym_COLON] = ACTIONS(337), + [anon_sym_DOT_DOT] = ACTIONS(341), + [anon_sym_DOT_DOT_EQ] = ACTIONS(337), + [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(337), + [anon_sym_BANG_EQ] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(341), + [anon_sym_LT_EQ] = ACTIONS(337), + [anon_sym_GT] = ACTIONS(341), + [anon_sym_GT_EQ] = ACTIONS(337), + [anon_sym_PLUS] = ACTIONS(337), + [anon_sym_SLASH] = ACTIONS(337), + [anon_sym_DOT] = ACTIONS(341), + [anon_sym_CARET] = ACTIONS(337), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2437), + [sym__newline] = ACTIONS(337), }, [STATE(1086)] = { - [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_type] = STATE(418), + [sym__type_atom] = STATE(394), + [sym_named_type] = STATE(394), + [sym_optional_type] = STATE(394), + [sym_pointer_type] = STATE(394), + [sym_array_type] = STATE(394), + [sym_function_type] = STATE(394), + [sym_builtin_type] = STATE(394), + [sym_qualified_identifier] = STATE(402), + [sym_identifier] = ACTIONS(1685), + [anon_sym_func] = ACTIONS(283), + [anon_sym_c_func] = ACTIONS(283), + [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(287), + [anon_sym_STAR] = ACTIONS(2424), + [anon_sym_mut] = ACTIONS(385), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_void] = ACTIONS(39), + [anon_sym_anyopaque] = ACTIONS(39), + [anon_sym_bool] = ACTIONS(39), + [anon_sym_int] = ACTIONS(39), + [anon_sym_float] = ACTIONS(39), + [anon_sym_range] = ACTIONS(39), + [anon_sym_i8] = ACTIONS(39), + [anon_sym_i16] = ACTIONS(39), + [anon_sym_i32] = ACTIONS(39), + [anon_sym_i64] = ACTIONS(39), + [anon_sym_u8] = ACTIONS(39), + [anon_sym_u16] = ACTIONS(39), + [anon_sym_u32] = ACTIONS(39), + [anon_sym_u64] = ACTIONS(39), + [anon_sym_isize] = ACTIONS(39), + [anon_sym_usize] = ACTIONS(39), + [anon_sym_f32] = ACTIONS(39), + [anon_sym_f64] = ACTIONS(39), + [anon_sym_c_char] = ACTIONS(39), + [anon_sym_c_schar] = ACTIONS(39), + [anon_sym_c_uchar] = ACTIONS(39), + [anon_sym_c_short] = ACTIONS(39), + [anon_sym_c_ushort] = ACTIONS(39), + [anon_sym_c_int] = ACTIONS(39), + [anon_sym_c_uint] = ACTIONS(39), + [anon_sym_c_long] = ACTIONS(39), + [anon_sym_c_ulong] = ACTIONS(39), + [anon_sym_c_longlong] = ACTIONS(39), + [anon_sym_c_ulonglong] = ACTIONS(39), + [anon_sym_c_float] = ACTIONS(39), + [anon_sym_c_double] = ACTIONS(39), + [anon_sym_c_longdouble] = ACTIONS(39), + [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(2441), + [sym__newline] = ACTIONS(369), }, [STATE(1087)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2427), + [sym_identifier] = ACTIONS(2429), + [anon_sym_import] = ACTIONS(2429), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2445), + [sym__newline] = ACTIONS(2427), }, [STATE(1088)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2431), + [sym_identifier] = ACTIONS(2433), + [anon_sym_import] = ACTIONS(2433), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2449), + [sym__newline] = ACTIONS(2431), }, [STATE(1089)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2435), + [sym_identifier] = ACTIONS(2437), + [anon_sym_import] = ACTIONS(2437), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2453), + [sym__newline] = ACTIONS(2435), }, [STATE(1090)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2439), + [sym_identifier] = ACTIONS(2441), + [anon_sym_import] = ACTIONS(2441), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2457), + [sym__newline] = ACTIONS(2439), }, [STATE(1091)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2443), + [sym_identifier] = ACTIONS(2445), + [anon_sym_import] = ACTIONS(2445), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2461), + [sym__newline] = ACTIONS(2443), }, [STATE(1092)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2447), + [sym_identifier] = ACTIONS(2449), + [anon_sym_import] = ACTIONS(2449), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2465), + [sym__newline] = ACTIONS(2447), }, [STATE(1093)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2451), + [sym_identifier] = ACTIONS(2453), + [anon_sym_import] = ACTIONS(2453), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2469), + [sym__newline] = ACTIONS(2451), }, [STATE(1094)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2455), + [sym_identifier] = ACTIONS(2457), + [anon_sym_import] = ACTIONS(2457), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2473), + [sym__newline] = ACTIONS(2455), }, [STATE(1095)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2459), + [sym_identifier] = ACTIONS(2461), + [anon_sym_import] = ACTIONS(2461), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2477), + [sym__newline] = ACTIONS(2459), }, [STATE(1096)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2463), + [sym_identifier] = ACTIONS(2465), + [anon_sym_import] = ACTIONS(2465), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2481), + [sym__newline] = ACTIONS(2463), }, [STATE(1097)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2467), + [sym_identifier] = ACTIONS(2469), + [anon_sym_import] = ACTIONS(2469), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2485), + [sym__newline] = ACTIONS(2467), }, [STATE(1098)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2471), + [sym_identifier] = ACTIONS(2473), + [anon_sym_import] = ACTIONS(2473), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2489), + [sym__newline] = ACTIONS(2471), }, [STATE(1099)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2475), + [sym_identifier] = ACTIONS(2477), + [anon_sym_import] = ACTIONS(2477), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2493), + [sym__newline] = ACTIONS(2475), }, [STATE(1100)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2479), + [sym_identifier] = ACTIONS(2481), + [anon_sym_import] = ACTIONS(2481), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2497), + [sym__newline] = ACTIONS(2479), }, [STATE(1101)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2483), + [sym_identifier] = ACTIONS(2485), + [anon_sym_import] = ACTIONS(2485), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2501), + [sym__newline] = ACTIONS(2483), }, [STATE(1102)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2487), + [sym_identifier] = ACTIONS(2489), + [anon_sym_import] = ACTIONS(2489), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2505), + [sym__newline] = ACTIONS(2487), }, [STATE(1103)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2491), + [sym_identifier] = ACTIONS(2493), + [anon_sym_import] = ACTIONS(2493), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2509), + [sym__newline] = ACTIONS(2491), }, [STATE(1104)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2495), + [sym_identifier] = ACTIONS(2497), + [anon_sym_import] = ACTIONS(2497), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2513), + [sym__newline] = ACTIONS(2495), }, [STATE(1105)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2499), + [sym_identifier] = ACTIONS(2501), + [anon_sym_import] = ACTIONS(2501), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2517), + [sym__newline] = ACTIONS(2499), }, [STATE(1106)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2503), + [sym_identifier] = ACTIONS(2505), + [anon_sym_import] = ACTIONS(2505), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2521), + [sym__newline] = ACTIONS(2503), }, [STATE(1107)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2507), + [sym_identifier] = ACTIONS(2509), + [anon_sym_import] = ACTIONS(2509), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2525), + [sym__newline] = ACTIONS(2507), }, [STATE(1108)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2513), + [anon_sym_import] = ACTIONS(2513), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2529), + [sym__newline] = ACTIONS(2511), }, [STATE(1109)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2515), + [sym_identifier] = ACTIONS(2517), + [anon_sym_import] = ACTIONS(2517), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2533), + [sym__newline] = ACTIONS(2515), }, [STATE(1110)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2519), + [sym_identifier] = ACTIONS(2521), + [anon_sym_import] = ACTIONS(2521), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2537), + [sym__newline] = ACTIONS(2519), }, [STATE(1111)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2523), + [sym_identifier] = ACTIONS(2525), + [anon_sym_import] = ACTIONS(2525), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2541), + [sym__newline] = ACTIONS(2523), }, [STATE(1112)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2527), + [sym_identifier] = ACTIONS(2529), + [anon_sym_import] = ACTIONS(2529), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2545), + [sym__newline] = ACTIONS(2527), }, [STATE(1113)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2533), + [anon_sym_import] = ACTIONS(2533), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2549), + [sym__newline] = ACTIONS(2531), }, [STATE(1114)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2535), + [sym_identifier] = ACTIONS(2537), + [anon_sym_import] = ACTIONS(2537), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2553), + [sym__newline] = ACTIONS(2535), }, [STATE(1115)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2539), + [sym_identifier] = ACTIONS(2541), + [anon_sym_import] = ACTIONS(2541), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2557), + [sym__newline] = ACTIONS(2539), }, [STATE(1116)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2543), + [sym_identifier] = ACTIONS(2545), + [anon_sym_import] = ACTIONS(2545), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2561), + [sym__newline] = ACTIONS(2543), }, [STATE(1117)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2547), + [sym_identifier] = ACTIONS(2549), + [anon_sym_import] = ACTIONS(2549), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2565), + [sym__newline] = ACTIONS(2547), }, [STATE(1118)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2551), + [sym_identifier] = ACTIONS(2553), + [anon_sym_import] = ACTIONS(2553), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2569), + [sym__newline] = ACTIONS(2551), }, [STATE(1119)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2555), + [sym_identifier] = ACTIONS(2557), + [anon_sym_import] = ACTIONS(2557), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2573), + [sym__newline] = ACTIONS(2555), }, [STATE(1120)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2559), + [sym_identifier] = ACTIONS(2561), + [anon_sym_import] = ACTIONS(2561), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2577), + [sym__newline] = ACTIONS(2559), }, [STATE(1121)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2563), + [sym_identifier] = ACTIONS(2565), + [anon_sym_import] = ACTIONS(2565), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2581), + [sym__newline] = ACTIONS(2563), }, [STATE(1122)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2567), + [sym_identifier] = ACTIONS(2569), + [anon_sym_import] = ACTIONS(2569), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2585), + [sym__newline] = ACTIONS(2567), }, [STATE(1123)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2571), + [sym_identifier] = ACTIONS(2573), + [anon_sym_import] = ACTIONS(2573), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2589), + [sym__newline] = ACTIONS(2571), }, [STATE(1124)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2575), + [sym_identifier] = ACTIONS(2577), + [anon_sym_import] = ACTIONS(2577), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2593), + [sym__newline] = ACTIONS(2575), }, [STATE(1125)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2579), + [sym_identifier] = ACTIONS(2581), + [anon_sym_import] = ACTIONS(2581), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2597), + [sym__newline] = ACTIONS(2579), }, [STATE(1126)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2583), + [sym_identifier] = ACTIONS(2585), + [anon_sym_import] = ACTIONS(2585), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2601), + [sym__newline] = ACTIONS(2583), }, [STATE(1127)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2587), + [sym_identifier] = ACTIONS(2589), + [anon_sym_import] = ACTIONS(2589), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2605), + [sym__newline] = ACTIONS(2587), }, [STATE(1128)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2591), + [sym_identifier] = ACTIONS(2593), + [anon_sym_import] = ACTIONS(2593), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2609), + [sym__newline] = ACTIONS(2591), }, [STATE(1129)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2595), + [sym_identifier] = ACTIONS(2597), + [anon_sym_import] = ACTIONS(2597), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2613), + [sym__newline] = ACTIONS(2595), }, [STATE(1130)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2599), + [sym_identifier] = ACTIONS(2601), + [anon_sym_import] = ACTIONS(2601), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2617), + [sym__newline] = ACTIONS(2599), }, [STATE(1131)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2603), + [sym_identifier] = ACTIONS(2605), + [anon_sym_import] = ACTIONS(2605), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2621), + [sym__newline] = ACTIONS(2603), }, [STATE(1132)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2607), + [sym_identifier] = ACTIONS(2609), + [anon_sym_import] = ACTIONS(2609), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2625), + [sym__newline] = ACTIONS(2607), }, [STATE(1133)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2611), + [sym_identifier] = ACTIONS(2613), + [anon_sym_import] = ACTIONS(2613), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2629), + [sym__newline] = ACTIONS(2611), }, [STATE(1134)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2615), + [sym_identifier] = ACTIONS(2617), + [anon_sym_import] = ACTIONS(2617), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2633), + [sym__newline] = ACTIONS(2615), }, [STATE(1135)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2619), + [sym_identifier] = ACTIONS(2621), + [anon_sym_import] = ACTIONS(2621), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2637), + [sym__newline] = ACTIONS(2619), }, [STATE(1136)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2623), + [sym_identifier] = ACTIONS(2625), + [anon_sym_import] = ACTIONS(2625), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2641), + [sym__newline] = ACTIONS(2623), }, [STATE(1137)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2627), + [sym_identifier] = ACTIONS(2629), + [anon_sym_import] = ACTIONS(2629), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2645), + [sym__newline] = ACTIONS(2627), }, [STATE(1138)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2631), + [sym_identifier] = ACTIONS(2633), + [anon_sym_import] = ACTIONS(2633), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2649), + [sym__newline] = ACTIONS(2631), }, [STATE(1139)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2635), + [sym_identifier] = ACTIONS(2637), + [anon_sym_import] = ACTIONS(2637), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2653), + [sym__newline] = ACTIONS(2635), }, [STATE(1140)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2639), + [sym_identifier] = ACTIONS(2641), + [anon_sym_import] = ACTIONS(2641), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2657), + [sym__newline] = ACTIONS(2639), }, [STATE(1141)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2643), + [sym_identifier] = ACTIONS(2645), + [anon_sym_import] = ACTIONS(2645), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2661), + [sym__newline] = ACTIONS(2643), }, [STATE(1142)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2647), + [sym_identifier] = ACTIONS(2649), + [anon_sym_import] = ACTIONS(2649), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2665), + [sym__newline] = ACTIONS(2647), }, [STATE(1143)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2651), + [sym_identifier] = ACTIONS(2653), + [anon_sym_import] = ACTIONS(2653), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2669), + [sym__newline] = ACTIONS(2651), }, [STATE(1144)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2655), + [sym_identifier] = ACTIONS(2657), + [anon_sym_import] = ACTIONS(2657), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2673), + [sym__newline] = ACTIONS(2655), }, [STATE(1145)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2659), + [sym_identifier] = ACTIONS(2661), + [anon_sym_import] = ACTIONS(2661), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2677), + [sym__newline] = ACTIONS(2659), }, [STATE(1146)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2663), + [sym_identifier] = ACTIONS(2665), + [anon_sym_import] = ACTIONS(2665), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2681), + [sym__newline] = ACTIONS(2663), }, [STATE(1147)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2667), + [sym_identifier] = ACTIONS(2669), + [anon_sym_import] = ACTIONS(2669), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2685), + [sym__newline] = ACTIONS(2667), }, [STATE(1148)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2671), + [sym_identifier] = ACTIONS(2673), + [anon_sym_import] = ACTIONS(2673), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2689), + [sym__newline] = ACTIONS(2671), }, [STATE(1149)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2675), + [sym_identifier] = ACTIONS(2677), + [anon_sym_import] = ACTIONS(2677), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2693), + [sym__newline] = ACTIONS(2675), }, [STATE(1150)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2679), + [sym_identifier] = ACTIONS(2681), + [anon_sym_import] = ACTIONS(2681), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2697), + [sym__newline] = ACTIONS(2679), }, [STATE(1151)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2683), + [sym_identifier] = ACTIONS(2685), + [anon_sym_import] = ACTIONS(2685), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2701), + [sym__newline] = ACTIONS(2683), }, [STATE(1152)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2687), + [sym_identifier] = ACTIONS(2689), + [anon_sym_import] = ACTIONS(2689), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2705), + [sym__newline] = ACTIONS(2687), }, [STATE(1153)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2691), + [sym_identifier] = ACTIONS(2693), + [anon_sym_import] = ACTIONS(2693), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2709), + [sym__newline] = ACTIONS(2691), }, [STATE(1154)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2695), + [sym_identifier] = ACTIONS(2697), + [anon_sym_import] = ACTIONS(2697), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2713), + [sym__newline] = ACTIONS(2695), }, [STATE(1155)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2699), + [sym_identifier] = ACTIONS(2701), + [anon_sym_import] = ACTIONS(2701), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2717), + [sym__newline] = ACTIONS(2699), }, [STATE(1156)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2703), + [sym_identifier] = ACTIONS(2705), + [anon_sym_import] = ACTIONS(2705), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2721), + [sym__newline] = ACTIONS(2703), }, [STATE(1157)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2707), + [sym_identifier] = ACTIONS(2709), + [anon_sym_import] = ACTIONS(2709), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2725), + [sym__newline] = ACTIONS(2707), }, [STATE(1158)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2711), + [sym_identifier] = ACTIONS(2713), + [anon_sym_import] = ACTIONS(2713), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2729), + [sym__newline] = ACTIONS(2711), }, [STATE(1159)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2715), + [sym_identifier] = ACTIONS(2717), + [anon_sym_import] = ACTIONS(2717), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2733), + [sym__newline] = ACTIONS(2715), }, [STATE(1160)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2719), + [sym_identifier] = ACTIONS(2721), + [anon_sym_import] = ACTIONS(2721), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2737), + [sym__newline] = ACTIONS(2719), }, [STATE(1161)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2723), + [sym_identifier] = ACTIONS(2725), + [anon_sym_import] = ACTIONS(2725), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2741), + [sym__newline] = ACTIONS(2723), }, [STATE(1162)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2727), + [sym_identifier] = ACTIONS(2729), + [anon_sym_import] = ACTIONS(2729), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2745), + [sym__newline] = ACTIONS(2727), }, [STATE(1163)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2731), + [sym_identifier] = ACTIONS(2733), + [anon_sym_import] = ACTIONS(2733), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2749), + [sym__newline] = ACTIONS(2731), }, [STATE(1164)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2735), + [sym_identifier] = ACTIONS(2737), + [anon_sym_import] = ACTIONS(2737), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2753), + [sym__newline] = ACTIONS(2735), }, [STATE(1165)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2739), + [sym_identifier] = ACTIONS(2741), + [anon_sym_import] = ACTIONS(2741), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2757), + [sym__newline] = ACTIONS(2739), }, [STATE(1166)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2743), + [sym_identifier] = ACTIONS(2745), + [anon_sym_import] = ACTIONS(2745), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2761), + [sym__newline] = ACTIONS(2743), }, [STATE(1167)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2747), + [sym_identifier] = ACTIONS(2749), + [anon_sym_import] = ACTIONS(2749), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2765), + [sym__newline] = ACTIONS(2747), }, [STATE(1168)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2751), + [sym_identifier] = ACTIONS(2753), + [anon_sym_import] = ACTIONS(2753), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2769), + [sym__newline] = ACTIONS(2751), }, [STATE(1169)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2755), + [sym_identifier] = ACTIONS(2757), + [anon_sym_import] = ACTIONS(2757), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2773), + [sym__newline] = ACTIONS(2755), }, [STATE(1170)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2759), + [sym_identifier] = ACTIONS(2761), + [anon_sym_import] = ACTIONS(2761), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2777), + [sym__newline] = ACTIONS(2759), }, [STATE(1171)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2763), + [sym_identifier] = ACTIONS(2765), + [anon_sym_import] = ACTIONS(2765), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2781), + [sym__newline] = ACTIONS(2763), }, [STATE(1172)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2767), + [sym_identifier] = ACTIONS(2769), + [anon_sym_import] = ACTIONS(2769), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2785), + [sym__newline] = ACTIONS(2767), }, [STATE(1173)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2771), + [sym_identifier] = ACTIONS(2773), + [anon_sym_import] = ACTIONS(2773), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2789), + [sym__newline] = ACTIONS(2771), }, [STATE(1174)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2775), + [sym_identifier] = ACTIONS(2777), + [anon_sym_import] = ACTIONS(2777), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2793), + [sym__newline] = ACTIONS(2775), }, [STATE(1175)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2779), + [sym_identifier] = ACTIONS(2781), + [anon_sym_import] = ACTIONS(2781), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2797), + [sym__newline] = ACTIONS(2779), }, [STATE(1176)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2783), + [sym_identifier] = ACTIONS(2785), + [anon_sym_import] = ACTIONS(2785), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2801), + [sym__newline] = ACTIONS(2783), }, [STATE(1177)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2787), + [sym_identifier] = ACTIONS(2789), + [anon_sym_import] = ACTIONS(2789), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2805), + [sym__newline] = ACTIONS(2787), }, [STATE(1178)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2791), + [sym_identifier] = ACTIONS(2793), + [anon_sym_import] = ACTIONS(2793), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2809), + [sym__newline] = ACTIONS(2791), }, [STATE(1179)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2795), + [sym_identifier] = ACTIONS(2797), + [anon_sym_import] = ACTIONS(2797), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2813), + [sym__newline] = ACTIONS(2795), }, [STATE(1180)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2799), + [sym_identifier] = ACTIONS(2801), + [anon_sym_import] = ACTIONS(2801), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2817), + [sym__newline] = ACTIONS(2799), }, [STATE(1181)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2803), + [sym_identifier] = ACTIONS(2805), + [anon_sym_import] = ACTIONS(2805), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2821), + [sym__newline] = ACTIONS(2803), }, [STATE(1182)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2807), + [sym_identifier] = ACTIONS(2809), + [anon_sym_import] = ACTIONS(2809), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2825), + [sym__newline] = ACTIONS(2807), }, [STATE(1183)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2811), + [sym_identifier] = ACTIONS(2813), + [anon_sym_import] = ACTIONS(2813), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2829), + [sym__newline] = ACTIONS(2811), }, [STATE(1184)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2815), + [sym_identifier] = ACTIONS(2817), + [anon_sym_import] = ACTIONS(2817), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2833), + [sym__newline] = ACTIONS(2815), }, [STATE(1185)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2819), + [sym_identifier] = ACTIONS(2821), + [anon_sym_import] = ACTIONS(2821), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2837), + [sym__newline] = ACTIONS(2819), }, [STATE(1186)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2823), + [sym_identifier] = ACTIONS(2825), + [anon_sym_import] = ACTIONS(2825), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2841), + [sym__newline] = ACTIONS(2823), }, [STATE(1187)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2827), + [sym_identifier] = ACTIONS(2829), + [anon_sym_import] = ACTIONS(2829), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2845), + [sym__newline] = ACTIONS(2827), }, [STATE(1188)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2831), + [sym_identifier] = ACTIONS(2833), + [anon_sym_import] = ACTIONS(2833), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2849), + [sym__newline] = ACTIONS(2831), }, [STATE(1189)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2835), + [sym_identifier] = ACTIONS(2837), + [anon_sym_import] = ACTIONS(2837), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2853), + [sym__newline] = ACTIONS(2835), }, [STATE(1190)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2839), + [sym_identifier] = ACTIONS(2841), + [anon_sym_import] = ACTIONS(2841), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2857), + [sym__newline] = ACTIONS(2839), }, [STATE(1191)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2843), + [sym_identifier] = ACTIONS(2845), + [anon_sym_import] = ACTIONS(2845), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2861), + [sym__newline] = ACTIONS(2843), }, [STATE(1192)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2847), + [sym_identifier] = ACTIONS(2849), + [anon_sym_import] = ACTIONS(2849), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2865), + [sym__newline] = ACTIONS(2847), }, [STATE(1193)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2851), + [sym_identifier] = ACTIONS(2853), + [anon_sym_import] = ACTIONS(2853), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2869), + [sym__newline] = ACTIONS(2851), }, [STATE(1194)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2855), + [sym_identifier] = ACTIONS(2857), + [anon_sym_import] = ACTIONS(2857), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2873), + [sym__newline] = ACTIONS(2855), }, [STATE(1195)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2859), + [sym_identifier] = ACTIONS(2861), + [anon_sym_import] = ACTIONS(2861), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2877), + [sym__newline] = ACTIONS(2859), }, [STATE(1196)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2863), + [sym_identifier] = ACTIONS(2865), + [anon_sym_import] = ACTIONS(2865), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2881), + [sym__newline] = ACTIONS(2863), }, [STATE(1197)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2867), + [sym_identifier] = ACTIONS(2869), + [anon_sym_import] = ACTIONS(2869), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2885), + [sym__newline] = ACTIONS(2867), }, [STATE(1198)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2871), + [sym_identifier] = ACTIONS(2873), + [anon_sym_import] = ACTIONS(2873), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2889), + [sym__newline] = ACTIONS(2871), }, [STATE(1199)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2875), + [sym_identifier] = ACTIONS(2877), + [anon_sym_import] = ACTIONS(2877), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2893), + [sym__newline] = ACTIONS(2875), }, [STATE(1200)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2879), + [sym_identifier] = ACTIONS(2881), + [anon_sym_import] = ACTIONS(2881), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2897), + [sym__newline] = ACTIONS(2879), }, [STATE(1201)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2883), + [sym_identifier] = ACTIONS(2885), + [anon_sym_import] = ACTIONS(2885), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2901), + [sym__newline] = ACTIONS(2883), }, [STATE(1202)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2887), + [sym_identifier] = ACTIONS(2889), + [anon_sym_import] = ACTIONS(2889), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2905), + [sym__newline] = ACTIONS(2887), }, [STATE(1203)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2891), + [sym_identifier] = ACTIONS(2893), + [anon_sym_import] = ACTIONS(2893), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2909), + [sym__newline] = ACTIONS(2891), }, [STATE(1204)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2895), + [sym_identifier] = ACTIONS(2897), + [anon_sym_import] = ACTIONS(2897), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2913), + [sym__newline] = ACTIONS(2895), }, [STATE(1205)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2899), + [sym_identifier] = ACTIONS(2901), + [anon_sym_import] = ACTIONS(2901), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2917), + [sym__newline] = ACTIONS(2899), }, [STATE(1206)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2903), + [sym_identifier] = ACTIONS(2905), + [anon_sym_import] = ACTIONS(2905), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2921), + [sym__newline] = ACTIONS(2903), }, [STATE(1207)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2907), + [sym_identifier] = ACTIONS(2909), + [anon_sym_import] = ACTIONS(2909), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2925), + [sym__newline] = ACTIONS(2907), }, [STATE(1208)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2911), + [sym_identifier] = ACTIONS(2913), + [anon_sym_import] = ACTIONS(2913), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2929), + [sym__newline] = ACTIONS(2911), }, [STATE(1209)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2915), + [sym_identifier] = ACTIONS(2917), + [anon_sym_import] = ACTIONS(2917), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2933), + [sym__newline] = ACTIONS(2915), }, [STATE(1210)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2919), + [sym_identifier] = ACTIONS(2921), + [anon_sym_import] = ACTIONS(2921), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2937), + [sym__newline] = ACTIONS(2919), }, [STATE(1211)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2923), + [sym_identifier] = ACTIONS(2925), + [anon_sym_import] = ACTIONS(2925), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2941), + [sym__newline] = ACTIONS(2923), }, [STATE(1212)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2929), + [anon_sym_import] = ACTIONS(2929), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2945), + [sym__newline] = ACTIONS(2927), }, [STATE(1213)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2931), + [sym_identifier] = ACTIONS(2933), + [anon_sym_import] = ACTIONS(2933), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2949), + [sym__newline] = ACTIONS(2931), }, [STATE(1214)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2935), + [sym_identifier] = ACTIONS(2937), + [anon_sym_import] = ACTIONS(2937), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2953), + [sym__newline] = ACTIONS(2935), }, [STATE(1215)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2939), + [sym_identifier] = ACTIONS(2941), + [anon_sym_import] = ACTIONS(2941), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2957), + [sym__newline] = ACTIONS(2939), }, [STATE(1216)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2943), + [sym_identifier] = ACTIONS(2945), + [anon_sym_import] = ACTIONS(2945), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2961), + [sym__newline] = ACTIONS(2943), }, [STATE(1217)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2947), + [sym_identifier] = ACTIONS(2949), + [anon_sym_import] = ACTIONS(2949), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2965), + [sym__newline] = ACTIONS(2947), }, [STATE(1218)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2951), + [sym_identifier] = ACTIONS(2953), + [anon_sym_import] = ACTIONS(2953), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2969), + [sym__newline] = ACTIONS(2951), }, [STATE(1219)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2955), + [sym_identifier] = ACTIONS(2957), + [anon_sym_import] = ACTIONS(2957), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2973), + [sym__newline] = ACTIONS(2955), }, [STATE(1220)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2959), + [sym_identifier] = ACTIONS(2961), + [anon_sym_import] = ACTIONS(2961), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2977), + [sym__newline] = ACTIONS(2959), }, [STATE(1221)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2963), + [sym_identifier] = ACTIONS(2965), + [anon_sym_import] = ACTIONS(2965), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2981), + [sym__newline] = ACTIONS(2963), }, [STATE(1222)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2967), + [sym_identifier] = ACTIONS(2969), + [anon_sym_import] = ACTIONS(2969), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2985), + [sym__newline] = ACTIONS(2967), }, [STATE(1223)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2971), + [sym_identifier] = ACTIONS(2973), + [anon_sym_import] = ACTIONS(2973), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2989), + [sym__newline] = ACTIONS(2971), }, [STATE(1224)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2975), + [sym_identifier] = ACTIONS(2977), + [anon_sym_import] = ACTIONS(2977), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2993), + [sym__newline] = ACTIONS(2975), }, [STATE(1225)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2979), + [sym_identifier] = ACTIONS(2981), + [anon_sym_import] = ACTIONS(2981), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(2997), + [sym__newline] = ACTIONS(2979), }, [STATE(1226)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2983), + [sym_identifier] = ACTIONS(2985), + [anon_sym_import] = ACTIONS(2985), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3001), + [sym__newline] = ACTIONS(2983), }, [STATE(1227)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2987), + [sym_identifier] = ACTIONS(2989), + [anon_sym_import] = ACTIONS(2989), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3005), + [sym__newline] = ACTIONS(2987), }, [STATE(1228)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2991), + [sym_identifier] = ACTIONS(2993), + [anon_sym_import] = ACTIONS(2993), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3009), + [sym__newline] = ACTIONS(2991), }, [STATE(1229)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2995), + [sym_identifier] = ACTIONS(2997), + [anon_sym_import] = ACTIONS(2997), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3013), + [sym__newline] = ACTIONS(2995), }, [STATE(1230)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2999), + [sym_identifier] = ACTIONS(3001), + [anon_sym_import] = ACTIONS(3001), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3017), + [sym__newline] = ACTIONS(2999), }, [STATE(1231)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(3003), + [sym_identifier] = ACTIONS(3005), + [anon_sym_import] = ACTIONS(3005), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3021), + [sym__newline] = ACTIONS(3003), }, [STATE(1232)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(3007), + [sym_identifier] = ACTIONS(3009), + [anon_sym_import] = ACTIONS(3009), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3025), + [sym__newline] = ACTIONS(3007), }, [STATE(1233)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(3011), + [sym_identifier] = ACTIONS(3013), + [anon_sym_import] = ACTIONS(3013), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3029), + [sym__newline] = ACTIONS(3011), }, [STATE(1234)] = { - [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(3035), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3033), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_DOLLAR] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3033), - [anon_sym_void] = ACTIONS(3035), - [anon_sym_anyopaque] = ACTIONS(3035), - [anon_sym_bool] = ACTIONS(3035), - [anon_sym_int] = ACTIONS(3035), - [anon_sym_float] = ACTIONS(3035), - [anon_sym_range] = ACTIONS(3035), - [anon_sym_i8] = ACTIONS(3035), - [anon_sym_i16] = ACTIONS(3035), - [anon_sym_i32] = ACTIONS(3035), - [anon_sym_i64] = ACTIONS(3035), - [anon_sym_u8] = ACTIONS(3035), - [anon_sym_u16] = ACTIONS(3035), - [anon_sym_u32] = ACTIONS(3035), - [anon_sym_u64] = ACTIONS(3035), - [anon_sym_isize] = ACTIONS(3035), - [anon_sym_usize] = ACTIONS(3035), - [anon_sym_f32] = ACTIONS(3035), - [anon_sym_f64] = ACTIONS(3035), - [anon_sym_c_char] = ACTIONS(3035), - [anon_sym_c_schar] = ACTIONS(3035), - [anon_sym_c_uchar] = ACTIONS(3035), - [anon_sym_c_short] = ACTIONS(3035), - [anon_sym_c_ushort] = ACTIONS(3035), - [anon_sym_c_int] = ACTIONS(3035), - [anon_sym_c_uint] = ACTIONS(3035), - [anon_sym_c_long] = ACTIONS(3035), - [anon_sym_c_ulong] = ACTIONS(3035), - [anon_sym_c_longlong] = ACTIONS(3035), - [anon_sym_c_ulonglong] = ACTIONS(3035), - [anon_sym_c_float] = ACTIONS(3035), - [anon_sym_c_double] = ACTIONS(3035), - [anon_sym_c_longdouble] = ACTIONS(3035), - [anon_sym_return] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(3035), - [anon_sym_break] = ACTIONS(3035), - [anon_sym_continue] = ACTIONS(3035), - [anon_sym_defer] = ACTIONS(3035), - [anon_sym_errdefer] = ACTIONS(3035), - [anon_sym_if] = ACTIONS(3035), - [anon_sym_else] = ACTIONS(3035), - [anon_sym_while] = ACTIONS(3035), - [anon_sym_for] = ACTIONS(3035), - [anon_sym_match] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_try] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3033), - [anon_sym_true] = ACTIONS(3035), - [anon_sym_false] = ACTIONS(3035), - [sym_none] = ACTIONS(3035), - [sym_undefined] = ACTIONS(3035), - [sym_sink] = ACTIONS(3035), - [sym_integer] = ACTIONS(3035), - [sym_float] = ACTIONS(3033), - [anon_sym_DQUOTE] = ACTIONS(3033), - [sym_multiline_string] = ACTIONS(3033), - [sym_character] = ACTIONS(3033), + [ts_builtin_sym_end] = ACTIONS(3015), + [sym_identifier] = ACTIONS(3017), + [anon_sym_import] = ACTIONS(3017), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3033), + [sym__newline] = ACTIONS(3015), }, [STATE(1235)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(3019), + [sym_identifier] = ACTIONS(3021), + [anon_sym_import] = ACTIONS(3021), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3044), + [sym__newline] = ACTIONS(3019), }, [STATE(1236)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(3023), + [sym_identifier] = ACTIONS(3025), + [anon_sym_import] = ACTIONS(3025), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3053), + [sym__newline] = ACTIONS(3023), }, [STATE(1237)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(3027), + [sym_identifier] = ACTIONS(3029), + [anon_sym_import] = ACTIONS(3029), + [anon_sym_hide] = 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), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3062), + [sym__newline] = ACTIONS(3027), }, [STATE(1238)] = { - [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), + [ts_builtin_sym_end] = ACTIONS(3031), + [sym_identifier] = ACTIONS(3033), + [anon_sym_import] = ACTIONS(3033), + [anon_sym_hide] = ACTIONS(3033), + [anon_sym_func] = ACTIONS(3033), + [anon_sym_BANG] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_LPAREN] = ACTIONS(3031), + [anon_sym_RPAREN] = ACTIONS(3031), + [anon_sym_LBRACE] = ACTIONS(3031), + [anon_sym_RBRACE] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_DOLLAR] = ACTIONS(3031), + [anon_sym_LBRACK] = ACTIONS(3031), + [anon_sym_void] = ACTIONS(3033), + [anon_sym_anyopaque] = ACTIONS(3033), + [anon_sym_bool] = ACTIONS(3033), + [anon_sym_int] = ACTIONS(3033), + [anon_sym_float] = ACTIONS(3033), + [anon_sym_range] = ACTIONS(3033), + [anon_sym_i8] = ACTIONS(3033), + [anon_sym_i16] = ACTIONS(3033), + [anon_sym_i32] = ACTIONS(3033), + [anon_sym_i64] = ACTIONS(3033), + [anon_sym_u8] = ACTIONS(3033), + [anon_sym_u16] = ACTIONS(3033), + [anon_sym_u32] = ACTIONS(3033), + [anon_sym_u64] = ACTIONS(3033), + [anon_sym_isize] = ACTIONS(3033), + [anon_sym_usize] = ACTIONS(3033), + [anon_sym_f32] = ACTIONS(3033), + [anon_sym_f64] = ACTIONS(3033), + [anon_sym_c_char] = ACTIONS(3033), + [anon_sym_c_schar] = ACTIONS(3033), + [anon_sym_c_uchar] = ACTIONS(3033), + [anon_sym_c_short] = ACTIONS(3033), + [anon_sym_c_ushort] = ACTIONS(3033), + [anon_sym_c_int] = ACTIONS(3033), + [anon_sym_c_uint] = ACTIONS(3033), + [anon_sym_c_long] = ACTIONS(3033), + [anon_sym_c_ulong] = ACTIONS(3033), + [anon_sym_c_longlong] = ACTIONS(3033), + [anon_sym_c_ulonglong] = ACTIONS(3033), + [anon_sym_c_float] = ACTIONS(3033), + [anon_sym_c_double] = ACTIONS(3033), + [anon_sym_c_longdouble] = ACTIONS(3033), + [anon_sym_return] = ACTIONS(3033), + [anon_sym_yield] = ACTIONS(3033), + [anon_sym_break] = ACTIONS(3033), + [anon_sym_continue] = ACTIONS(3033), + [anon_sym_defer] = ACTIONS(3033), + [anon_sym_errdefer] = ACTIONS(3033), + [anon_sym_if] = ACTIONS(3033), + [anon_sym_else] = ACTIONS(3033), + [anon_sym_while] = ACTIONS(3033), + [anon_sym_for] = ACTIONS(3033), + [anon_sym_match] = ACTIONS(3033), + [anon_sym_AMP] = ACTIONS(3031), + [anon_sym_try] = ACTIONS(3033), + [anon_sym_DOT] = ACTIONS(3031), + [anon_sym_true] = ACTIONS(3033), + [anon_sym_false] = ACTIONS(3033), + [sym_none] = ACTIONS(3033), + [sym_undefined] = ACTIONS(3033), + [sym_sink] = ACTIONS(3033), + [sym_integer] = ACTIONS(3033), + [sym_float] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(3031), + [sym_multiline_string] = ACTIONS(3031), + [sym_character] = ACTIONS(3031), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3071), + [sym__newline] = ACTIONS(3031), }, [STATE(1239)] = { - [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(3080), - }, - [STATE(1240)] = { - [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(3089), - }, - [STATE(1241)] = { - [aux_sym_import_declaration_repeat1] = STATE(1964), + [ts_builtin_sym_end] = ACTIONS(3035), [sym_identifier] = ACTIONS(3037), + [anon_sym_import] = ACTIONS(3037), + [anon_sym_hide] = ACTIONS(3037), [anon_sym_func] = ACTIONS(3037), - [anon_sym_BANG] = ACTIONS(3039), + [anon_sym_BANG] = ACTIONS(3035), [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_LPAREN] = ACTIONS(3035), + [anon_sym_RPAREN] = ACTIONS(3035), + [anon_sym_LBRACE] = ACTIONS(3035), + [anon_sym_RBRACE] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3035), + [anon_sym_DOLLAR] = ACTIONS(3035), + [anon_sym_LBRACK] = ACTIONS(3035), [anon_sym_void] = ACTIONS(3037), [anon_sym_anyopaque] = ACTIONS(3037), [anon_sym_bool] = ACTIONS(3037), @@ -122816,720 +123476,1439 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_defer] = ACTIONS(3037), [anon_sym_errdefer] = ACTIONS(3037), [anon_sym_if] = ACTIONS(3037), - [anon_sym_else] = ACTIONS(3092), + [anon_sym_else] = ACTIONS(3037), [anon_sym_while] = ACTIONS(3037), [anon_sym_for] = ACTIONS(3037), [anon_sym_match] = ACTIONS(3037), - [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_AMP] = ACTIONS(3035), [anon_sym_try] = ACTIONS(3037), - [anon_sym_DOT] = ACTIONS(3039), + [anon_sym_DOT] = ACTIONS(3035), [anon_sym_true] = ACTIONS(3037), [anon_sym_false] = ACTIONS(3037), [sym_none] = ACTIONS(3037), [sym_undefined] = ACTIONS(3037), [sym_sink] = ACTIONS(3037), [sym_integer] = ACTIONS(3037), + [sym_float] = ACTIONS(3035), + [anon_sym_DQUOTE] = ACTIONS(3035), + [sym_multiline_string] = ACTIONS(3035), + [sym_character] = ACTIONS(3035), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3035), + }, + [STATE(1240)] = { + [ts_builtin_sym_end] = ACTIONS(3039), + [sym_identifier] = ACTIONS(3041), + [anon_sym_import] = ACTIONS(3041), + [anon_sym_hide] = ACTIONS(3041), + [anon_sym_func] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3039), + [anon_sym_struct] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(3039), + [anon_sym_RPAREN] = 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(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(3041), + [anon_sym_while] = ACTIONS(3041), + [anon_sym_for] = ACTIONS(3041), + [anon_sym_match] = ACTIONS(3041), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_try] = ACTIONS(3041), + [anon_sym_DOT] = ACTIONS(3039), + [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(3039), [anon_sym_DQUOTE] = ACTIONS(3039), [sym_multiline_string] = ACTIONS(3039), [sym_character] = ACTIONS(3039), [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3039), + }, + [STATE(1241)] = { + [ts_builtin_sym_end] = ACTIONS(3043), + [sym_identifier] = ACTIONS(3045), + [anon_sym_import] = ACTIONS(3045), + [anon_sym_hide] = ACTIONS(3045), + [anon_sym_func] = ACTIONS(3045), + [anon_sym_BANG] = ACTIONS(3043), + [anon_sym_struct] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(3043), + [anon_sym_RPAREN] = 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(3045), + [anon_sym_anyopaque] = ACTIONS(3045), + [anon_sym_bool] = ACTIONS(3045), + [anon_sym_int] = ACTIONS(3045), + [anon_sym_float] = ACTIONS(3045), + [anon_sym_range] = ACTIONS(3045), + [anon_sym_i8] = ACTIONS(3045), + [anon_sym_i16] = ACTIONS(3045), + [anon_sym_i32] = ACTIONS(3045), + [anon_sym_i64] = ACTIONS(3045), + [anon_sym_u8] = ACTIONS(3045), + [anon_sym_u16] = ACTIONS(3045), + [anon_sym_u32] = ACTIONS(3045), + [anon_sym_u64] = ACTIONS(3045), + [anon_sym_isize] = ACTIONS(3045), + [anon_sym_usize] = ACTIONS(3045), + [anon_sym_f32] = ACTIONS(3045), + [anon_sym_f64] = ACTIONS(3045), + [anon_sym_c_char] = ACTIONS(3045), + [anon_sym_c_schar] = ACTIONS(3045), + [anon_sym_c_uchar] = ACTIONS(3045), + [anon_sym_c_short] = ACTIONS(3045), + [anon_sym_c_ushort] = ACTIONS(3045), + [anon_sym_c_int] = ACTIONS(3045), + [anon_sym_c_uint] = ACTIONS(3045), + [anon_sym_c_long] = ACTIONS(3045), + [anon_sym_c_ulong] = ACTIONS(3045), + [anon_sym_c_longlong] = ACTIONS(3045), + [anon_sym_c_ulonglong] = ACTIONS(3045), + [anon_sym_c_float] = ACTIONS(3045), + [anon_sym_c_double] = ACTIONS(3045), + [anon_sym_c_longdouble] = ACTIONS(3045), + [anon_sym_return] = ACTIONS(3045), + [anon_sym_yield] = ACTIONS(3045), + [anon_sym_break] = ACTIONS(3045), + [anon_sym_continue] = ACTIONS(3045), + [anon_sym_defer] = ACTIONS(3045), + [anon_sym_errdefer] = ACTIONS(3045), + [anon_sym_if] = ACTIONS(3045), + [anon_sym_else] = ACTIONS(3045), + [anon_sym_while] = ACTIONS(3045), + [anon_sym_for] = ACTIONS(3045), + [anon_sym_match] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3045), + [anon_sym_DOT] = ACTIONS(3043), + [anon_sym_true] = ACTIONS(3045), + [anon_sym_false] = ACTIONS(3045), + [sym_none] = ACTIONS(3045), + [sym_undefined] = ACTIONS(3045), + [sym_sink] = ACTIONS(3045), + [sym_integer] = ACTIONS(3045), + [sym_float] = ACTIONS(3043), + [anon_sym_DQUOTE] = ACTIONS(3043), + [sym_multiline_string] = ACTIONS(3043), + [sym_character] = ACTIONS(3043), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3043), + }, + [STATE(1242)] = { + [ts_builtin_sym_end] = ACTIONS(3047), + [sym_identifier] = ACTIONS(3049), + [anon_sym_import] = ACTIONS(3049), + [anon_sym_hide] = ACTIONS(3049), + [anon_sym_func] = ACTIONS(3049), + [anon_sym_BANG] = ACTIONS(3047), + [anon_sym_struct] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(3047), + [anon_sym_RPAREN] = ACTIONS(3047), + [anon_sym_LBRACE] = ACTIONS(3047), + [anon_sym_RBRACE] = ACTIONS(3047), + [anon_sym_DASH] = ACTIONS(3047), + [anon_sym_DOLLAR] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(3047), + [anon_sym_void] = ACTIONS(3049), + [anon_sym_anyopaque] = ACTIONS(3049), + [anon_sym_bool] = ACTIONS(3049), + [anon_sym_int] = ACTIONS(3049), + [anon_sym_float] = ACTIONS(3049), + [anon_sym_range] = ACTIONS(3049), + [anon_sym_i8] = ACTIONS(3049), + [anon_sym_i16] = ACTIONS(3049), + [anon_sym_i32] = ACTIONS(3049), + [anon_sym_i64] = ACTIONS(3049), + [anon_sym_u8] = ACTIONS(3049), + [anon_sym_u16] = ACTIONS(3049), + [anon_sym_u32] = ACTIONS(3049), + [anon_sym_u64] = ACTIONS(3049), + [anon_sym_isize] = ACTIONS(3049), + [anon_sym_usize] = ACTIONS(3049), + [anon_sym_f32] = ACTIONS(3049), + [anon_sym_f64] = ACTIONS(3049), + [anon_sym_c_char] = ACTIONS(3049), + [anon_sym_c_schar] = ACTIONS(3049), + [anon_sym_c_uchar] = ACTIONS(3049), + [anon_sym_c_short] = ACTIONS(3049), + [anon_sym_c_ushort] = ACTIONS(3049), + [anon_sym_c_int] = ACTIONS(3049), + [anon_sym_c_uint] = ACTIONS(3049), + [anon_sym_c_long] = ACTIONS(3049), + [anon_sym_c_ulong] = ACTIONS(3049), + [anon_sym_c_longlong] = ACTIONS(3049), + [anon_sym_c_ulonglong] = ACTIONS(3049), + [anon_sym_c_float] = ACTIONS(3049), + [anon_sym_c_double] = ACTIONS(3049), + [anon_sym_c_longdouble] = ACTIONS(3049), + [anon_sym_return] = ACTIONS(3049), + [anon_sym_yield] = ACTIONS(3049), + [anon_sym_break] = ACTIONS(3049), + [anon_sym_continue] = ACTIONS(3049), + [anon_sym_defer] = ACTIONS(3049), + [anon_sym_errdefer] = ACTIONS(3049), + [anon_sym_if] = ACTIONS(3049), + [anon_sym_else] = ACTIONS(3049), + [anon_sym_while] = ACTIONS(3049), + [anon_sym_for] = ACTIONS(3049), + [anon_sym_match] = ACTIONS(3049), + [anon_sym_AMP] = ACTIONS(3047), + [anon_sym_try] = ACTIONS(3049), + [anon_sym_DOT] = ACTIONS(3047), + [anon_sym_true] = ACTIONS(3049), + [anon_sym_false] = ACTIONS(3049), + [sym_none] = ACTIONS(3049), + [sym_undefined] = ACTIONS(3049), + [sym_sink] = ACTIONS(3049), + [sym_integer] = ACTIONS(3049), + [sym_float] = ACTIONS(3047), + [anon_sym_DQUOTE] = ACTIONS(3047), + [sym_multiline_string] = ACTIONS(3047), + [sym_character] = ACTIONS(3047), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3047), + }, + [STATE(1243)] = { + [aux_sym_import_declaration_repeat1] = STATE(2007), + [sym_identifier] = ACTIONS(3051), + [anon_sym_func] = ACTIONS(3051), + [anon_sym_BANG] = ACTIONS(3053), + [anon_sym_struct] = ACTIONS(3051), + [anon_sym_LPAREN] = ACTIONS(3053), + [anon_sym_LBRACE] = ACTIONS(3053), + [anon_sym_RBRACE] = ACTIONS(3053), + [anon_sym_DASH] = ACTIONS(3053), + [anon_sym_DOLLAR] = ACTIONS(3053), + [anon_sym_LBRACK] = ACTIONS(3053), + [anon_sym_void] = ACTIONS(3051), + [anon_sym_anyopaque] = ACTIONS(3051), + [anon_sym_bool] = ACTIONS(3051), + [anon_sym_int] = ACTIONS(3051), + [anon_sym_float] = ACTIONS(3051), + [anon_sym_range] = ACTIONS(3051), + [anon_sym_i8] = ACTIONS(3051), + [anon_sym_i16] = ACTIONS(3051), + [anon_sym_i32] = ACTIONS(3051), + [anon_sym_i64] = ACTIONS(3051), + [anon_sym_u8] = ACTIONS(3051), + [anon_sym_u16] = ACTIONS(3051), + [anon_sym_u32] = ACTIONS(3051), + [anon_sym_u64] = ACTIONS(3051), + [anon_sym_isize] = ACTIONS(3051), + [anon_sym_usize] = ACTIONS(3051), + [anon_sym_f32] = ACTIONS(3051), + [anon_sym_f64] = ACTIONS(3051), + [anon_sym_c_char] = ACTIONS(3051), + [anon_sym_c_schar] = ACTIONS(3051), + [anon_sym_c_uchar] = ACTIONS(3051), + [anon_sym_c_short] = ACTIONS(3051), + [anon_sym_c_ushort] = ACTIONS(3051), + [anon_sym_c_int] = ACTIONS(3051), + [anon_sym_c_uint] = ACTIONS(3051), + [anon_sym_c_long] = ACTIONS(3051), + [anon_sym_c_ulong] = ACTIONS(3051), + [anon_sym_c_longlong] = ACTIONS(3051), + [anon_sym_c_ulonglong] = ACTIONS(3051), + [anon_sym_c_float] = ACTIONS(3051), + [anon_sym_c_double] = ACTIONS(3051), + [anon_sym_c_longdouble] = ACTIONS(3051), + [anon_sym_return] = ACTIONS(3051), + [anon_sym_yield] = ACTIONS(3051), + [anon_sym_break] = ACTIONS(3051), + [anon_sym_continue] = ACTIONS(3051), + [anon_sym_defer] = ACTIONS(3051), + [anon_sym_errdefer] = ACTIONS(3051), + [anon_sym_if] = ACTIONS(3051), + [anon_sym_else] = ACTIONS(3055), + [anon_sym_while] = ACTIONS(3051), + [anon_sym_for] = ACTIONS(3051), + [anon_sym_match] = ACTIONS(3051), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_try] = ACTIONS(3051), + [anon_sym_DOT] = ACTIONS(3053), + [anon_sym_true] = ACTIONS(3051), + [anon_sym_false] = ACTIONS(3051), + [sym_none] = ACTIONS(3051), + [sym_undefined] = ACTIONS(3051), + [sym_sink] = ACTIONS(3051), + [sym_integer] = ACTIONS(3051), + [sym_float] = ACTIONS(3053), + [anon_sym_DQUOTE] = ACTIONS(3053), + [sym_multiline_string] = ACTIONS(3053), + [sym_character] = ACTIONS(3053), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3057), + }, + [STATE(1244)] = { + [aux_sym_import_declaration_repeat1] = STATE(1988), + [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), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3066), + }, + [STATE(1245)] = { + [aux_sym_import_declaration_repeat1] = STATE(2028), + [sym_identifier] = ACTIONS(3069), + [anon_sym_func] = ACTIONS(3069), + [anon_sym_BANG] = ACTIONS(3071), + [anon_sym_struct] = ACTIONS(3069), + [anon_sym_LPAREN] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3071), + [anon_sym_RBRACE] = ACTIONS(3071), + [anon_sym_DASH] = ACTIONS(3071), + [anon_sym_DOLLAR] = ACTIONS(3071), + [anon_sym_LBRACK] = ACTIONS(3071), + [anon_sym_void] = ACTIONS(3069), + [anon_sym_anyopaque] = ACTIONS(3069), + [anon_sym_bool] = ACTIONS(3069), + [anon_sym_int] = ACTIONS(3069), + [anon_sym_float] = ACTIONS(3069), + [anon_sym_range] = ACTIONS(3069), + [anon_sym_i8] = ACTIONS(3069), + [anon_sym_i16] = ACTIONS(3069), + [anon_sym_i32] = ACTIONS(3069), + [anon_sym_i64] = ACTIONS(3069), + [anon_sym_u8] = ACTIONS(3069), + [anon_sym_u16] = ACTIONS(3069), + [anon_sym_u32] = ACTIONS(3069), + [anon_sym_u64] = ACTIONS(3069), + [anon_sym_isize] = ACTIONS(3069), + [anon_sym_usize] = ACTIONS(3069), + [anon_sym_f32] = ACTIONS(3069), + [anon_sym_f64] = ACTIONS(3069), + [anon_sym_c_char] = ACTIONS(3069), + [anon_sym_c_schar] = ACTIONS(3069), + [anon_sym_c_uchar] = ACTIONS(3069), + [anon_sym_c_short] = ACTIONS(3069), + [anon_sym_c_ushort] = ACTIONS(3069), + [anon_sym_c_int] = ACTIONS(3069), + [anon_sym_c_uint] = ACTIONS(3069), + [anon_sym_c_long] = ACTIONS(3069), + [anon_sym_c_ulong] = ACTIONS(3069), + [anon_sym_c_longlong] = ACTIONS(3069), + [anon_sym_c_ulonglong] = ACTIONS(3069), + [anon_sym_c_float] = ACTIONS(3069), + [anon_sym_c_double] = ACTIONS(3069), + [anon_sym_c_longdouble] = ACTIONS(3069), + [anon_sym_return] = ACTIONS(3069), + [anon_sym_yield] = ACTIONS(3069), + [anon_sym_break] = ACTIONS(3069), + [anon_sym_continue] = ACTIONS(3069), + [anon_sym_defer] = ACTIONS(3069), + [anon_sym_errdefer] = ACTIONS(3069), + [anon_sym_if] = ACTIONS(3069), + [anon_sym_else] = ACTIONS(3073), + [anon_sym_while] = ACTIONS(3069), + [anon_sym_for] = ACTIONS(3069), + [anon_sym_match] = ACTIONS(3069), + [anon_sym_AMP] = ACTIONS(3071), + [anon_sym_try] = ACTIONS(3069), + [anon_sym_DOT] = ACTIONS(3071), + [anon_sym_true] = ACTIONS(3069), + [anon_sym_false] = ACTIONS(3069), + [sym_none] = ACTIONS(3069), + [sym_undefined] = ACTIONS(3069), + [sym_sink] = ACTIONS(3069), + [sym_integer] = ACTIONS(3069), + [sym_float] = ACTIONS(3071), + [anon_sym_DQUOTE] = ACTIONS(3071), + [sym_multiline_string] = ACTIONS(3071), + [sym_character] = ACTIONS(3071), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3076), + }, + [STATE(1246)] = { + [aux_sym_import_declaration_repeat1] = STATE(1975), + [sym_identifier] = ACTIONS(3079), + [anon_sym_func] = ACTIONS(3079), + [anon_sym_BANG] = ACTIONS(3081), + [anon_sym_struct] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_RBRACE] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3081), + [anon_sym_DOLLAR] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_void] = ACTIONS(3079), + [anon_sym_anyopaque] = ACTIONS(3079), + [anon_sym_bool] = ACTIONS(3079), + [anon_sym_int] = ACTIONS(3079), + [anon_sym_float] = ACTIONS(3079), + [anon_sym_range] = ACTIONS(3079), + [anon_sym_i8] = ACTIONS(3079), + [anon_sym_i16] = ACTIONS(3079), + [anon_sym_i32] = ACTIONS(3079), + [anon_sym_i64] = ACTIONS(3079), + [anon_sym_u8] = ACTIONS(3079), + [anon_sym_u16] = ACTIONS(3079), + [anon_sym_u32] = ACTIONS(3079), + [anon_sym_u64] = ACTIONS(3079), + [anon_sym_isize] = ACTIONS(3079), + [anon_sym_usize] = ACTIONS(3079), + [anon_sym_f32] = ACTIONS(3079), + [anon_sym_f64] = ACTIONS(3079), + [anon_sym_c_char] = ACTIONS(3079), + [anon_sym_c_schar] = ACTIONS(3079), + [anon_sym_c_uchar] = ACTIONS(3079), + [anon_sym_c_short] = ACTIONS(3079), + [anon_sym_c_ushort] = ACTIONS(3079), + [anon_sym_c_int] = ACTIONS(3079), + [anon_sym_c_uint] = ACTIONS(3079), + [anon_sym_c_long] = ACTIONS(3079), + [anon_sym_c_ulong] = ACTIONS(3079), + [anon_sym_c_longlong] = ACTIONS(3079), + [anon_sym_c_ulonglong] = ACTIONS(3079), + [anon_sym_c_float] = ACTIONS(3079), + [anon_sym_c_double] = ACTIONS(3079), + [anon_sym_c_longdouble] = ACTIONS(3079), + [anon_sym_return] = ACTIONS(3079), + [anon_sym_yield] = ACTIONS(3079), + [anon_sym_break] = ACTIONS(3079), + [anon_sym_continue] = ACTIONS(3079), + [anon_sym_defer] = ACTIONS(3079), + [anon_sym_errdefer] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(3083), + [anon_sym_while] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3079), + [anon_sym_match] = ACTIONS(3079), + [anon_sym_AMP] = ACTIONS(3081), + [anon_sym_try] = ACTIONS(3079), + [anon_sym_DOT] = ACTIONS(3081), + [anon_sym_true] = ACTIONS(3079), + [anon_sym_false] = ACTIONS(3079), + [sym_none] = ACTIONS(3079), + [sym_undefined] = ACTIONS(3079), + [sym_sink] = ACTIONS(3079), + [sym_integer] = ACTIONS(3079), + [sym_float] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [sym_multiline_string] = ACTIONS(3081), + [sym_character] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3085), + }, + [STATE(1247)] = { + [aux_sym_import_declaration_repeat1] = STATE(1982), + [sym_identifier] = ACTIONS(3088), + [anon_sym_func] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_struct] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_DOLLAR] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3090), + [anon_sym_void] = ACTIONS(3088), + [anon_sym_anyopaque] = ACTIONS(3088), + [anon_sym_bool] = ACTIONS(3088), + [anon_sym_int] = ACTIONS(3088), + [anon_sym_float] = ACTIONS(3088), + [anon_sym_range] = ACTIONS(3088), + [anon_sym_i8] = ACTIONS(3088), + [anon_sym_i16] = ACTIONS(3088), + [anon_sym_i32] = ACTIONS(3088), + [anon_sym_i64] = ACTIONS(3088), + [anon_sym_u8] = ACTIONS(3088), + [anon_sym_u16] = ACTIONS(3088), + [anon_sym_u32] = ACTIONS(3088), + [anon_sym_u64] = ACTIONS(3088), + [anon_sym_isize] = ACTIONS(3088), + [anon_sym_usize] = ACTIONS(3088), + [anon_sym_f32] = ACTIONS(3088), + [anon_sym_f64] = ACTIONS(3088), + [anon_sym_c_char] = ACTIONS(3088), + [anon_sym_c_schar] = ACTIONS(3088), + [anon_sym_c_uchar] = ACTIONS(3088), + [anon_sym_c_short] = ACTIONS(3088), + [anon_sym_c_ushort] = ACTIONS(3088), + [anon_sym_c_int] = ACTIONS(3088), + [anon_sym_c_uint] = ACTIONS(3088), + [anon_sym_c_long] = ACTIONS(3088), + [anon_sym_c_ulong] = ACTIONS(3088), + [anon_sym_c_longlong] = ACTIONS(3088), + [anon_sym_c_ulonglong] = ACTIONS(3088), + [anon_sym_c_float] = ACTIONS(3088), + [anon_sym_c_double] = ACTIONS(3088), + [anon_sym_c_longdouble] = ACTIONS(3088), + [anon_sym_return] = ACTIONS(3088), + [anon_sym_yield] = ACTIONS(3088), + [anon_sym_break] = ACTIONS(3088), + [anon_sym_continue] = ACTIONS(3088), + [anon_sym_defer] = ACTIONS(3088), + [anon_sym_errdefer] = ACTIONS(3088), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_else] = ACTIONS(3092), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_for] = ACTIONS(3088), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_AMP] = ACTIONS(3090), + [anon_sym_try] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3088), + [anon_sym_false] = ACTIONS(3088), + [sym_none] = ACTIONS(3088), + [sym_undefined] = ACTIONS(3088), + [sym_sink] = ACTIONS(3088), + [sym_integer] = ACTIONS(3088), + [sym_float] = ACTIONS(3090), + [anon_sym_DQUOTE] = ACTIONS(3090), + [sym_multiline_string] = ACTIONS(3090), + [sym_character] = ACTIONS(3090), + [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(3094), }, - [STATE(1242)] = { - [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(3100), - }, - [STATE(1243)] = { - [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(3106), - }, - [STATE(1244)] = { - [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(3112), - }, - [STATE(1245)] = { - [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)] = { - [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(3124), - }, - [STATE(1247)] = { - [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(3129), - }, [STATE(1248)] = { - [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), + [aux_sym_import_declaration_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(3069), + [anon_sym_func] = ACTIONS(3069), + [anon_sym_BANG] = ACTIONS(3071), + [anon_sym_struct] = ACTIONS(3069), + [anon_sym_LPAREN] = ACTIONS(3071), + [anon_sym_LBRACE] = ACTIONS(3071), + [anon_sym_RBRACE] = ACTIONS(3071), + [anon_sym_DASH] = ACTIONS(3071), + [anon_sym_DOLLAR] = ACTIONS(3071), + [anon_sym_LBRACK] = ACTIONS(3071), + [anon_sym_void] = ACTIONS(3069), + [anon_sym_anyopaque] = ACTIONS(3069), + [anon_sym_bool] = ACTIONS(3069), + [anon_sym_int] = ACTIONS(3069), + [anon_sym_float] = ACTIONS(3069), + [anon_sym_range] = ACTIONS(3069), + [anon_sym_i8] = ACTIONS(3069), + [anon_sym_i16] = ACTIONS(3069), + [anon_sym_i32] = ACTIONS(3069), + [anon_sym_i64] = ACTIONS(3069), + [anon_sym_u8] = ACTIONS(3069), + [anon_sym_u16] = ACTIONS(3069), + [anon_sym_u32] = ACTIONS(3069), + [anon_sym_u64] = ACTIONS(3069), + [anon_sym_isize] = ACTIONS(3069), + [anon_sym_usize] = ACTIONS(3069), + [anon_sym_f32] = ACTIONS(3069), + [anon_sym_f64] = ACTIONS(3069), + [anon_sym_c_char] = ACTIONS(3069), + [anon_sym_c_schar] = ACTIONS(3069), + [anon_sym_c_uchar] = ACTIONS(3069), + [anon_sym_c_short] = ACTIONS(3069), + [anon_sym_c_ushort] = ACTIONS(3069), + [anon_sym_c_int] = ACTIONS(3069), + [anon_sym_c_uint] = ACTIONS(3069), + [anon_sym_c_long] = ACTIONS(3069), + [anon_sym_c_ulong] = ACTIONS(3069), + [anon_sym_c_longlong] = ACTIONS(3069), + [anon_sym_c_ulonglong] = ACTIONS(3069), + [anon_sym_c_float] = ACTIONS(3069), + [anon_sym_c_double] = ACTIONS(3069), + [anon_sym_c_longdouble] = ACTIONS(3069), + [anon_sym_return] = ACTIONS(3069), + [anon_sym_yield] = ACTIONS(3069), + [anon_sym_break] = ACTIONS(3069), + [anon_sym_continue] = ACTIONS(3069), + [anon_sym_defer] = ACTIONS(3069), + [anon_sym_errdefer] = ACTIONS(3069), + [anon_sym_if] = ACTIONS(3069), + [anon_sym_else] = ACTIONS(3097), + [anon_sym_while] = ACTIONS(3069), + [anon_sym_for] = ACTIONS(3069), + [anon_sym_match] = ACTIONS(3069), + [anon_sym_AMP] = ACTIONS(3071), + [anon_sym_try] = ACTIONS(3069), + [anon_sym_DOT] = ACTIONS(3071), + [anon_sym_true] = ACTIONS(3069), + [anon_sym_false] = ACTIONS(3069), + [sym_none] = ACTIONS(3069), + [sym_undefined] = ACTIONS(3069), + [sym_sink] = ACTIONS(3069), + [sym_integer] = ACTIONS(3069), + [sym_float] = ACTIONS(3071), + [anon_sym_DQUOTE] = ACTIONS(3071), + [sym_multiline_string] = ACTIONS(3071), + [sym_character] = ACTIONS(3071), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3133), + [sym__newline] = ACTIONS(3099), }, [STATE(1249)] = { - [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), + [aux_sym_import_declaration_repeat1] = STATE(1965), + [sym_identifier] = ACTIONS(3102), + [anon_sym_func] = ACTIONS(3102), + [anon_sym_BANG] = ACTIONS(3104), + [anon_sym_struct] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3104), + [anon_sym_RBRACE] = ACTIONS(3104), + [anon_sym_DASH] = ACTIONS(3104), + [anon_sym_DOLLAR] = ACTIONS(3104), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_void] = ACTIONS(3102), + [anon_sym_anyopaque] = ACTIONS(3102), + [anon_sym_bool] = ACTIONS(3102), + [anon_sym_int] = ACTIONS(3102), + [anon_sym_float] = ACTIONS(3102), + [anon_sym_range] = ACTIONS(3102), + [anon_sym_i8] = ACTIONS(3102), + [anon_sym_i16] = ACTIONS(3102), + [anon_sym_i32] = ACTIONS(3102), + [anon_sym_i64] = ACTIONS(3102), + [anon_sym_u8] = ACTIONS(3102), + [anon_sym_u16] = ACTIONS(3102), + [anon_sym_u32] = ACTIONS(3102), + [anon_sym_u64] = ACTIONS(3102), + [anon_sym_isize] = ACTIONS(3102), + [anon_sym_usize] = ACTIONS(3102), + [anon_sym_f32] = ACTIONS(3102), + [anon_sym_f64] = ACTIONS(3102), + [anon_sym_c_char] = ACTIONS(3102), + [anon_sym_c_schar] = ACTIONS(3102), + [anon_sym_c_uchar] = ACTIONS(3102), + [anon_sym_c_short] = ACTIONS(3102), + [anon_sym_c_ushort] = ACTIONS(3102), + [anon_sym_c_int] = ACTIONS(3102), + [anon_sym_c_uint] = ACTIONS(3102), + [anon_sym_c_long] = ACTIONS(3102), + [anon_sym_c_ulong] = ACTIONS(3102), + [anon_sym_c_longlong] = ACTIONS(3102), + [anon_sym_c_ulonglong] = ACTIONS(3102), + [anon_sym_c_float] = ACTIONS(3102), + [anon_sym_c_double] = ACTIONS(3102), + [anon_sym_c_longdouble] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_yield] = ACTIONS(3102), + [anon_sym_break] = ACTIONS(3102), + [anon_sym_continue] = ACTIONS(3102), + [anon_sym_defer] = ACTIONS(3102), + [anon_sym_errdefer] = ACTIONS(3102), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3106), + [anon_sym_while] = ACTIONS(3102), + [anon_sym_for] = ACTIONS(3102), + [anon_sym_match] = ACTIONS(3102), + [anon_sym_AMP] = ACTIONS(3104), + [anon_sym_try] = ACTIONS(3102), + [anon_sym_DOT] = ACTIONS(3104), + [anon_sym_true] = ACTIONS(3102), + [anon_sym_false] = ACTIONS(3102), + [sym_none] = ACTIONS(3102), + [sym_undefined] = ACTIONS(3102), + [sym_sink] = ACTIONS(3102), + [sym_integer] = ACTIONS(3102), + [sym_float] = ACTIONS(3104), + [anon_sym_DQUOTE] = ACTIONS(3104), + [sym_multiline_string] = ACTIONS(3104), + [sym_character] = ACTIONS(3104), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3137), + [sym__newline] = ACTIONS(3108), }, [STATE(1250)] = { - [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), + [aux_sym_import_declaration_repeat1] = STATE(2025), + [sym_identifier] = ACTIONS(3102), + [anon_sym_func] = ACTIONS(3102), + [anon_sym_BANG] = ACTIONS(3104), + [anon_sym_struct] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3104), + [anon_sym_RBRACE] = ACTIONS(3104), + [anon_sym_DASH] = ACTIONS(3104), + [anon_sym_DOLLAR] = ACTIONS(3104), + [anon_sym_LBRACK] = ACTIONS(3104), + [anon_sym_void] = ACTIONS(3102), + [anon_sym_anyopaque] = ACTIONS(3102), + [anon_sym_bool] = ACTIONS(3102), + [anon_sym_int] = ACTIONS(3102), + [anon_sym_float] = ACTIONS(3102), + [anon_sym_range] = ACTIONS(3102), + [anon_sym_i8] = ACTIONS(3102), + [anon_sym_i16] = ACTIONS(3102), + [anon_sym_i32] = ACTIONS(3102), + [anon_sym_i64] = ACTIONS(3102), + [anon_sym_u8] = ACTIONS(3102), + [anon_sym_u16] = ACTIONS(3102), + [anon_sym_u32] = ACTIONS(3102), + [anon_sym_u64] = ACTIONS(3102), + [anon_sym_isize] = ACTIONS(3102), + [anon_sym_usize] = ACTIONS(3102), + [anon_sym_f32] = ACTIONS(3102), + [anon_sym_f64] = ACTIONS(3102), + [anon_sym_c_char] = ACTIONS(3102), + [anon_sym_c_schar] = ACTIONS(3102), + [anon_sym_c_uchar] = ACTIONS(3102), + [anon_sym_c_short] = ACTIONS(3102), + [anon_sym_c_ushort] = ACTIONS(3102), + [anon_sym_c_int] = ACTIONS(3102), + [anon_sym_c_uint] = ACTIONS(3102), + [anon_sym_c_long] = ACTIONS(3102), + [anon_sym_c_ulong] = ACTIONS(3102), + [anon_sym_c_longlong] = ACTIONS(3102), + [anon_sym_c_ulonglong] = ACTIONS(3102), + [anon_sym_c_float] = ACTIONS(3102), + [anon_sym_c_double] = ACTIONS(3102), + [anon_sym_c_longdouble] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_yield] = ACTIONS(3102), + [anon_sym_break] = ACTIONS(3102), + [anon_sym_continue] = ACTIONS(3102), + [anon_sym_defer] = ACTIONS(3102), + [anon_sym_errdefer] = ACTIONS(3102), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_while] = ACTIONS(3102), + [anon_sym_for] = ACTIONS(3102), + [anon_sym_match] = ACTIONS(3102), + [anon_sym_AMP] = ACTIONS(3104), + [anon_sym_try] = ACTIONS(3102), + [anon_sym_DOT] = ACTIONS(3104), + [anon_sym_true] = ACTIONS(3102), + [anon_sym_false] = ACTIONS(3102), + [sym_none] = ACTIONS(3102), + [sym_undefined] = ACTIONS(3102), + [sym_sink] = ACTIONS(3102), + [sym_integer] = ACTIONS(3102), + [sym_float] = ACTIONS(3104), + [anon_sym_DQUOTE] = ACTIONS(3104), + [sym_multiline_string] = ACTIONS(3104), + [sym_character] = ACTIONS(3104), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3141), + [sym__newline] = ACTIONS(3114), }, [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), + [aux_sym_import_declaration_repeat1] = STATE(2029), + [sym_identifier] = ACTIONS(3051), + [anon_sym_func] = ACTIONS(3051), + [anon_sym_BANG] = ACTIONS(3053), + [anon_sym_struct] = ACTIONS(3051), + [anon_sym_LPAREN] = ACTIONS(3053), + [anon_sym_LBRACE] = ACTIONS(3053), + [anon_sym_RBRACE] = ACTIONS(3053), + [anon_sym_DASH] = ACTIONS(3053), + [anon_sym_DOLLAR] = ACTIONS(3053), + [anon_sym_LBRACK] = ACTIONS(3053), + [anon_sym_void] = ACTIONS(3051), + [anon_sym_anyopaque] = ACTIONS(3051), + [anon_sym_bool] = ACTIONS(3051), + [anon_sym_int] = ACTIONS(3051), + [anon_sym_float] = ACTIONS(3051), + [anon_sym_range] = ACTIONS(3051), + [anon_sym_i8] = ACTIONS(3051), + [anon_sym_i16] = ACTIONS(3051), + [anon_sym_i32] = ACTIONS(3051), + [anon_sym_i64] = ACTIONS(3051), + [anon_sym_u8] = ACTIONS(3051), + [anon_sym_u16] = ACTIONS(3051), + [anon_sym_u32] = ACTIONS(3051), + [anon_sym_u64] = ACTIONS(3051), + [anon_sym_isize] = ACTIONS(3051), + [anon_sym_usize] = ACTIONS(3051), + [anon_sym_f32] = ACTIONS(3051), + [anon_sym_f64] = ACTIONS(3051), + [anon_sym_c_char] = ACTIONS(3051), + [anon_sym_c_schar] = ACTIONS(3051), + [anon_sym_c_uchar] = ACTIONS(3051), + [anon_sym_c_short] = ACTIONS(3051), + [anon_sym_c_ushort] = ACTIONS(3051), + [anon_sym_c_int] = ACTIONS(3051), + [anon_sym_c_uint] = ACTIONS(3051), + [anon_sym_c_long] = ACTIONS(3051), + [anon_sym_c_ulong] = ACTIONS(3051), + [anon_sym_c_longlong] = ACTIONS(3051), + [anon_sym_c_ulonglong] = ACTIONS(3051), + [anon_sym_c_float] = ACTIONS(3051), + [anon_sym_c_double] = ACTIONS(3051), + [anon_sym_c_longdouble] = ACTIONS(3051), + [anon_sym_return] = ACTIONS(3051), + [anon_sym_yield] = ACTIONS(3051), + [anon_sym_break] = ACTIONS(3051), + [anon_sym_continue] = ACTIONS(3051), + [anon_sym_defer] = ACTIONS(3051), + [anon_sym_errdefer] = ACTIONS(3051), + [anon_sym_if] = ACTIONS(3051), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_while] = ACTIONS(3051), + [anon_sym_for] = ACTIONS(3051), + [anon_sym_match] = ACTIONS(3051), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_try] = ACTIONS(3051), + [anon_sym_DOT] = ACTIONS(3053), + [anon_sym_true] = ACTIONS(3051), + [anon_sym_false] = ACTIONS(3051), + [sym_none] = ACTIONS(3051), + [sym_undefined] = ACTIONS(3051), + [sym_sink] = ACTIONS(3051), + [sym_integer] = ACTIONS(3051), + [sym_float] = ACTIONS(3053), + [anon_sym_DQUOTE] = ACTIONS(3053), + [sym_multiline_string] = ACTIONS(3053), + [sym_character] = ACTIONS(3053), [sym_comment] = ACTIONS(3), - [sym__newline] = ACTIONS(3145), + [sym__newline] = ACTIONS(3120), + }, + [STATE(1252)] = { + [aux_sym_import_declaration_repeat1] = STATE(2027), + [sym_identifier] = ACTIONS(3088), + [anon_sym_func] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_struct] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3090), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_DASH] = ACTIONS(3090), + [anon_sym_DOLLAR] = ACTIONS(3090), + [anon_sym_LBRACK] = ACTIONS(3090), + [anon_sym_void] = ACTIONS(3088), + [anon_sym_anyopaque] = ACTIONS(3088), + [anon_sym_bool] = ACTIONS(3088), + [anon_sym_int] = ACTIONS(3088), + [anon_sym_float] = ACTIONS(3088), + [anon_sym_range] = ACTIONS(3088), + [anon_sym_i8] = ACTIONS(3088), + [anon_sym_i16] = ACTIONS(3088), + [anon_sym_i32] = ACTIONS(3088), + [anon_sym_i64] = ACTIONS(3088), + [anon_sym_u8] = ACTIONS(3088), + [anon_sym_u16] = ACTIONS(3088), + [anon_sym_u32] = ACTIONS(3088), + [anon_sym_u64] = ACTIONS(3088), + [anon_sym_isize] = ACTIONS(3088), + [anon_sym_usize] = ACTIONS(3088), + [anon_sym_f32] = ACTIONS(3088), + [anon_sym_f64] = ACTIONS(3088), + [anon_sym_c_char] = ACTIONS(3088), + [anon_sym_c_schar] = ACTIONS(3088), + [anon_sym_c_uchar] = ACTIONS(3088), + [anon_sym_c_short] = ACTIONS(3088), + [anon_sym_c_ushort] = ACTIONS(3088), + [anon_sym_c_int] = ACTIONS(3088), + [anon_sym_c_uint] = ACTIONS(3088), + [anon_sym_c_long] = ACTIONS(3088), + [anon_sym_c_ulong] = ACTIONS(3088), + [anon_sym_c_longlong] = ACTIONS(3088), + [anon_sym_c_ulonglong] = ACTIONS(3088), + [anon_sym_c_float] = ACTIONS(3088), + [anon_sym_c_double] = ACTIONS(3088), + [anon_sym_c_longdouble] = ACTIONS(3088), + [anon_sym_return] = ACTIONS(3088), + [anon_sym_yield] = ACTIONS(3088), + [anon_sym_break] = ACTIONS(3088), + [anon_sym_continue] = ACTIONS(3088), + [anon_sym_defer] = ACTIONS(3088), + [anon_sym_errdefer] = ACTIONS(3088), + [anon_sym_if] = ACTIONS(3088), + [anon_sym_else] = ACTIONS(3123), + [anon_sym_while] = ACTIONS(3088), + [anon_sym_for] = ACTIONS(3088), + [anon_sym_match] = ACTIONS(3088), + [anon_sym_AMP] = ACTIONS(3090), + [anon_sym_try] = ACTIONS(3088), + [anon_sym_DOT] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3088), + [anon_sym_false] = ACTIONS(3088), + [sym_none] = ACTIONS(3088), + [sym_undefined] = ACTIONS(3088), + [sym_sink] = ACTIONS(3088), + [sym_integer] = ACTIONS(3088), + [sym_float] = ACTIONS(3090), + [anon_sym_DQUOTE] = ACTIONS(3090), + [sym_multiline_string] = ACTIONS(3090), + [sym_character] = ACTIONS(3090), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3126), + }, + [STATE(1253)] = { + [aux_sym_import_declaration_repeat1] = STATE(2024), + [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(3129), + [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), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3132), + }, + [STATE(1254)] = { + [aux_sym_import_declaration_repeat1] = STATE(2026), + [sym_identifier] = ACTIONS(3079), + [anon_sym_func] = ACTIONS(3079), + [anon_sym_BANG] = ACTIONS(3081), + [anon_sym_struct] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_RBRACE] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3081), + [anon_sym_DOLLAR] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_void] = ACTIONS(3079), + [anon_sym_anyopaque] = ACTIONS(3079), + [anon_sym_bool] = ACTIONS(3079), + [anon_sym_int] = ACTIONS(3079), + [anon_sym_float] = ACTIONS(3079), + [anon_sym_range] = ACTIONS(3079), + [anon_sym_i8] = ACTIONS(3079), + [anon_sym_i16] = ACTIONS(3079), + [anon_sym_i32] = ACTIONS(3079), + [anon_sym_i64] = ACTIONS(3079), + [anon_sym_u8] = ACTIONS(3079), + [anon_sym_u16] = ACTIONS(3079), + [anon_sym_u32] = ACTIONS(3079), + [anon_sym_u64] = ACTIONS(3079), + [anon_sym_isize] = ACTIONS(3079), + [anon_sym_usize] = ACTIONS(3079), + [anon_sym_f32] = ACTIONS(3079), + [anon_sym_f64] = ACTIONS(3079), + [anon_sym_c_char] = ACTIONS(3079), + [anon_sym_c_schar] = ACTIONS(3079), + [anon_sym_c_uchar] = ACTIONS(3079), + [anon_sym_c_short] = ACTIONS(3079), + [anon_sym_c_ushort] = ACTIONS(3079), + [anon_sym_c_int] = ACTIONS(3079), + [anon_sym_c_uint] = ACTIONS(3079), + [anon_sym_c_long] = ACTIONS(3079), + [anon_sym_c_ulong] = ACTIONS(3079), + [anon_sym_c_longlong] = ACTIONS(3079), + [anon_sym_c_ulonglong] = ACTIONS(3079), + [anon_sym_c_float] = ACTIONS(3079), + [anon_sym_c_double] = ACTIONS(3079), + [anon_sym_c_longdouble] = ACTIONS(3079), + [anon_sym_return] = ACTIONS(3079), + [anon_sym_yield] = ACTIONS(3079), + [anon_sym_break] = ACTIONS(3079), + [anon_sym_continue] = ACTIONS(3079), + [anon_sym_defer] = ACTIONS(3079), + [anon_sym_errdefer] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3079), + [anon_sym_else] = ACTIONS(3135), + [anon_sym_while] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3079), + [anon_sym_match] = ACTIONS(3079), + [anon_sym_AMP] = ACTIONS(3081), + [anon_sym_try] = ACTIONS(3079), + [anon_sym_DOT] = ACTIONS(3081), + [anon_sym_true] = ACTIONS(3079), + [anon_sym_false] = ACTIONS(3079), + [sym_none] = ACTIONS(3079), + [sym_undefined] = ACTIONS(3079), + [sym_sink] = ACTIONS(3079), + [sym_integer] = ACTIONS(3079), + [sym_float] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3081), + [sym_multiline_string] = ACTIONS(3081), + [sym_character] = ACTIONS(3081), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3138), + }, + [STATE(1255)] = { + [sym_identifier] = ACTIONS(3141), + [anon_sym_func] = ACTIONS(3141), + [anon_sym_BANG] = ACTIONS(3143), + [anon_sym_struct] = ACTIONS(3141), + [anon_sym_LPAREN] = ACTIONS(3143), + [anon_sym_LBRACE] = ACTIONS(3143), + [anon_sym_DASH] = ACTIONS(3143), + [anon_sym_DOLLAR] = ACTIONS(3143), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_void] = ACTIONS(3141), + [anon_sym_anyopaque] = ACTIONS(3141), + [anon_sym_bool] = ACTIONS(3141), + [anon_sym_int] = ACTIONS(3141), + [anon_sym_float] = ACTIONS(3141), + [anon_sym_range] = ACTIONS(3141), + [anon_sym_i8] = ACTIONS(3141), + [anon_sym_i16] = ACTIONS(3141), + [anon_sym_i32] = ACTIONS(3141), + [anon_sym_i64] = ACTIONS(3141), + [anon_sym_u8] = ACTIONS(3141), + [anon_sym_u16] = ACTIONS(3141), + [anon_sym_u32] = ACTIONS(3141), + [anon_sym_u64] = ACTIONS(3141), + [anon_sym_isize] = ACTIONS(3141), + [anon_sym_usize] = ACTIONS(3141), + [anon_sym_f32] = ACTIONS(3141), + [anon_sym_f64] = ACTIONS(3141), + [anon_sym_c_char] = ACTIONS(3141), + [anon_sym_c_schar] = ACTIONS(3141), + [anon_sym_c_uchar] = ACTIONS(3141), + [anon_sym_c_short] = ACTIONS(3141), + [anon_sym_c_ushort] = ACTIONS(3141), + [anon_sym_c_int] = ACTIONS(3141), + [anon_sym_c_uint] = ACTIONS(3141), + [anon_sym_c_long] = ACTIONS(3141), + [anon_sym_c_ulong] = ACTIONS(3141), + [anon_sym_c_longlong] = ACTIONS(3141), + [anon_sym_c_ulonglong] = ACTIONS(3141), + [anon_sym_c_float] = ACTIONS(3141), + [anon_sym_c_double] = ACTIONS(3141), + [anon_sym_c_longdouble] = ACTIONS(3141), + [anon_sym_return] = ACTIONS(3141), + [anon_sym_yield] = ACTIONS(3141), + [anon_sym_break] = ACTIONS(3141), + [anon_sym_continue] = ACTIONS(3141), + [anon_sym_defer] = ACTIONS(3141), + [anon_sym_errdefer] = ACTIONS(3141), + [anon_sym_if] = ACTIONS(3141), + [anon_sym_while] = ACTIONS(3141), + [anon_sym_for] = ACTIONS(3141), + [anon_sym_match] = ACTIONS(3141), + [anon_sym_AMP] = ACTIONS(3143), + [anon_sym_try] = ACTIONS(3141), + [anon_sym_DOT] = ACTIONS(3143), + [anon_sym_true] = ACTIONS(3141), + [anon_sym_false] = ACTIONS(3141), + [sym_none] = ACTIONS(3141), + [sym_undefined] = ACTIONS(3141), + [sym_sink] = ACTIONS(3141), + [sym_integer] = ACTIONS(3141), + [sym_float] = ACTIONS(3143), + [anon_sym_DQUOTE] = ACTIONS(3143), + [sym_multiline_string] = ACTIONS(3143), + [sym_character] = ACTIONS(3143), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3143), + }, + [STATE(1256)] = { + [sym_identifier] = ACTIONS(3145), + [anon_sym_func] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3147), + [anon_sym_struct] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3147), + [anon_sym_DOLLAR] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_void] = ACTIONS(3145), + [anon_sym_anyopaque] = ACTIONS(3145), + [anon_sym_bool] = ACTIONS(3145), + [anon_sym_int] = ACTIONS(3145), + [anon_sym_float] = ACTIONS(3145), + [anon_sym_range] = ACTIONS(3145), + [anon_sym_i8] = ACTIONS(3145), + [anon_sym_i16] = ACTIONS(3145), + [anon_sym_i32] = ACTIONS(3145), + [anon_sym_i64] = ACTIONS(3145), + [anon_sym_u8] = ACTIONS(3145), + [anon_sym_u16] = ACTIONS(3145), + [anon_sym_u32] = ACTIONS(3145), + [anon_sym_u64] = ACTIONS(3145), + [anon_sym_isize] = ACTIONS(3145), + [anon_sym_usize] = ACTIONS(3145), + [anon_sym_f32] = ACTIONS(3145), + [anon_sym_f64] = ACTIONS(3145), + [anon_sym_c_char] = ACTIONS(3145), + [anon_sym_c_schar] = ACTIONS(3145), + [anon_sym_c_uchar] = ACTIONS(3145), + [anon_sym_c_short] = ACTIONS(3145), + [anon_sym_c_ushort] = ACTIONS(3145), + [anon_sym_c_int] = ACTIONS(3145), + [anon_sym_c_uint] = ACTIONS(3145), + [anon_sym_c_long] = ACTIONS(3145), + [anon_sym_c_ulong] = ACTIONS(3145), + [anon_sym_c_longlong] = ACTIONS(3145), + [anon_sym_c_ulonglong] = ACTIONS(3145), + [anon_sym_c_float] = ACTIONS(3145), + [anon_sym_c_double] = ACTIONS(3145), + [anon_sym_c_longdouble] = ACTIONS(3145), + [anon_sym_return] = ACTIONS(3145), + [anon_sym_yield] = ACTIONS(3145), + [anon_sym_break] = ACTIONS(3145), + [anon_sym_continue] = ACTIONS(3145), + [anon_sym_defer] = ACTIONS(3145), + [anon_sym_errdefer] = ACTIONS(3145), + [anon_sym_if] = ACTIONS(3145), + [anon_sym_while] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3145), + [anon_sym_match] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym_try] = ACTIONS(3145), + [anon_sym_DOT] = ACTIONS(3147), + [anon_sym_true] = ACTIONS(3145), + [anon_sym_false] = ACTIONS(3145), + [sym_none] = ACTIONS(3145), + [sym_undefined] = ACTIONS(3145), + [sym_sink] = ACTIONS(3145), + [sym_integer] = ACTIONS(3145), + [sym_float] = ACTIONS(3147), + [anon_sym_DQUOTE] = ACTIONS(3147), + [sym_multiline_string] = ACTIONS(3147), + [sym_character] = ACTIONS(3147), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3147), + }, + [STATE(1257)] = { + [sym_identifier] = ACTIONS(3149), + [anon_sym_func] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3151), + [anon_sym_struct] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_DOLLAR] = ACTIONS(3151), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_void] = ACTIONS(3149), + [anon_sym_anyopaque] = ACTIONS(3149), + [anon_sym_bool] = ACTIONS(3149), + [anon_sym_int] = ACTIONS(3149), + [anon_sym_float] = ACTIONS(3149), + [anon_sym_range] = ACTIONS(3149), + [anon_sym_i8] = ACTIONS(3149), + [anon_sym_i16] = ACTIONS(3149), + [anon_sym_i32] = ACTIONS(3149), + [anon_sym_i64] = ACTIONS(3149), + [anon_sym_u8] = ACTIONS(3149), + [anon_sym_u16] = ACTIONS(3149), + [anon_sym_u32] = ACTIONS(3149), + [anon_sym_u64] = ACTIONS(3149), + [anon_sym_isize] = ACTIONS(3149), + [anon_sym_usize] = ACTIONS(3149), + [anon_sym_f32] = ACTIONS(3149), + [anon_sym_f64] = ACTIONS(3149), + [anon_sym_c_char] = ACTIONS(3149), + [anon_sym_c_schar] = ACTIONS(3149), + [anon_sym_c_uchar] = ACTIONS(3149), + [anon_sym_c_short] = ACTIONS(3149), + [anon_sym_c_ushort] = ACTIONS(3149), + [anon_sym_c_int] = ACTIONS(3149), + [anon_sym_c_uint] = ACTIONS(3149), + [anon_sym_c_long] = ACTIONS(3149), + [anon_sym_c_ulong] = ACTIONS(3149), + [anon_sym_c_longlong] = ACTIONS(3149), + [anon_sym_c_ulonglong] = ACTIONS(3149), + [anon_sym_c_float] = ACTIONS(3149), + [anon_sym_c_double] = ACTIONS(3149), + [anon_sym_c_longdouble] = ACTIONS(3149), + [anon_sym_return] = ACTIONS(3149), + [anon_sym_yield] = ACTIONS(3149), + [anon_sym_break] = ACTIONS(3149), + [anon_sym_continue] = ACTIONS(3149), + [anon_sym_defer] = ACTIONS(3149), + [anon_sym_errdefer] = ACTIONS(3149), + [anon_sym_if] = ACTIONS(3149), + [anon_sym_while] = ACTIONS(3149), + [anon_sym_for] = ACTIONS(3149), + [anon_sym_match] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3149), + [anon_sym_DOT] = ACTIONS(3151), + [anon_sym_true] = ACTIONS(3149), + [anon_sym_false] = ACTIONS(3149), + [sym_none] = ACTIONS(3149), + [sym_undefined] = ACTIONS(3149), + [sym_sink] = ACTIONS(3149), + [sym_integer] = ACTIONS(3149), + [sym_float] = ACTIONS(3151), + [anon_sym_DQUOTE] = ACTIONS(3151), + [sym_multiline_string] = ACTIONS(3151), + [sym_character] = ACTIONS(3151), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3151), + }, + [STATE(1258)] = { + [sym_identifier] = ACTIONS(3153), + [anon_sym_func] = ACTIONS(3153), + [anon_sym_BANG] = ACTIONS(3155), + [anon_sym_struct] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3155), + [anon_sym_DOLLAR] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_void] = ACTIONS(3153), + [anon_sym_anyopaque] = ACTIONS(3153), + [anon_sym_bool] = ACTIONS(3153), + [anon_sym_int] = ACTIONS(3153), + [anon_sym_float] = ACTIONS(3153), + [anon_sym_range] = ACTIONS(3153), + [anon_sym_i8] = ACTIONS(3153), + [anon_sym_i16] = ACTIONS(3153), + [anon_sym_i32] = ACTIONS(3153), + [anon_sym_i64] = ACTIONS(3153), + [anon_sym_u8] = ACTIONS(3153), + [anon_sym_u16] = ACTIONS(3153), + [anon_sym_u32] = ACTIONS(3153), + [anon_sym_u64] = ACTIONS(3153), + [anon_sym_isize] = ACTIONS(3153), + [anon_sym_usize] = ACTIONS(3153), + [anon_sym_f32] = ACTIONS(3153), + [anon_sym_f64] = ACTIONS(3153), + [anon_sym_c_char] = ACTIONS(3153), + [anon_sym_c_schar] = ACTIONS(3153), + [anon_sym_c_uchar] = ACTIONS(3153), + [anon_sym_c_short] = ACTIONS(3153), + [anon_sym_c_ushort] = ACTIONS(3153), + [anon_sym_c_int] = ACTIONS(3153), + [anon_sym_c_uint] = ACTIONS(3153), + [anon_sym_c_long] = ACTIONS(3153), + [anon_sym_c_ulong] = ACTIONS(3153), + [anon_sym_c_longlong] = ACTIONS(3153), + [anon_sym_c_ulonglong] = ACTIONS(3153), + [anon_sym_c_float] = ACTIONS(3153), + [anon_sym_c_double] = ACTIONS(3153), + [anon_sym_c_longdouble] = ACTIONS(3153), + [anon_sym_return] = ACTIONS(3153), + [anon_sym_yield] = ACTIONS(3153), + [anon_sym_break] = ACTIONS(3153), + [anon_sym_continue] = ACTIONS(3153), + [anon_sym_defer] = ACTIONS(3153), + [anon_sym_errdefer] = ACTIONS(3153), + [anon_sym_if] = ACTIONS(3153), + [anon_sym_while] = ACTIONS(3153), + [anon_sym_for] = ACTIONS(3153), + [anon_sym_match] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_try] = ACTIONS(3153), + [anon_sym_DOT] = ACTIONS(3155), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [sym_none] = ACTIONS(3153), + [sym_undefined] = ACTIONS(3153), + [sym_sink] = ACTIONS(3153), + [sym_integer] = ACTIONS(3153), + [sym_float] = ACTIONS(3155), + [anon_sym_DQUOTE] = ACTIONS(3155), + [sym_multiline_string] = ACTIONS(3155), + [sym_character] = ACTIONS(3155), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3155), + }, + [STATE(1259)] = { + [sym_identifier] = ACTIONS(3157), + [anon_sym_func] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3159), + [anon_sym_struct] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_LBRACE] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_DOLLAR] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_void] = ACTIONS(3157), + [anon_sym_anyopaque] = ACTIONS(3157), + [anon_sym_bool] = ACTIONS(3157), + [anon_sym_int] = ACTIONS(3157), + [anon_sym_float] = ACTIONS(3157), + [anon_sym_range] = ACTIONS(3157), + [anon_sym_i8] = ACTIONS(3157), + [anon_sym_i16] = ACTIONS(3157), + [anon_sym_i32] = ACTIONS(3157), + [anon_sym_i64] = ACTIONS(3157), + [anon_sym_u8] = ACTIONS(3157), + [anon_sym_u16] = ACTIONS(3157), + [anon_sym_u32] = ACTIONS(3157), + [anon_sym_u64] = ACTIONS(3157), + [anon_sym_isize] = ACTIONS(3157), + [anon_sym_usize] = ACTIONS(3157), + [anon_sym_f32] = ACTIONS(3157), + [anon_sym_f64] = ACTIONS(3157), + [anon_sym_c_char] = ACTIONS(3157), + [anon_sym_c_schar] = ACTIONS(3157), + [anon_sym_c_uchar] = ACTIONS(3157), + [anon_sym_c_short] = ACTIONS(3157), + [anon_sym_c_ushort] = ACTIONS(3157), + [anon_sym_c_int] = ACTIONS(3157), + [anon_sym_c_uint] = ACTIONS(3157), + [anon_sym_c_long] = ACTIONS(3157), + [anon_sym_c_ulong] = ACTIONS(3157), + [anon_sym_c_longlong] = ACTIONS(3157), + [anon_sym_c_ulonglong] = ACTIONS(3157), + [anon_sym_c_float] = ACTIONS(3157), + [anon_sym_c_double] = ACTIONS(3157), + [anon_sym_c_longdouble] = ACTIONS(3157), + [anon_sym_return] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3157), + [anon_sym_break] = ACTIONS(3157), + [anon_sym_continue] = ACTIONS(3157), + [anon_sym_defer] = ACTIONS(3157), + [anon_sym_errdefer] = ACTIONS(3157), + [anon_sym_if] = ACTIONS(3157), + [anon_sym_while] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3157), + [anon_sym_match] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3157), + [anon_sym_DOT] = ACTIONS(3159), + [anon_sym_true] = ACTIONS(3157), + [anon_sym_false] = ACTIONS(3157), + [sym_none] = ACTIONS(3157), + [sym_undefined] = ACTIONS(3157), + [sym_sink] = ACTIONS(3157), + [sym_integer] = ACTIONS(3157), + [sym_float] = ACTIONS(3159), + [anon_sym_DQUOTE] = ACTIONS(3159), + [sym_multiline_string] = ACTIONS(3159), + [sym_character] = ACTIONS(3159), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(3159), }, }; @@ -123537,11 +124916,11 @@ static const uint16_t ts_small_parse_table[] = { [0] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3147), 1, + ACTIONS(3161), 1, sym__newline, - STATE(1252), 1, + STATE(1260), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1586), 14, + ACTIONS(1600), 14, anon_sym_BANG, anon_sym_LPAREN, anon_sym_DASH, @@ -123556,7 +124935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1584), 43, + ACTIONS(1598), 43, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -123603,13 +124982,13 @@ static const uint16_t ts_small_parse_table[] = { [71] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3147), 1, + ACTIONS(3161), 1, sym__newline, - ACTIONS(3150), 1, + ACTIONS(3164), 1, anon_sym_RBRACK, - STATE(1252), 1, + STATE(1260), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1586), 13, + ACTIONS(1600), 13, anon_sym_BANG, anon_sym_LPAREN, anon_sym_DASH, @@ -123623,7 +125002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1584), 43, + ACTIONS(1598), 43, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -123670,13 +125049,13 @@ static const uint16_t ts_small_parse_table[] = { [144] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1588), 1, + ACTIONS(1602), 1, sym__newline, - ACTIONS(3150), 1, + ACTIONS(3167), 1, anon_sym_RBRACK, - STATE(682), 1, + STATE(690), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1586), 13, + ACTIONS(1600), 13, anon_sym_BANG, anon_sym_LPAREN, anon_sym_DASH, @@ -123690,7 +125069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1584), 42, + ACTIONS(1598), 42, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -123736,13 +125115,13 @@ static const uint16_t ts_small_parse_table[] = { [216] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1588), 1, + ACTIONS(1602), 1, sym__newline, - ACTIONS(3153), 1, + ACTIONS(3164), 1, anon_sym_RBRACK, - STATE(682), 1, + STATE(690), 1, aux_sym_import_declaration_repeat1, - ACTIONS(1586), 13, + ACTIONS(1600), 13, anon_sym_BANG, anon_sym_LPAREN, anon_sym_DASH, @@ -123756,7 +125135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1584), 42, + ACTIONS(1598), 42, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -123802,13 +125181,13 @@ static const uint16_t ts_small_parse_table[] = { [288] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3156), 1, + ACTIONS(3170), 1, anon_sym_else, - ACTIONS(3159), 1, + ACTIONS(3173), 1, sym__newline, - STATE(1951), 1, + STATE(2002), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3049), 12, + ACTIONS(3090), 12, anon_sym_BANG, anon_sym_LPAREN, anon_sym_RBRACE, @@ -123821,7 +125200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(3047), 42, + ACTIONS(3088), 42, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -123867,13 +125246,13 @@ static const uint16_t ts_small_parse_table[] = { [359] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3162), 1, + ACTIONS(3176), 1, anon_sym_else, - ACTIONS(3165), 1, + ACTIONS(3179), 1, sym__newline, - STATE(1962), 1, + STATE(2003), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3067), 12, + ACTIONS(3071), 12, anon_sym_BANG, anon_sym_LPAREN, anon_sym_RBRACE, @@ -123886,7 +125265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(3065), 42, + ACTIONS(3069), 42, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -123932,13 +125311,13 @@ static const uint16_t ts_small_parse_table[] = { [430] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3168), 1, + ACTIONS(3182), 1, anon_sym_else, - ACTIONS(3171), 1, + ACTIONS(3185), 1, sym__newline, - STATE(1963), 1, + STATE(2001), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3076), 12, + ACTIONS(3081), 12, anon_sym_BANG, anon_sym_LPAREN, anon_sym_RBRACE, @@ -123951,7 +125330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(3074), 42, + ACTIONS(3079), 42, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -123997,13 +125376,13 @@ static const uint16_t ts_small_parse_table[] = { [501] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3174), 1, + ACTIONS(3188), 1, anon_sym_else, - ACTIONS(3177), 1, + ACTIONS(3191), 1, sym__newline, - STATE(1960), 1, + STATE(2004), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3058), 12, + ACTIONS(3053), 12, anon_sym_BANG, anon_sym_LPAREN, anon_sym_RBRACE, @@ -124016,7 +125395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(3056), 42, + ACTIONS(3051), 42, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -124062,13 +125441,13 @@ static const uint16_t ts_small_parse_table[] = { [572] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3180), 1, + ACTIONS(3194), 1, anon_sym_else, - ACTIONS(3183), 1, + ACTIONS(3197), 1, sym__newline, - STATE(1965), 1, + STATE(1999), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3085), 12, + ACTIONS(3104), 12, anon_sym_BANG, anon_sym_LPAREN, anon_sym_RBRACE, @@ -124081,7 +125460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(3083), 42, + ACTIONS(3102), 42, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -124127,13 +125506,13 @@ static const uint16_t ts_small_parse_table[] = { [643] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3186), 1, + ACTIONS(3200), 1, anon_sym_else, - ACTIONS(3189), 1, + ACTIONS(3203), 1, sym__newline, - STATE(1966), 1, + STATE(1989), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3039), 12, + ACTIONS(3062), 12, anon_sym_BANG, anon_sym_LPAREN, anon_sym_RBRACE, @@ -124146,7 +125525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(3037), 42, + ACTIONS(3060), 42, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -124192,7 +125571,7 @@ static const uint16_t ts_small_parse_table[] = { [714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3194), 13, + ACTIONS(3208), 13, anon_sym_BANG, anon_sym_LPAREN, anon_sym_RBRACE, @@ -124206,7 +125585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(3192), 43, + ACTIONS(3206), 43, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -124253,7 +125632,7 @@ static const uint16_t ts_small_parse_table[] = { [778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3198), 13, + ACTIONS(3212), 13, anon_sym_BANG, anon_sym_LPAREN, anon_sym_RBRACE, @@ -124267,7 +125646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(3196), 43, + ACTIONS(3210), 43, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -124314,7 +125693,7 @@ static const uint16_t ts_small_parse_table[] = { [842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3202), 13, + ACTIONS(3216), 13, anon_sym_BANG, anon_sym_LPAREN, anon_sym_RBRACE, @@ -124328,7 +125707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(3200), 43, + ACTIONS(3214), 43, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -124375,7 +125754,7 @@ static const uint16_t ts_small_parse_table[] = { [906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3206), 13, + ACTIONS(3220), 13, anon_sym_BANG, anon_sym_LPAREN, anon_sym_RBRACE, @@ -124389,7 +125768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(3204), 43, + ACTIONS(3218), 43, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -124436,7 +125815,7 @@ static const uint16_t ts_small_parse_table[] = { [970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3210), 13, + ACTIONS(3224), 13, anon_sym_BANG, anon_sym_LPAREN, anon_sym_RBRACE, @@ -124450,7 +125829,7 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(3208), 43, + ACTIONS(3222), 43, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -124497,7 +125876,7 @@ static const uint16_t ts_small_parse_table[] = { [1034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3214), 13, + ACTIONS(3228), 13, anon_sym_BANG, anon_sym_LPAREN, anon_sym_RBRACE, @@ -124511,7 +125890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(3212), 43, + ACTIONS(3226), 43, anon_sym_func, anon_sym_struct, anon_sym_void, @@ -124558,30 +125937,30 @@ static const uint16_t ts_small_parse_table[] = { [1098] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, + ACTIONS(892), 1, anon_sym_union, - ACTIONS(896), 1, + ACTIONS(894), 1, anon_sym_enum, - ACTIONS(1631), 1, + ACTIONS(1685), 1, sym_identifier, - ACTIONS(3216), 1, + ACTIONS(3230), 1, anon_sym_QMARK, - ACTIONS(3218), 1, + ACTIONS(3232), 1, anon_sym_LBRACK, - STATE(396), 1, + STATE(402), 1, sym_qualified_identifier, - ACTIONS(319), 2, + ACTIONS(283), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(324), 2, + ACTIONS(287), 2, anon_sym_AT, anon_sym_STAR, - STATE(1499), 4, + STATE(1784), 4, sym_union_type, sym_enum_type, sym_type, sym__error_type, - STATE(398), 7, + STATE(399), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -124589,7 +125968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(37), 32, + ACTIONS(39), 32, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -124625,30 +126004,30 @@ static const uint16_t ts_small_parse_table[] = { [1177] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, + ACTIONS(892), 1, anon_sym_union, - ACTIONS(896), 1, + ACTIONS(894), 1, anon_sym_enum, - ACTIONS(1631), 1, + ACTIONS(1685), 1, sym_identifier, - ACTIONS(3216), 1, + ACTIONS(3230), 1, anon_sym_QMARK, - ACTIONS(3218), 1, + ACTIONS(3232), 1, anon_sym_LBRACK, - STATE(396), 1, + STATE(402), 1, sym_qualified_identifier, - ACTIONS(319), 2, + ACTIONS(283), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(324), 2, + ACTIONS(287), 2, anon_sym_AT, anon_sym_STAR, - STATE(426), 4, + STATE(1517), 4, sym_union_type, sym_enum_type, sym_type, sym__error_type, - STATE(398), 7, + STATE(394), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -124656,7 +126035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(37), 32, + ACTIONS(39), 32, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -124692,30 +126071,30 @@ static const uint16_t ts_small_parse_table[] = { [1256] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, + ACTIONS(892), 1, anon_sym_union, - ACTIONS(896), 1, + ACTIONS(894), 1, anon_sym_enum, - ACTIONS(1631), 1, + ACTIONS(1685), 1, sym_identifier, - ACTIONS(3216), 1, + ACTIONS(3230), 1, anon_sym_QMARK, - ACTIONS(3218), 1, + ACTIONS(3232), 1, anon_sym_LBRACK, - STATE(396), 1, + STATE(402), 1, sym_qualified_identifier, - ACTIONS(319), 2, + ACTIONS(283), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(324), 2, + ACTIONS(287), 2, anon_sym_AT, anon_sym_STAR, - STATE(1500), 4, + STATE(1518), 4, sym_union_type, sym_enum_type, sym_type, sym__error_type, - STATE(398), 7, + STATE(394), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -124723,7 +126102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(37), 32, + ACTIONS(39), 32, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -124759,30 +126138,30 @@ static const uint16_t ts_small_parse_table[] = { [1335] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, + ACTIONS(892), 1, anon_sym_union, - ACTIONS(896), 1, + ACTIONS(894), 1, anon_sym_enum, - ACTIONS(1631), 1, + ACTIONS(1685), 1, sym_identifier, - ACTIONS(3216), 1, + ACTIONS(3230), 1, anon_sym_QMARK, - ACTIONS(3218), 1, + ACTIONS(3232), 1, anon_sym_LBRACK, - STATE(396), 1, + STATE(402), 1, sym_qualified_identifier, - ACTIONS(319), 2, + ACTIONS(283), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(324), 2, + ACTIONS(287), 2, anon_sym_AT, anon_sym_STAR, - STATE(1733), 4, + STATE(460), 4, sym_union_type, sym_enum_type, sym_type, sym__error_type, - STATE(400), 7, + STATE(394), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -124790,7 +126169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(37), 32, + ACTIONS(39), 32, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -124826,30 +126205,30 @@ static const uint16_t ts_small_parse_table[] = { [1414] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, + ACTIONS(892), 1, anon_sym_union, - ACTIONS(896), 1, + ACTIONS(894), 1, anon_sym_enum, - ACTIONS(1631), 1, + ACTIONS(1685), 1, sym_identifier, - ACTIONS(3216), 1, + ACTIONS(3230), 1, anon_sym_QMARK, - ACTIONS(3218), 1, + ACTIONS(3232), 1, anon_sym_LBRACK, - STATE(396), 1, + STATE(402), 1, sym_qualified_identifier, - ACTIONS(319), 2, + ACTIONS(283), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(324), 2, + ACTIONS(287), 2, anon_sym_AT, anon_sym_STAR, - STATE(1862), 4, + STATE(455), 4, sym_union_type, sym_enum_type, sym_type, sym__error_type, - STATE(400), 7, + STATE(394), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -124857,7 +126236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(37), 32, + ACTIONS(39), 32, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -124893,30 +126272,30 @@ static const uint16_t ts_small_parse_table[] = { [1493] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, + ACTIONS(892), 1, anon_sym_union, - ACTIONS(896), 1, + ACTIONS(894), 1, anon_sym_enum, - ACTIONS(1631), 1, + ACTIONS(1685), 1, sym_identifier, - ACTIONS(3216), 1, + ACTIONS(3230), 1, anon_sym_QMARK, - ACTIONS(3218), 1, + ACTIONS(3232), 1, anon_sym_LBRACK, - STATE(396), 1, + STATE(402), 1, sym_qualified_identifier, - ACTIONS(319), 2, + ACTIONS(283), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(324), 2, + ACTIONS(287), 2, anon_sym_AT, anon_sym_STAR, - STATE(438), 4, + STATE(1516), 4, sym_union_type, sym_enum_type, sym_type, sym__error_type, - STATE(398), 7, + STATE(394), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -124924,7 +126303,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(37), 32, + ACTIONS(39), 32, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -124960,27 +126339,992 @@ static const uint16_t ts_small_parse_table[] = { [1572] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(1631), 1, + ACTIONS(892), 1, + anon_sym_union, + ACTIONS(894), 1, + anon_sym_enum, + ACTIONS(1685), 1, sym_identifier, - ACTIONS(3216), 1, + ACTIONS(3230), 1, anon_sym_QMARK, - ACTIONS(3218), 1, + ACTIONS(3232), 1, anon_sym_LBRACK, - STATE(396), 1, + STATE(402), 1, + sym_qualified_identifier, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1933), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [1651] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(892), 1, + anon_sym_union, + ACTIONS(894), 1, + anon_sym_enum, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1519), 4, + sym_union_type, + sym_enum_type, + sym_type, + sym__error_type, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [1730] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1514), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [1806] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1702), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [1882] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + ACTIONS(3234), 1, + sym__newline, + STATE(402), 1, + sym_qualified_identifier, + STATE(1284), 1, + aux_sym_import_declaration_repeat1, + STATE(1510), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [1958] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(21), 1, + anon_sym_struct, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(1922), 2, + sym_struct_type, + sym_type, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [2032] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + ACTIONS(3236), 1, + anon_sym_COMMA, + STATE(402), 1, + sym_qualified_identifier, + STATE(1373), 1, + aux_sym_parameter_repeat1, + STATE(2043), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [2108] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + ACTIONS(3236), 1, + anon_sym_COMMA, + STATE(402), 1, + sym_qualified_identifier, + STATE(1373), 1, + aux_sym_parameter_repeat1, + STATE(2009), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [2184] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + ACTIONS(3236), 1, + anon_sym_COMMA, + STATE(402), 1, + sym_qualified_identifier, + STATE(1289), 1, + aux_sym_parameter_repeat1, + STATE(2037), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [2260] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + ACTIONS(3238), 1, + anon_sym_COLON_COLON, + ACTIONS(3242), 1, + anon_sym_EQ, + STATE(402), 1, + sym_qualified_identifier, + STATE(2106), 1, + sym_type, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + ACTIONS(3240), 2, + anon_sym_func, + anon_sym_c_func, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [2336] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(447), 1, + sym_type, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [2412] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + ACTIONS(3244), 1, + anon_sym_COLON_COLON, + ACTIONS(3248), 1, + anon_sym_EQ, + STATE(402), 1, + sym_qualified_identifier, + STATE(2115), 1, + sym_type, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + ACTIONS(3246), 2, + anon_sym_func, + anon_sym_c_func, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [2488] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1513), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [2564] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + ACTIONS(3250), 1, + sym__newline, + STATE(402), 1, + sym_qualified_identifier, + STATE(1294), 1, + aux_sym_import_declaration_repeat1, + STATE(1515), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [2640] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + ACTIONS(3252), 1, + sym__newline, + STATE(402), 1, + sym_qualified_identifier, + STATE(1285), 1, + aux_sym_import_declaration_repeat1, + STATE(1571), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [2716] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + ACTIONS(3254), 1, + sym__newline, + STATE(402), 1, sym_qualified_identifier, STATE(416), 1, sym_type, - STATE(682), 1, + STATE(1292), 1, aux_sym_import_declaration_repeat1, - ACTIONS(319), 2, + ACTIONS(283), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(324), 2, + ACTIONS(287), 2, anon_sym_AT, anon_sym_STAR, - STATE(398), 7, + STATE(394), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -124988,7 +127332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(37), 32, + ACTIONS(39), 32, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -125021,855 +127365,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [1648] = 12, + [2792] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1685), 1, sym_identifier, - ACTIONS(3216), 1, - anon_sym_QMARK, - ACTIONS(3218), 1, - anon_sym_LBRACK, - ACTIONS(3220), 1, - sym__newline, - STATE(396), 1, - sym_qualified_identifier, - STATE(406), 1, - sym_type, - STATE(1274), 1, - aux_sym_import_declaration_repeat1, - 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, - [1724] = 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(1285), 1, - aux_sym_parameter_repeat1, - STATE(1956), 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, - [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(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(1821), 2, - sym_struct_type, - sym_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, - [2406] = 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(1926), 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, - [2482] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, - sym_identifier, - ACTIONS(3216), 1, - anon_sym_QMARK, - ACTIONS(3218), 1, - anon_sym_LBRACK, - ACTIONS(3234), 1, - anon_sym_mut, - STATE(396), 1, - sym_qualified_identifier, - STATE(414), 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, - [2555] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(600), 1, - anon_sym_mut, - ACTIONS(1631), 1, - sym_identifier, - ACTIONS(3216), 1, - anon_sym_QMARK, - ACTIONS(3218), 1, - anon_sym_LBRACK, - STATE(396), 1, - sym_qualified_identifier, - STATE(407), 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, - [2628] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, - sym_identifier, - ACTIONS(3216), 1, - anon_sym_QMARK, - ACTIONS(3218), 1, anon_sym_LBRACK, ACTIONS(3236), 1, - anon_sym_mut, - STATE(396), 1, + anon_sym_COMMA, + STATE(402), 1, sym_qualified_identifier, - STATE(417), 1, + STATE(1288), 1, + aux_sym_parameter_repeat1, + STATE(2005), 1, sym_type, - ACTIONS(319), 2, + ACTIONS(283), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(324), 2, + ACTIONS(287), 2, anon_sym_AT, anon_sym_STAR, - STATE(400), 7, + STATE(399), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -125877,7 +127396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(37), 32, + ACTIONS(39), 32, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -125910,710 +127429,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [2701] = 11, + [2868] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1685), 1, sym_identifier, - ACTIONS(3216), 1, + ACTIONS(3230), 1, anon_sym_QMARK, - ACTIONS(3218), 1, - anon_sym_LBRACK, - ACTIONS(3238), 1, - anon_sym_mut, - STATE(396), 1, - sym_qualified_identifier, - STATE(439), 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, - [2774] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, - sym_identifier, - ACTIONS(3216), 1, - anon_sym_QMARK, - ACTIONS(3218), 1, - anon_sym_LBRACK, - ACTIONS(3240), 1, - anon_sym_mut, - STATE(396), 1, - sym_qualified_identifier, - STATE(441), 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, - [2847] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, - sym_identifier, - ACTIONS(3216), 1, - anon_sym_QMARK, - ACTIONS(3218), 1, - anon_sym_LBRACK, - ACTIONS(3242), 1, - anon_sym_mut, - STATE(396), 1, - sym_qualified_identifier, - STATE(442), 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, - [2920] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, - sym_identifier, - ACTIONS(3216), 1, - anon_sym_QMARK, - ACTIONS(3218), 1, - anon_sym_LBRACK, - ACTIONS(3244), 1, - anon_sym_mut, - STATE(396), 1, - sym_qualified_identifier, - STATE(443), 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, - [2993] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(702), 1, - anon_sym_mut, - 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, - [3066] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(756), 1, - anon_sym_mut, - ACTIONS(1631), 1, - sym_identifier, - ACTIONS(3216), 1, - anon_sym_QMARK, - ACTIONS(3218), 1, - anon_sym_LBRACK, - STATE(396), 1, - sym_qualified_identifier, - STATE(420), 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, - [3139] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, - sym_identifier, - ACTIONS(3216), 1, - anon_sym_QMARK, - ACTIONS(3218), 1, - anon_sym_LBRACK, - ACTIONS(3246), 1, - anon_sym_mut, - STATE(396), 1, - sym_qualified_identifier, - STATE(439), 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, - [3212] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, - sym_identifier, - ACTIONS(3216), 1, - anon_sym_QMARK, - ACTIONS(3218), 1, - anon_sym_LBRACK, - ACTIONS(3248), 1, - anon_sym_mut, - STATE(396), 1, - sym_qualified_identifier, - STATE(419), 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, - [3285] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, - sym_identifier, - ACTIONS(3216), 1, - anon_sym_QMARK, - ACTIONS(3218), 1, - anon_sym_LBRACK, - ACTIONS(3250), 1, - anon_sym_mut, - STATE(396), 1, - sym_qualified_identifier, - STATE(419), 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, - [3358] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, - sym_identifier, - ACTIONS(3216), 1, - anon_sym_QMARK, - ACTIONS(3218), 1, - anon_sym_LBRACK, - ACTIONS(3252), 1, - anon_sym_mut, - STATE(396), 1, - sym_qualified_identifier, - STATE(449), 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, - [3431] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, - sym_identifier, - ACTIONS(3216), 1, - anon_sym_QMARK, - ACTIONS(3218), 1, - anon_sym_LBRACK, - ACTIONS(3254), 1, - anon_sym_mut, - STATE(396), 1, - sym_qualified_identifier, - STATE(450), 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, - [3504] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, - sym_identifier, - ACTIONS(3216), 1, - anon_sym_QMARK, - ACTIONS(3218), 1, + ACTIONS(3232), 1, anon_sym_LBRACK, ACTIONS(3256), 1, anon_sym_mut, - STATE(396), 1, + STATE(402), 1, sym_qualified_identifier, - STATE(441), 1, + STATE(409), 1, sym_type, - ACTIONS(319), 2, + ACTIONS(283), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(324), 2, + ACTIONS(287), 2, anon_sym_AT, anon_sym_STAR, - STATE(398), 7, + STATE(394), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -126621,7 +127458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(37), 32, + ACTIONS(39), 32, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -126654,152 +127491,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [3577] = 11, + [2941] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(608), 1, - anon_sym_mut, - ACTIONS(1631), 1, + ACTIONS(1685), 1, sym_identifier, - ACTIONS(3216), 1, + ACTIONS(3230), 1, anon_sym_QMARK, - ACTIONS(3218), 1, - anon_sym_LBRACK, - STATE(396), 1, - sym_qualified_identifier, - STATE(408), 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, - [3650] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(353), 1, - anon_sym_mut, - ACTIONS(1631), 1, - sym_identifier, - ACTIONS(3216), 1, - anon_sym_QMARK, - ACTIONS(3218), 1, - anon_sym_LBRACK, - STATE(396), 1, - sym_qualified_identifier, - STATE(431), 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, - [3723] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, - sym_identifier, - ACTIONS(3216), 1, - anon_sym_QMARK, - ACTIONS(3218), 1, + ACTIONS(3232), 1, anon_sym_LBRACK, ACTIONS(3258), 1, anon_sym_mut, - STATE(396), 1, + STATE(402), 1, sym_qualified_identifier, - STATE(427), 1, + STATE(409), 1, sym_type, - ACTIONS(319), 2, + ACTIONS(283), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(324), 2, + ACTIONS(287), 2, anon_sym_AT, anon_sym_STAR, - STATE(398), 7, + STATE(399), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -126807,7 +127520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(37), 32, + ACTIONS(39), 32, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -126840,28 +127553,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [3796] = 11, + [3014] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1685), 1, sym_identifier, - ACTIONS(3216), 1, + ACTIONS(3230), 1, anon_sym_QMARK, - ACTIONS(3218), 1, + ACTIONS(3232), 1, anon_sym_LBRACK, ACTIONS(3260), 1, anon_sym_mut, - STATE(396), 1, + STATE(402), 1, sym_qualified_identifier, - STATE(443), 1, + STATE(421), 1, sym_type, - ACTIONS(319), 2, + ACTIONS(283), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(324), 2, + ACTIONS(287), 2, anon_sym_AT, anon_sym_STAR, - STATE(398), 7, + STATE(399), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -126869,7 +127582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(37), 32, + ACTIONS(39), 32, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -126902,90 +127615,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [3869] = 11, + [3087] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(650), 1, - anon_sym_mut, - ACTIONS(1631), 1, + ACTIONS(1685), 1, sym_identifier, - ACTIONS(3216), 1, + ACTIONS(3230), 1, anon_sym_QMARK, - ACTIONS(3218), 1, - anon_sym_LBRACK, - STATE(396), 1, - sym_qualified_identifier, - STATE(431), 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, - [3942] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, - sym_identifier, - ACTIONS(3216), 1, - anon_sym_QMARK, - ACTIONS(3218), 1, + ACTIONS(3232), 1, anon_sym_LBRACK, ACTIONS(3262), 1, anon_sym_mut, - STATE(396), 1, + STATE(402), 1, sym_qualified_identifier, - STATE(449), 1, + STATE(411), 1, sym_type, - ACTIONS(319), 2, + ACTIONS(283), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(324), 2, + ACTIONS(287), 2, anon_sym_AT, anon_sym_STAR, - STATE(398), 7, + STATE(394), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -126993,7 +127644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(37), 32, + ACTIONS(39), 32, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -127026,90 +127677,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4015] = 11, + [3160] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(592), 1, - anon_sym_mut, - ACTIONS(1631), 1, + ACTIONS(1685), 1, sym_identifier, - ACTIONS(3216), 1, + ACTIONS(3230), 1, anon_sym_QMARK, - ACTIONS(3218), 1, - anon_sym_LBRACK, - STATE(396), 1, - sym_qualified_identifier, - STATE(408), 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, - [4088] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, - sym_identifier, - ACTIONS(3216), 1, - anon_sym_QMARK, - ACTIONS(3218), 1, + ACTIONS(3232), 1, anon_sym_LBRACK, ACTIONS(3264), 1, anon_sym_mut, - STATE(396), 1, + STATE(402), 1, sym_qualified_identifier, - STATE(450), 1, + STATE(404), 1, sym_type, - ACTIONS(319), 2, + ACTIONS(283), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(324), 2, + ACTIONS(287), 2, anon_sym_AT, anon_sym_STAR, - STATE(398), 7, + STATE(394), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -127117,7 +127706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(37), 32, + ACTIONS(39), 32, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -127150,28 +127739,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4161] = 11, + [3233] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1685), 1, sym_identifier, - ACTIONS(3216), 1, + ACTIONS(3230), 1, anon_sym_QMARK, - ACTIONS(3218), 1, + ACTIONS(3232), 1, anon_sym_LBRACK, ACTIONS(3266), 1, anon_sym_mut, - STATE(396), 1, + STATE(402), 1, + sym_qualified_identifier, + STATE(412), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [3306] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(327), 1, + anon_sym_mut, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, sym_qualified_identifier, STATE(427), 1, sym_type, - ACTIONS(319), 2, + ACTIONS(283), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(324), 2, + ACTIONS(287), 2, anon_sym_AT, anon_sym_STAR, - STATE(400), 7, + STATE(394), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -127179,7 +127830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(37), 32, + ACTIONS(39), 32, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -127212,28 +127863,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4234] = 11, + [3379] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(385), 1, + anon_sym_mut, + ACTIONS(1685), 1, sym_identifier, - ACTIONS(3216), 1, + ACTIONS(3230), 1, anon_sym_QMARK, - ACTIONS(3218), 1, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(418), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [3452] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, anon_sym_LBRACK, ACTIONS(3268), 1, anon_sym_mut, - STATE(396), 1, + STATE(402), 1, sym_qualified_identifier, - STATE(428), 1, + STATE(422), 1, sym_type, - ACTIONS(319), 2, + ACTIONS(283), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(324), 2, + ACTIONS(287), 2, anon_sym_AT, anon_sym_STAR, - STATE(398), 7, + STATE(399), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -127241,7 +127954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(37), 32, + ACTIONS(39), 32, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -127274,152 +127987,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4307] = 11, + [3525] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(626), 1, - anon_sym_mut, - ACTIONS(1631), 1, + ACTIONS(1685), 1, sym_identifier, - ACTIONS(3216), 1, + ACTIONS(3230), 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(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, - [4380] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(329), 1, - anon_sym_mut, - ACTIONS(1631), 1, - sym_identifier, - ACTIONS(3216), 1, - anon_sym_QMARK, - ACTIONS(3218), 1, - anon_sym_LBRACK, - STATE(396), 1, - sym_qualified_identifier, - STATE(456), 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, - [4453] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, - sym_identifier, - ACTIONS(3216), 1, - anon_sym_QMARK, - ACTIONS(3218), 1, + ACTIONS(3232), 1, anon_sym_LBRACK, ACTIONS(3270), 1, anon_sym_mut, - STATE(396), 1, + STATE(402), 1, sym_qualified_identifier, - STATE(428), 1, + STATE(412), 1, sym_type, - ACTIONS(319), 2, + ACTIONS(283), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(324), 2, + ACTIONS(287), 2, anon_sym_AT, anon_sym_STAR, - STATE(400), 7, + STATE(399), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -127427,7 +128016,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(37), 32, + ACTIONS(39), 32, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -127460,28 +128049,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4526] = 11, + [3598] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1685), 1, sym_identifier, - ACTIONS(3216), 1, + ACTIONS(3230), 1, anon_sym_QMARK, - ACTIONS(3218), 1, + ACTIONS(3232), 1, anon_sym_LBRACK, ACTIONS(3272), 1, - anon_sym_enum, - STATE(396), 1, + anon_sym_mut, + STATE(402), 1, sym_qualified_identifier, - STATE(2150), 1, + STATE(405), 1, sym_type, - ACTIONS(319), 2, + ACTIONS(283), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(324), 2, + ACTIONS(287), 2, anon_sym_AT, anon_sym_STAR, - STATE(400), 7, + STATE(399), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -127489,7 +128078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(37), 32, + ACTIONS(39), 32, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -127522,28 +128111,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4599] = 11, + [3671] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1685), 1, sym_identifier, - ACTIONS(3216), 1, + ACTIONS(3230), 1, anon_sym_QMARK, - ACTIONS(3218), 1, + ACTIONS(3232), 1, anon_sym_LBRACK, ACTIONS(3274), 1, anon_sym_mut, - STATE(396), 1, + STATE(402), 1, sym_qualified_identifier, - STATE(460), 1, + STATE(422), 1, sym_type, - ACTIONS(319), 2, + ACTIONS(283), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(324), 2, + ACTIONS(287), 2, anon_sym_AT, anon_sym_STAR, - STATE(400), 7, + STATE(394), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -127551,7 +128140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(37), 32, + ACTIONS(39), 32, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -127584,28 +128173,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4672] = 11, + [3744] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(403), 1, + anon_sym_mut, + ACTIONS(1685), 1, sym_identifier, - ACTIONS(3216), 1, + ACTIONS(3230), 1, anon_sym_QMARK, - ACTIONS(3218), 1, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(418), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [3817] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(335), 1, + anon_sym_mut, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(426), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [3890] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, anon_sym_LBRACK, ACTIONS(3276), 1, anon_sym_mut, - STATE(396), 1, + STATE(402), 1, sym_qualified_identifier, - STATE(460), 1, + STATE(405), 1, sym_type, - ACTIONS(319), 2, + ACTIONS(283), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(324), 2, + ACTIONS(287), 2, anon_sym_AT, anon_sym_STAR, - STATE(398), 7, + STATE(394), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -127613,7 +128326,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(37), 32, + ACTIONS(39), 32, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -127646,28 +128359,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4745] = 11, + [3963] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1685), 1, sym_identifier, - ACTIONS(3216), 1, + ACTIONS(3230), 1, anon_sym_QMARK, - ACTIONS(3218), 1, + ACTIONS(3232), 1, anon_sym_LBRACK, ACTIONS(3278), 1, anon_sym_mut, - STATE(396), 1, + STATE(402), 1, sym_qualified_identifier, - STATE(417), 1, + STATE(404), 1, sym_type, - ACTIONS(319), 2, + ACTIONS(283), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(324), 2, + ACTIONS(287), 2, anon_sym_AT, anon_sym_STAR, - STATE(398), 7, + STATE(399), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -127675,7 +128388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(37), 32, + ACTIONS(39), 32, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -127708,90 +128421,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4818] = 11, + [4036] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(634), 1, - anon_sym_mut, - ACTIONS(1631), 1, + ACTIONS(1685), 1, sym_identifier, - ACTIONS(3216), 1, + ACTIONS(3230), 1, anon_sym_QMARK, - ACTIONS(3218), 1, - anon_sym_LBRACK, - STATE(396), 1, - sym_qualified_identifier, - STATE(420), 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, - [4891] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1631), 1, - sym_identifier, - ACTIONS(3216), 1, - anon_sym_QMARK, - ACTIONS(3218), 1, + ACTIONS(3232), 1, anon_sym_LBRACK, ACTIONS(3280), 1, anon_sym_mut, - STATE(396), 1, + STATE(402), 1, sym_qualified_identifier, - STATE(442), 1, + STATE(411), 1, sym_type, - ACTIONS(319), 2, + ACTIONS(283), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(324), 2, + ACTIONS(287), 2, anon_sym_AT, anon_sym_STAR, - STATE(398), 7, + STATE(399), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -127799,7 +128450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(37), 32, + ACTIONS(39), 32, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -127832,326 +128483,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4964] = 10, + [4109] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1685), 1, sym_identifier, - ACTIONS(3216), 1, + ACTIONS(3230), 1, anon_sym_QMARK, - ACTIONS(3218), 1, + ACTIONS(3232), 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(1631), 1, - sym_identifier, - ACTIONS(3216), 1, - anon_sym_QMARK, - ACTIONS(3218), 1, - anon_sym_LBRACK, - STATE(396), 1, - sym_qualified_identifier, - STATE(444), 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, - [5174] = 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(455), 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, - [5244] = 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(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, - [5314] = 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, + ACTIONS(3282), 1, + anon_sym_mut, + STATE(402), 1, sym_qualified_identifier, STATE(448), 1, sym_type, - ACTIONS(319), 2, + ACTIONS(283), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(324), 2, + ACTIONS(287), 2, anon_sym_AT, anon_sym_STAR, - STATE(398), 7, + STATE(399), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -128159,7 +128512,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(37), 32, + ACTIONS(39), 32, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -128192,26 +128545,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [5384] = 10, + [4182] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(345), 1, + anon_sym_mut, + ACTIONS(1685), 1, sym_identifier, - ACTIONS(3216), 1, + ACTIONS(3230), 1, anon_sym_QMARK, - ACTIONS(3218), 1, + ACTIONS(3232), 1, anon_sym_LBRACK, - STATE(396), 1, + STATE(402), 1, sym_qualified_identifier, STATE(449), 1, sym_type, - ACTIONS(319), 2, + ACTIONS(283), 2, anon_sym_func, anon_sym_c_func, - ACTIONS(324), 2, + ACTIONS(287), 2, anon_sym_AT, anon_sym_STAR, - STATE(398), 7, + STATE(399), 7, sym__type_atom, sym_named_type, sym_optional_type, @@ -128219,7 +128574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(37), 32, + ACTIONS(39), 32, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, @@ -128252,1997 +128607,3347 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [5454] = 10, + [4255] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1631), 1, + ACTIONS(1685), 1, sym_identifier, - ACTIONS(3216), 1, + ACTIONS(3230), 1, anon_sym_QMARK, - ACTIONS(3218), 1, + ACTIONS(3232), 1, anon_sym_LBRACK, - STATE(396), 1, - sym_qualified_identifier, - STATE(450), 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, - [5524] = 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(2103), 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, - [5594] = 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(413), 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, - [5664] = 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(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, - [5734] = 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(407), 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, - [5804] = 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(419), 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, - [5874] = 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(428), 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, - [5944] = 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(407), 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, - [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(1631), 1, - sym_identifier, - ACTIONS(3216), 1, - anon_sym_QMARK, - ACTIONS(3218), 1, - anon_sym_LBRACK, - STATE(396), 1, - sym_qualified_identifier, - STATE(419), 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, - [6154] = 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(430), 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, - [6224] = 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(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, - [6294] = 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(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, - [6364] = 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(431), 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, - [6434] = 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(1771), 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, - [6504] = 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(428), 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, - [6574] = 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(432), 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, - [6644] = 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(430), 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, - [6714] = 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(431), 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, - [6784] = 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(432), 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, - [6854] = 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(439), 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, - [6924] = 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(440), 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, - [6994] = 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(441), 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, - [7064] = 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(1772), 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, - [7134] = 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(444), 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, - [7204] = 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(439), 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, - [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(1631), 1, - sym_identifier, - ACTIONS(3216), 1, - anon_sym_QMARK, - ACTIONS(3218), 1, - anon_sym_LBRACK, - STATE(396), 1, - sym_qualified_identifier, - STATE(449), 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, - [7484] = 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(441), 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, - [7554] = 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(450), 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, - [7624] = 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(440), 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, - [7694] = 9, - 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, - ACTIONS(319), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(324), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(458), 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, - [7761] = 5, - ACTIONS(3), 1, - sym_comment, ACTIONS(3284), 1, + anon_sym_mut, + STATE(402), 1, + sym_qualified_identifier, + STATE(408), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [4328] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(289), 1, + anon_sym_mut, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(427), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [4401] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(397), 1, + anon_sym_mut, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(451), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [4474] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + ACTIONS(3286), 1, + anon_sym_mut, + STATE(402), 1, + sym_qualified_identifier, + STATE(450), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [4547] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + ACTIONS(3288), 1, + anon_sym_mut, + STATE(402), 1, + sym_qualified_identifier, + STATE(407), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [4620] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(359), 1, + anon_sym_mut, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(449), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [4693] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + ACTIONS(3290), 1, + anon_sym_mut, + STATE(402), 1, + sym_qualified_identifier, + STATE(448), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [4766] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + ACTIONS(3292), 1, + anon_sym_mut, + STATE(402), 1, + sym_qualified_identifier, + STATE(450), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [4839] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + ACTIONS(3294), 1, + anon_sym_mut, + STATE(402), 1, + sym_qualified_identifier, + STATE(459), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [4912] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(367), 1, + anon_sym_mut, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(451), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [4985] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + ACTIONS(3296), 1, + anon_sym_mut, + STATE(402), 1, + sym_qualified_identifier, + STATE(421), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [5058] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + ACTIONS(3298), 1, + anon_sym_mut, + STATE(402), 1, + sym_qualified_identifier, + STATE(408), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [5131] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + ACTIONS(3300), 1, + anon_sym_enum, + STATE(402), 1, + sym_qualified_identifier, + STATE(2188), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [5204] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(307), 1, + anon_sym_mut, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(461), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [5277] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + ACTIONS(3302), 1, + anon_sym_mut, + STATE(402), 1, + sym_qualified_identifier, + STATE(407), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [5350] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(2206), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [5420] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(422), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [5490] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(454), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [5560] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(414), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [5630] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(418), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [5700] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(406), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [5770] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(432), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [5840] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(433), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [5910] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(428), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [5980] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(1557), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [6050] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(407), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [6120] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(404), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [6190] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(449), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [6260] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(414), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [6330] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(405), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [6400] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(418), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [6470] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(405), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [6540] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(406), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [6610] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(407), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [6680] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(456), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [6750] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(449), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [6820] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(432), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [6890] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(410), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [6960] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(450), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [7030] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(410), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [7100] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(433), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [7170] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(422), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [7240] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(450), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [7310] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(417), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [7380] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(420), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [7450] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(417), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [7520] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(421), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [7590] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(420), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [7660] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(1562), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [7730] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(421), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [7800] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(428), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [7870] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(426), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [7940] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(404), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(394), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [8010] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + STATE(426), 1, + sym_type, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(399), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [8080] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 1, + sym_identifier, + ACTIONS(3230), 1, + anon_sym_QMARK, + ACTIONS(3232), 1, + anon_sym_LBRACK, + STATE(402), 1, + sym_qualified_identifier, + ACTIONS(283), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(287), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(413), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(39), 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, + [8147] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3306), 1, anon_sym_COMMA, - STATE(1360), 1, + STATE(1373), 1, aux_sym_parameter_repeat1, - ACTIONS(3287), 4, + ACTIONS(3309), 4, anon_sym_QMARK, anon_sym_AT, anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(3282), 35, + ACTIONS(3304), 35, anon_sym_func, anon_sym_c_func, anon_sym_void, @@ -130278,16 +131983,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [7814] = 3, + [8200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3291), 5, + ACTIONS(3313), 5, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AT, anon_sym_STAR, anon_sym_LBRACK, - sym__newline, - ACTIONS(3289), 35, + ACTIONS(3311), 35, anon_sym_func, anon_sym_c_func, anon_sym_void, @@ -130323,16 +132028,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [7862] = 3, + [8248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3295), 5, + ACTIONS(3317), 5, anon_sym_QMARK, anon_sym_AT, anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(3293), 35, + ACTIONS(3315), 35, anon_sym_func, anon_sym_c_func, anon_sym_void, @@ -130368,16 +132073,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [7910] = 3, + [8296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3299), 5, + ACTIONS(3321), 5, anon_sym_QMARK, anon_sym_AT, anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(3297), 35, + ACTIONS(3319), 35, anon_sym_func, anon_sym_c_func, anon_sym_void, @@ -130413,16 +132118,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [7958] = 3, + [8344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3303), 5, - anon_sym_COMMA, + ACTIONS(3325), 5, anon_sym_QMARK, anon_sym_AT, anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(3301), 35, + sym__newline, + ACTIONS(3323), 35, anon_sym_func, anon_sym_c_func, anon_sym_void, @@ -130458,16 +132163,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [8006] = 3, + [8392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3307), 5, + ACTIONS(3329), 5, anon_sym_QMARK, anon_sym_AT, anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(3305), 35, + ACTIONS(3327), 35, anon_sym_func, anon_sym_c_func, anon_sym_void, @@ -130503,16 +132208,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [8054] = 3, + [8440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3311), 5, + ACTIONS(3333), 5, anon_sym_QMARK, anon_sym_AT, anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(3309), 35, + ACTIONS(3331), 35, anon_sym_func, anon_sym_c_func, anon_sym_void, @@ -130548,16 +132253,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [8102] = 3, + [8488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3315), 5, + ACTIONS(3337), 5, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_AT, anon_sym_STAR, anon_sym_LBRACK, - sym__newline, - ACTIONS(3313), 35, + ACTIONS(3335), 35, anon_sym_func, anon_sym_c_func, anon_sym_void, @@ -130593,16 +132298,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [8150] = 3, + [8536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3319), 5, + ACTIONS(3341), 5, anon_sym_QMARK, anon_sym_AT, anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(3317), 35, + ACTIONS(3339), 35, anon_sym_func, anon_sym_c_func, anon_sym_void, @@ -130638,16 +132343,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [8198] = 3, + [8584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3323), 5, - anon_sym_COMMA, + ACTIONS(3345), 5, anon_sym_QMARK, anon_sym_AT, anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(3321), 35, + sym__newline, + ACTIONS(3343), 35, anon_sym_func, anon_sym_c_func, anon_sym_void, @@ -130683,39 +132388,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [8246] = 12, + [8632] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_DOT, - STATE(523), 1, + STATE(504), 1, sym_argument_list, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3325), 2, + ACTIONS(3347), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3327), 2, + ACTIONS(3349), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3331), 2, + ACTIONS(3353), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1440), 3, + ACTIONS(1444), 3, anon_sym_EQ, anon_sym_DOT_DOT, anon_sym_or, - ACTIONS(3329), 4, + ACTIONS(3351), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1438), 15, + ACTIONS(1442), 15, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, @@ -130731,82 +132436,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_and, sym__newline, - [8306] = 13, + [8692] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_DOT, - ACTIONS(3333), 1, - anon_sym_and, - STATE(523), 1, + STATE(504), 1, sym_argument_list, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3325), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3327), 2, + ACTIONS(3349), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3331), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1440), 3, + ACTIONS(981), 7, 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(1438), 14, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [8368] = 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(929), 5, - anon_sym_EQ, anon_sym_DOT_DOT, anon_sym_or, anon_sym_LT, anon_sym_GT, - ACTIONS(927), 19, + anon_sym_PLUS, + ACTIONS(979), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, @@ -130826,32 +132481,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym__newline, - [8424] = 9, + [8746] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_DOT, - STATE(523), 1, + STATE(504), 1, sym_argument_list, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3327), 2, + ACTIONS(3347), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3349), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(993), 7, + ACTIONS(981), 5, anon_sym_EQ, - anon_sym_DASH, anon_sym_DOT_DOT, anon_sym_or, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - ACTIONS(991), 19, + ACTIONS(979), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, @@ -130871,46 +132527,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym__newline, - [8478] = 16, + [8802] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_DOT, - ACTIONS(3333), 1, - anon_sym_and, - ACTIONS(3335), 1, + ACTIONS(3355), 1, anon_sym_orelse, - ACTIONS(3337), 1, + ACTIONS(3357), 1, anon_sym_catch, - ACTIONS(3339), 1, + ACTIONS(3359), 1, anon_sym_or, - STATE(523), 1, + ACTIONS(3361), 1, + anon_sym_and, + STATE(504), 1, sym_argument_list, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(993), 2, + ACTIONS(981), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(3325), 2, + ACTIONS(3347), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3327), 2, + ACTIONS(3349), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3331), 2, + ACTIONS(3353), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3329), 4, + ACTIONS(3351), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(991), 12, + ACTIONS(979), 12, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, @@ -130923,180 +132579,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_DOT_DOT_EQ, sym__newline, - [8546] = 14, + [8870] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_DOT, - ACTIONS(3333), 1, - anon_sym_and, - ACTIONS(3339), 1, - anon_sym_or, - STATE(523), 1, + STATE(504), 1, sym_argument_list, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(993), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3325), 2, + ACTIONS(3347), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3327), 2, + ACTIONS(3349), 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(991), 14, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [8610] = 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(3333), 1, - anon_sym_and, - 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(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), 14, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [8672] = 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(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(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, + ACTIONS(1113), 5, anon_sym_EQ, anon_sym_DOT_DOT, anon_sym_or, anon_sym_LT, anon_sym_GT, - ACTIONS(991), 19, + ACTIONS(1111), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACE, @@ -131116,1521 +132625,1626 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym__newline, - [8788] = 9, + [8926] = 13, 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(3327), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(929), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - ACTIONS(927), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym__newline, - [8842] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(931), 1, + ACTIONS(983), 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, - STATE(523), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(929), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - 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(927), 12, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - sym__newline, - [8910] = 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(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(929), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - 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(927), 14, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_else, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - sym__newline, - [8974] = 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(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), 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, - [9026] = 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(993), 5, - anon_sym_import, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - sym_identifier, - 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, - [9092] = 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(927), 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(929), 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, - [9144] = 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(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), 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, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - sym_identifier, - [9324] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, - ACTIONS(933), 1, + ACTIONS(985), 1, anon_sym_DOT, ACTIONS(3361), 1, - anon_sym_or, - ACTIONS(3363), 1, anon_sym_and, - STATE(523), 1, + STATE(504), 1, sym_argument_list, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3357), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3359), 2, + ACTIONS(3347), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3367), 2, + ACTIONS(3349), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3353), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3365), 4, + ACTIONS(1444), 3, + anon_sym_EQ, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(3351), 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, + ACTIONS(1442), 14, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - anon_sym_COLON, + anon_sym_else, anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, sym__newline, - [9386] = 13, + [8988] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_DOT, - ACTIONS(3351), 1, - anon_sym_and, - STATE(523), 1, + STATE(504), 1, sym_argument_list, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3341), 2, + ACTIONS(3349), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3343), 2, + ACTIONS(1113), 7, + anon_sym_EQ, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3355), 2, + anon_sym_DOT_DOT, + anon_sym_or, 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, + ACTIONS(1111), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(1440), 8, - anon_sym_import, - anon_sym_EQ, anon_sym_else, - anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_orelse, anon_sym_catch, - anon_sym_or, - sym_identifier, - [9446] = 12, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym__newline, + [9042] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_DOT, - STATE(523), 1, + ACTIONS(3359), 1, + anon_sym_or, + ACTIONS(3361), 1, + anon_sym_and, + STATE(504), 1, sym_argument_list, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3341), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3343), 2, + ACTIONS(1113), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(3347), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3355), 2, + ACTIONS(3349), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3353), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3353), 4, + ACTIONS(3351), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1438), 7, - ts_builtin_sym_end, + ACTIONS(1111), 14, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - anon_sym_DOT_DOT_EQ, - sym__newline, - ACTIONS(1440), 9, - anon_sym_import, - anon_sym_EQ, anon_sym_else, - anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, 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, + [9106] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 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, + STATE(504), 1, sym_argument_list, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3357), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3359), 2, + ACTIONS(3347), 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, + ACTIONS(3349), 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, - 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, - [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, - 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, - [9922] = 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(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, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, - sym_identifier, - [10042] = 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(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(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(993), 6, - anon_sym_EQ, - anon_sym_else, - anon_sym_DOT_DOT, - anon_sym_orelse, - anon_sym_catch, - sym_identifier, - 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, - [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, + ACTIONS(3353), 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, + ACTIONS(3351), 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(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(3377), 1, - anon_sym_DOT_DOT, - ACTIONS(3379), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3381), 1, - anon_sym_EQ, - STATE(523), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1448), 2, - anon_sym_import, - sym_identifier, - 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(3353), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3383), 4, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [10529] = 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(3361), 1, - anon_sym_or, - ACTIONS(3363), 1, - anon_sym_and, - 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(523), 1, - sym_argument_list, - ACTIONS(31), 2, - anon_sym_QMARK, - anon_sym_CARET, - ACTIONS(1448), 2, - anon_sym_else, - sym_identifier, - ACTIONS(1452), 2, - anon_sym_LBRACE, - sym__newline, - 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(3387), 4, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - [10602] = 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(3333), 1, - anon_sym_and, - 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(3395), 1, + ACTIONS(1446), 14, anon_sym_RPAREN, - ACTIONS(3400), 1, - anon_sym_DOT_DOT, - ACTIONS(3402), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3404), 1, - sym__newline, - STATE(523), 1, - sym_argument_list, - STATE(1959), 1, - aux_sym_import_declaration_repeat1, - 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(3329), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3398), 4, + 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, - [10676] = 20, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [9168] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_DOT, - ACTIONS(1448), 1, - sym_identifier, - ACTIONS(3361), 1, - anon_sym_or, - ACTIONS(3363), 1, - anon_sym_and, - ACTIONS(3369), 1, - anon_sym_orelse, - ACTIONS(3371), 1, - anon_sym_catch, - ACTIONS(3389), 1, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3347), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3349), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3353), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1448), 3, + anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(3391), 1, + anon_sym_or, + ACTIONS(3351), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1446), 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, + [9228] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 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(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1113), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(3347), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3349), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3353), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3351), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1111), 12, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + sym__newline, + [9296] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3359), 1, + anon_sym_or, + ACTIONS(3361), 1, + anon_sym_and, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(981), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(3347), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3349), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3353), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3351), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(979), 14, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_else, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [9360] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3363), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3365), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(979), 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(981), 12, + anon_sym_import, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + [9415] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3367), 1, + anon_sym_EQ, + ACTIONS(3371), 1, + anon_sym_DOT_DOT, + ACTIONS(3373), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3375), 1, + anon_sym_orelse, + ACTIONS(3377), 1, + anon_sym_catch, + ACTIONS(3379), 1, + anon_sym_or, + ACTIONS(3381), 1, + anon_sym_and, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1472), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(3363), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3365), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3385), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1468), 4, + anon_sym_import, + anon_sym_hide, + anon_sym_else, + sym_identifier, + ACTIONS(3369), 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + ACTIONS(3383), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [9490] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_orelse, + ACTIONS(3377), 1, + anon_sym_catch, + ACTIONS(3379), 1, + anon_sym_or, + ACTIONS(3381), 1, + anon_sym_and, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3363), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3365), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3385), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3383), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1113), 6, + anon_sym_import, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(1111), 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, + [9557] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3379), 1, + anon_sym_or, + ACTIONS(3381), 1, + anon_sym_and, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3363), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3365), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3385), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3383), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1111), 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(1113), 8, + anon_sym_import, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + [9620] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3381), 1, + anon_sym_and, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3363), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3365), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3385), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3383), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1446), 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(1448), 9, + anon_sym_import, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + sym_identifier, + [9681] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3379), 1, + anon_sym_or, + ACTIONS(3381), 1, + anon_sym_and, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3363), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3365), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3385), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3383), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(979), 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(981), 8, + anon_sym_import, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + [9744] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3363), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3365), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3385), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3383), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1446), 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(1448), 10, + anon_sym_import, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + sym_identifier, + [9803] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_orelse, + ACTIONS(3377), 1, + anon_sym_catch, + ACTIONS(3379), 1, + anon_sym_or, + ACTIONS(3381), 1, + anon_sym_and, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3363), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3365), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3385), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3383), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(981), 6, + anon_sym_import, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(979), 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] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3363), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3365), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1111), 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(1113), 12, + anon_sym_import, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + [9925] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3365), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1111), 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(1113), 14, + anon_sym_import, + anon_sym_hide, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + sym_identifier, + [9978] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3365), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(979), 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(981), 14, + anon_sym_import, + anon_sym_hide, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + sym_identifier, + [10031] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3381), 1, + anon_sym_and, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3363), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3365), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3385), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3383), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1442), 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(1444), 9, + anon_sym_import, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + sym_identifier, + [10092] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3363), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3365), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3385), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3383), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1442), 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(1444), 10, + anon_sym_import, + anon_sym_hide, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + anon_sym_and, + sym_identifier, + [10151] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3387), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3389), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(981), 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(979), 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, + [10205] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3371), 1, + anon_sym_DOT_DOT, + ACTIONS(3373), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3375), 1, + anon_sym_orelse, + ACTIONS(3377), 1, + anon_sym_catch, + ACTIONS(3379), 1, + anon_sym_or, + ACTIONS(3381), 1, + anon_sym_and, + ACTIONS(3391), 1, + anon_sym_EQ, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1472), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(3363), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3365), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3385), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1468), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + ACTIONS(3383), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3393), 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [10279] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3395), 1, + anon_sym_orelse, + ACTIONS(3397), 1, + anon_sym_catch, + ACTIONS(3399), 1, + anon_sym_or, + ACTIONS(3401), 1, + anon_sym_and, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3387), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3389), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3405), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(981), 4, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(3403), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(979), 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, + [10345] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3399), 1, + anon_sym_or, + ACTIONS(3401), 1, + anon_sym_and, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3387), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3389), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3405), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3403), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(981), 6, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + ACTIONS(979), 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, + [10407] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3401), 1, + anon_sym_and, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3387), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3389), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3405), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3403), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1444), 7, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + sym_identifier, + ACTIONS(1442), 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, + [10467] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3389), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(979), 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(981), 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, + [10519] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3387), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3389), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3405), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3403), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1442), 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(1444), 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, + [10577] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3399), 1, + anon_sym_or, + ACTIONS(3401), 1, + anon_sym_and, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3387), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3389), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3405), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3403), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1113), 6, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + sym_identifier, + ACTIONS(1111), 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, + [10639] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3401), 1, + anon_sym_and, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3387), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3389), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3405), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3403), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1448), 7, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_or, + sym_identifier, + ACTIONS(1446), 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, + [10699] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3395), 1, + anon_sym_orelse, + ACTIONS(3397), 1, + anon_sym_catch, + ACTIONS(3399), 1, + anon_sym_or, + ACTIONS(3401), 1, + anon_sym_and, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3387), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3389), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3405), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1113), 4, + anon_sym_EQ, + anon_sym_else, + anon_sym_DOT_DOT, + sym_identifier, + ACTIONS(3403), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1111), 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, + [10765] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3389), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1111), 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(1113), 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, + [10817] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3387), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3389), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1113), 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(1111), 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, + [10871] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3387), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3389), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3405), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3403), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1446), 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(1448), 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, + [10929] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3395), 1, + anon_sym_orelse, + ACTIONS(3397), 1, + anon_sym_catch, + ACTIONS(3399), 1, + anon_sym_or, + ACTIONS(3401), 1, + anon_sym_and, ACTIONS(3407), 1, anon_sym_EQ, - STATE(523), 1, + ACTIONS(3411), 1, + anon_sym_DOT_DOT, + ACTIONS(3413), 1, + anon_sym_DOT_DOT_EQ, + STATE(504), 1, sym_argument_list, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(1452), 2, + ACTIONS(1468), 2, + anon_sym_else, + sym_identifier, + ACTIONS(1472), 2, anon_sym_LBRACE, sym__newline, - ACTIONS(3357), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3359), 2, + ACTIONS(3387), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3367), 2, + ACTIONS(3389), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3405), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3365), 4, + ACTIONS(3403), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -132640,1597 +134254,1492 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [10748] = 21, + [11002] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_DOT, - ACTIONS(3333), 1, - anon_sym_and, - ACTIONS(3335), 1, + ACTIONS(1468), 1, + sym_identifier, + ACTIONS(3395), 1, anon_sym_orelse, - ACTIONS(3337), 1, + ACTIONS(3397), 1, anon_sym_catch, - ACTIONS(3339), 1, + ACTIONS(3399), 1, anon_sym_or, - ACTIONS(3393), 1, - anon_sym_EQ, - ACTIONS(3400), 1, - anon_sym_DOT_DOT, - ACTIONS(3402), 1, - anon_sym_DOT_DOT_EQ, + ACTIONS(3401), 1, + anon_sym_and, ACTIONS(3411), 1, - anon_sym_RPAREN, - ACTIONS(3414), 1, - sym__newline, - STATE(523), 1, + anon_sym_DOT_DOT, + ACTIONS(3413), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3415), 1, + anon_sym_EQ, + STATE(504), 1, sym_argument_list, - STATE(1999), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3325), 2, + ACTIONS(1472), 2, + anon_sym_LBRACE, + sym__newline, + ACTIONS(3387), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3327), 2, + ACTIONS(3389), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3331), 2, + ACTIONS(3405), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3329), 4, + ACTIONS(3403), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3398), 4, + ACTIONS(3417), 4, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [10822] = 19, + [11074] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_DOT, - ACTIONS(3333), 1, - anon_sym_and, - ACTIONS(3335), 1, + ACTIONS(3355), 1, anon_sym_orelse, - ACTIONS(3337), 1, + ACTIONS(3357), 1, anon_sym_catch, - ACTIONS(3339), 1, + ACTIONS(3359), 1, anon_sym_or, - ACTIONS(3400), 1, - anon_sym_DOT_DOT, - ACTIONS(3402), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3417), 1, + ACTIONS(3361), 1, + anon_sym_and, + ACTIONS(3419), 1, anon_sym_EQ, - STATE(523), 1, + ACTIONS(3421), 1, + anon_sym_RPAREN, + ACTIONS(3426), 1, + anon_sym_DOT_DOT, + ACTIONS(3428), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3430), 1, + sym__newline, + STATE(504), 1, sym_argument_list, - ACTIONS(31), 2, + STATE(2060), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3325), 2, + ACTIONS(3347), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3327), 2, + ACTIONS(3349), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3331), 2, + ACTIONS(3353), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1452), 3, + ACTIONS(3351), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3424), 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [11148] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 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(3419), 1, + anon_sym_EQ, + ACTIONS(3426), 1, + anon_sym_DOT_DOT, + ACTIONS(3428), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3433), 1, + anon_sym_RPAREN, + ACTIONS(3436), 1, + sym__newline, + STATE(504), 1, + sym_argument_list, + STATE(2044), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3347), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3349), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3353), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3351), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3424), 4, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + [11222] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 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(3426), 1, + anon_sym_DOT_DOT, + ACTIONS(3428), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3439), 1, + anon_sym_EQ, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3347), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3349), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3353), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1472), 3, anon_sym_RPAREN, anon_sym_else, sym__newline, - ACTIONS(3329), 4, + ACTIONS(3351), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3419), 4, + ACTIONS(3441), 4, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [10892] = 23, + [11292] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_DOT, - ACTIONS(3421), 1, + ACTIONS(3443), 1, anon_sym_COMMA, - ACTIONS(3425), 1, - anon_sym_PIPE, - ACTIONS(3429), 1, - anon_sym_COLON, - 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(3447), 1, + anon_sym_PIPE, + ACTIONS(3451), 1, + anon_sym_COLON, + ACTIONS(3453), 1, + anon_sym_DOT_DOT, + ACTIONS(3455), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3457), 1, + anon_sym_orelse, + ACTIONS(3459), 1, + anon_sym_catch, + ACTIONS(3461), 1, + anon_sym_or, + ACTIONS(3463), 1, + anon_sym_and, + ACTIONS(3469), 1, sym__newline, - STATE(523), 1, + STATE(504), 1, sym_argument_list, - STATE(1515), 1, + STATE(1536), 1, aux_sym_match_arm_repeat1, - STATE(1917), 1, + STATE(2054), 1, aux_sym_import_declaration_repeat1, - STATE(2092), 1, + STATE(2182), 1, sym_match_capture, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3423), 2, + ACTIONS(3445), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3427), 2, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3445), 2, + ACTIONS(3467), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3443), 4, + ACTIONS(3465), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [10969] = 19, + [11369] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_DOT, - ACTIONS(3333), 1, - anon_sym_and, - ACTIONS(3335), 1, + ACTIONS(3355), 1, anon_sym_orelse, - ACTIONS(3337), 1, + ACTIONS(3357), 1, anon_sym_catch, - ACTIONS(3339), 1, + ACTIONS(3359), 1, anon_sym_or, - ACTIONS(3393), 1, + ACTIONS(3361), 1, + anon_sym_and, + ACTIONS(3419), 1, anon_sym_EQ, - ACTIONS(3400), 1, + ACTIONS(3426), 1, anon_sym_DOT_DOT, - ACTIONS(3402), 1, + ACTIONS(3428), 1, anon_sym_DOT_DOT_EQ, - STATE(523), 1, + STATE(504), 1, sym_argument_list, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(1452), 2, + ACTIONS(1472), 2, anon_sym_RPAREN, sym__newline, - ACTIONS(3325), 2, + ACTIONS(3347), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3327), 2, + ACTIONS(3349), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3331), 2, + ACTIONS(3353), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3329), 4, + ACTIONS(3351), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3398), 4, + ACTIONS(3424), 4, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [11038] = 22, + [11438] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_DOT, - ACTIONS(3333), 1, - anon_sym_and, - ACTIONS(3335), 1, + ACTIONS(3355), 1, anon_sym_orelse, - ACTIONS(3337), 1, + ACTIONS(3357), 1, anon_sym_catch, - ACTIONS(3339), 1, + ACTIONS(3359), 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(3455), 1, - anon_sym_SEMI, - ACTIONS(3457), 1, - anon_sym_RBRACK, - ACTIONS(3459), 1, - sym__newline, - STATE(523), 1, - sym_argument_list, - STATE(1655), 1, - aux_sym_match_arm_repeat1, - STATE(1891), 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, - [11112] = 22, - 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(3461), 1, - anon_sym_COMMA, - ACTIONS(3463), 1, - anon_sym_SEMI, - ACTIONS(3465), 1, - anon_sym_RBRACK, - ACTIONS(3467), 1, - sym__newline, - STATE(523), 1, - sym_argument_list, - STATE(1545), 1, - aux_sym_match_arm_repeat1, - STATE(1747), 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, - [11186] = 22, - 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(3449), 1, - anon_sym_COMMA, - ACTIONS(3455), 1, - anon_sym_SEMI, - ACTIONS(3469), 1, - anon_sym_RBRACK, - ACTIONS(3471), 1, - sym__newline, - STATE(523), 1, - sym_argument_list, - STATE(1655), 1, - aux_sym_match_arm_repeat1, - STATE(1702), 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, - [11260] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - 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, - ACTIONS(3389), 1, + ACTIONS(3426), 1, anon_sym_DOT_DOT, - ACTIONS(3391), 1, + ACTIONS(3428), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3473), 1, - sym_identifier, + ACTIONS(3471), 1, + anon_sym_COMMA, + ACTIONS(3477), 1, + anon_sym_SEMI, ACTIONS(3479), 1, - anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(3481), 1, sym__newline, - STATE(523), 1, + STATE(504), 1, sym_argument_list, - STATE(1158), 1, - sym_block, - STATE(1553), 1, + STATE(1618), 1, + aux_sym_match_arm_repeat1, + STATE(1799), 1, aux_sym_import_declaration_repeat1, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3367), 2, + ACTIONS(3353), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(3473), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(3475), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3477), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3365), 4, + ACTIONS(3351), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [11334] = 22, + [11512] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_DOT, - ACTIONS(3333), 1, - anon_sym_and, - ACTIONS(3335), 1, + ACTIONS(3355), 1, anon_sym_orelse, - ACTIONS(3337), 1, + ACTIONS(3357), 1, anon_sym_catch, - ACTIONS(3339), 1, + ACTIONS(3359), 1, anon_sym_or, - ACTIONS(3400), 1, + ACTIONS(3361), 1, + anon_sym_and, + ACTIONS(3426), 1, anon_sym_DOT_DOT, - ACTIONS(3402), 1, + ACTIONS(3428), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3461), 1, - anon_sym_COMMA, - ACTIONS(3463), 1, - anon_sym_SEMI, ACTIONS(3483), 1, - anon_sym_RBRACK, + anon_sym_COMMA, ACTIONS(3485), 1, - sym__newline, - STATE(523), 1, - sym_argument_list, - STATE(1545), 1, - aux_sym_match_arm_repeat1, - STATE(1763), 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, - [11408] = 22, - 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(3461), 1, - anon_sym_COMMA, + anon_sym_SEMI, ACTIONS(3487), 1, - anon_sym_SEMI, - ACTIONS(3489), 1, anon_sym_RBRACK, - ACTIONS(3491), 1, + ACTIONS(3489), 1, sym__newline, - STATE(523), 1, + STATE(504), 1, sym_argument_list, - STATE(1545), 1, + STATE(1579), 1, aux_sym_match_arm_repeat1, - STATE(1711), 1, + STATE(1810), 1, aux_sym_import_declaration_repeat1, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3331), 2, + ACTIONS(3353), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3451), 2, + ACTIONS(3473), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3453), 2, + ACTIONS(3475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3329), 4, + ACTIONS(3351), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [11482] = 22, + [11586] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_DOT, - ACTIONS(3333), 1, - anon_sym_and, - ACTIONS(3335), 1, + ACTIONS(3355), 1, anon_sym_orelse, - ACTIONS(3337), 1, + ACTIONS(3357), 1, anon_sym_catch, - ACTIONS(3339), 1, + ACTIONS(3359), 1, anon_sym_or, - ACTIONS(3400), 1, - anon_sym_DOT_DOT, - ACTIONS(3402), 1, + ACTIONS(3361), 1, + anon_sym_and, + ACTIONS(3428), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3449), 1, + ACTIONS(3483), 1, anon_sym_COMMA, - ACTIONS(3493), 1, + ACTIONS(3491), 1, anon_sym_SEMI, - ACTIONS(3495), 1, + ACTIONS(3493), 1, anon_sym_RBRACK, + ACTIONS(3495), 1, + anon_sym_DOT_DOT, ACTIONS(3497), 1, sym__newline, - STATE(523), 1, + STATE(504), 1, sym_argument_list, - STATE(1655), 1, + STATE(1579), 1, aux_sym_match_arm_repeat1, - STATE(1761), 1, + STATE(1949), 1, aux_sym_import_declaration_repeat1, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3331), 2, + ACTIONS(3353), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3451), 2, + ACTIONS(3473), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3453), 2, + ACTIONS(3475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3329), 4, + ACTIONS(3351), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [11556] = 22, + [11660] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_DOT, - ACTIONS(3333), 1, - anon_sym_and, - ACTIONS(3335), 1, + ACTIONS(3355), 1, anon_sym_orelse, - ACTIONS(3337), 1, + ACTIONS(3357), 1, anon_sym_catch, - ACTIONS(3339), 1, + ACTIONS(3359), 1, anon_sym_or, - ACTIONS(3400), 1, - anon_sym_DOT_DOT, - ACTIONS(3402), 1, + ACTIONS(3361), 1, + anon_sym_and, + ACTIONS(3428), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3449), 1, + ACTIONS(3471), 1, anon_sym_COMMA, - ACTIONS(3455), 1, - anon_sym_SEMI, ACTIONS(3499), 1, - anon_sym_RBRACK, - ACTIONS(3501), 1, - sym__newline, - STATE(523), 1, - sym_argument_list, - STATE(1655), 1, - aux_sym_match_arm_repeat1, - STATE(1904), 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, - [11630] = 22, - 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(3461), 1, - anon_sym_COMMA, - ACTIONS(3487), 1, anon_sym_SEMI, - ACTIONS(3503), 1, + ACTIONS(3501), 1, anon_sym_RBRACK, + ACTIONS(3503), 1, + anon_sym_DOT_DOT, ACTIONS(3505), 1, sym__newline, - STATE(523), 1, + STATE(504), 1, sym_argument_list, - STATE(1545), 1, + STATE(1618), 1, aux_sym_match_arm_repeat1, - STATE(1704), 1, + STATE(1844), 1, aux_sym_import_declaration_repeat1, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3331), 2, + ACTIONS(3353), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3451), 2, + ACTIONS(3473), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3453), 2, + ACTIONS(3475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3329), 4, + ACTIONS(3351), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [11704] = 22, + [11734] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_LBRACE, ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_DOT, - ACTIONS(3333), 1, - anon_sym_and, - ACTIONS(3335), 1, + ACTIONS(3395), 1, anon_sym_orelse, - ACTIONS(3337), 1, + ACTIONS(3397), 1, anon_sym_catch, - ACTIONS(3339), 1, + ACTIONS(3399), 1, anon_sym_or, - ACTIONS(3400), 1, + ACTIONS(3401), 1, + anon_sym_and, + ACTIONS(3411), 1, anon_sym_DOT_DOT, - ACTIONS(3402), 1, + ACTIONS(3413), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3461), 1, - anon_sym_COMMA, - ACTIONS(3487), 1, - anon_sym_SEMI, ACTIONS(3507), 1, - anon_sym_RBRACK, - ACTIONS(3509), 1, - sym__newline, - STATE(523), 1, - sym_argument_list, - 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(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, - [11778] = 22, - 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(3402), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3449), 1, - anon_sym_COMMA, - ACTIONS(3455), 1, - anon_sym_SEMI, - ACTIONS(3511), 1, - anon_sym_RBRACK, + sym_identifier, ACTIONS(3513), 1, - anon_sym_DOT_DOT, + anon_sym_COLON, ACTIONS(3515), 1, sym__newline, - STATE(523), 1, + STATE(504), 1, sym_argument_list, - STATE(1655), 1, - aux_sym_match_arm_repeat1, - STATE(1800), 1, + STATE(1222), 1, + sym_block, + STATE(1628), 1, aux_sym_import_declaration_repeat1, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3331), 2, + ACTIONS(3405), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3451), 2, + ACTIONS(3509), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3453), 2, + ACTIONS(3511), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3329), 4, + ACTIONS(3403), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [11852] = 22, + [11808] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_DOT, - ACTIONS(3333), 1, - anon_sym_and, - ACTIONS(3335), 1, + ACTIONS(3355), 1, anon_sym_orelse, - ACTIONS(3337), 1, + ACTIONS(3357), 1, anon_sym_catch, - ACTIONS(3339), 1, + ACTIONS(3359), 1, anon_sym_or, - ACTIONS(3402), 1, + ACTIONS(3361), 1, + anon_sym_and, + ACTIONS(3426), 1, + anon_sym_DOT_DOT, + ACTIONS(3428), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3461), 1, + ACTIONS(3471), 1, anon_sym_COMMA, - ACTIONS(3487), 1, + ACTIONS(3499), 1, anon_sym_SEMI, ACTIONS(3517), 1, anon_sym_RBRACK, ACTIONS(3519), 1, - anon_sym_DOT_DOT, - ACTIONS(3521), 1, sym__newline, - STATE(523), 1, + STATE(504), 1, sym_argument_list, - STATE(1545), 1, + STATE(1618), 1, aux_sym_match_arm_repeat1, - STATE(1673), 1, + STATE(1761), 1, aux_sym_import_declaration_repeat1, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3331), 2, + ACTIONS(3353), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3451), 2, + ACTIONS(3473), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3453), 2, + ACTIONS(3475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3329), 4, + ACTIONS(3351), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [11926] = 22, + [11882] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_DOT, - ACTIONS(3361), 1, - anon_sym_or, - ACTIONS(3363), 1, - anon_sym_and, - ACTIONS(3369), 1, + ACTIONS(3355), 1, anon_sym_orelse, - ACTIONS(3371), 1, + ACTIONS(3357), 1, anon_sym_catch, - ACTIONS(3389), 1, + ACTIONS(3359), 1, + anon_sym_or, + ACTIONS(3361), 1, + anon_sym_and, + ACTIONS(3426), 1, anon_sym_DOT_DOT, - ACTIONS(3391), 1, + ACTIONS(3428), 1, anon_sym_DOT_DOT_EQ, + ACTIONS(3471), 1, + anon_sym_COMMA, + ACTIONS(3477), 1, + anon_sym_SEMI, + ACTIONS(3521), 1, + anon_sym_RBRACK, ACTIONS(3523), 1, - sym_identifier, + sym__newline, + STATE(504), 1, + sym_argument_list, + STATE(1618), 1, + aux_sym_match_arm_repeat1, + STATE(1818), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3353), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3473), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3351), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [11956] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 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(3426), 1, + anon_sym_DOT_DOT, + ACTIONS(3428), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3483), 1, + anon_sym_COMMA, + ACTIONS(3491), 1, + anon_sym_SEMI, ACTIONS(3525), 1, - anon_sym_COLON, + anon_sym_RBRACK, ACTIONS(3527), 1, sym__newline, - STATE(523), 1, + STATE(504), 1, sym_argument_list, - STATE(1137), 1, - sym_block, - STATE(1550), 1, + STATE(1579), 1, + aux_sym_match_arm_repeat1, + STATE(1837), 1, aux_sym_import_declaration_repeat1, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3367), 2, + ACTIONS(3353), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3475), 2, + ACTIONS(3473), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3477), 2, + ACTIONS(3475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3365), 4, + ACTIONS(3351), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [12000] = 22, + [12030] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_DOT, - ACTIONS(3333), 1, - anon_sym_and, - ACTIONS(3335), 1, + ACTIONS(3355), 1, anon_sym_orelse, - ACTIONS(3337), 1, + ACTIONS(3357), 1, anon_sym_catch, - ACTIONS(3339), 1, + ACTIONS(3359), 1, anon_sym_or, - ACTIONS(3400), 1, + ACTIONS(3361), 1, + anon_sym_and, + ACTIONS(3426), 1, anon_sym_DOT_DOT, - ACTIONS(3402), 1, + ACTIONS(3428), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3449), 1, + ACTIONS(3483), 1, anon_sym_COMMA, - ACTIONS(3493), 1, + ACTIONS(3485), 1, anon_sym_SEMI, ACTIONS(3529), 1, anon_sym_RBRACK, ACTIONS(3531), 1, sym__newline, - STATE(523), 1, + STATE(504), 1, sym_argument_list, - STATE(1655), 1, + STATE(1579), 1, aux_sym_match_arm_repeat1, - STATE(1736), 1, + STATE(1819), 1, aux_sym_import_declaration_repeat1, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3331), 2, + ACTIONS(3353), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3451), 2, + ACTIONS(3473), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3453), 2, + ACTIONS(3475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3329), 4, + ACTIONS(3351), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [12074] = 21, + [12104] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_DOT, - ACTIONS(1893), 1, - anon_sym_RPAREN, - ACTIONS(3333), 1, - anon_sym_and, - ACTIONS(3335), 1, + ACTIONS(3355), 1, anon_sym_orelse, - ACTIONS(3337), 1, + ACTIONS(3357), 1, anon_sym_catch, - ACTIONS(3339), 1, + ACTIONS(3359), 1, anon_sym_or, - ACTIONS(3400), 1, + ACTIONS(3361), 1, + anon_sym_and, + ACTIONS(3426), 1, anon_sym_DOT_DOT, - ACTIONS(3402), 1, + ACTIONS(3428), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3533), 1, + ACTIONS(3483), 1, anon_sym_COMMA, + ACTIONS(3491), 1, + anon_sym_SEMI, + ACTIONS(3533), 1, + anon_sym_RBRACK, ACTIONS(3535), 1, sym__newline, - STATE(523), 1, + STATE(504), 1, sym_argument_list, - STATE(1587), 1, + STATE(1579), 1, aux_sym_match_arm_repeat1, - STATE(1729), 1, + STATE(1775), 1, aux_sym_import_declaration_repeat1, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3331), 2, + ACTIONS(3353), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3451), 2, + ACTIONS(3473), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3453), 2, + ACTIONS(3475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3329), 4, + ACTIONS(3351), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [12145] = 21, + [12178] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, + ACTIONS(25), 1, + anon_sym_LBRACE, ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_DOT, - ACTIONS(1841), 1, - anon_sym_RPAREN, - ACTIONS(3333), 1, - anon_sym_and, - ACTIONS(3335), 1, + ACTIONS(3395), 1, anon_sym_orelse, - ACTIONS(3337), 1, + ACTIONS(3397), 1, anon_sym_catch, - ACTIONS(3339), 1, + ACTIONS(3399), 1, anon_sym_or, - ACTIONS(3400), 1, + ACTIONS(3401), 1, + anon_sym_and, + ACTIONS(3411), 1, anon_sym_DOT_DOT, - ACTIONS(3402), 1, + ACTIONS(3413), 1, anon_sym_DOT_DOT_EQ, ACTIONS(3537), 1, - anon_sym_COMMA, + sym_identifier, 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, + anon_sym_COLON, ACTIONS(3541), 1, - anon_sym_RBRACK, - ACTIONS(3543), 1, sym__newline, - STATE(523), 1, + STATE(504), 1, sym_argument_list, - STATE(2048), 1, + STATE(1031), 1, + sym_block, + STATE(1631), 1, aux_sym_import_declaration_repeat1, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3331), 2, + ACTIONS(3405), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3451), 2, + ACTIONS(3509), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3453), 2, + ACTIONS(3511), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(927), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_DOT_DOT_EQ, - ACTIONS(3329), 4, + ACTIONS(3403), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [12283] = 18, + [12252] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_DOT, - ACTIONS(3345), 1, + ACTIONS(3355), 1, anon_sym_orelse, - ACTIONS(3347), 1, + ACTIONS(3357), 1, anon_sym_catch, - ACTIONS(3349), 1, + ACTIONS(3359), 1, anon_sym_or, - ACTIONS(3351), 1, + ACTIONS(3361), 1, anon_sym_and, - ACTIONS(3377), 1, + ACTIONS(3426), 1, anon_sym_DOT_DOT, - ACTIONS(3379), 1, + ACTIONS(3428), 1, anon_sym_DOT_DOT_EQ, - STATE(523), 1, + ACTIONS(3471), 1, + anon_sym_COMMA, + ACTIONS(3499), 1, + anon_sym_SEMI, + ACTIONS(3543), 1, + anon_sym_RBRACK, + ACTIONS(3545), 1, + sym__newline, + STATE(504), 1, sym_argument_list, - ACTIONS(31), 2, + STATE(1618), 1, + aux_sym_match_arm_repeat1, + STATE(1825), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(1576), 2, + ACTIONS(3353), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3473), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3351), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [12326] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 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(3426), 1, + anon_sym_DOT_DOT, + ACTIONS(3428), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3471), 1, + anon_sym_COMMA, + ACTIONS(3499), 1, + anon_sym_SEMI, + ACTIONS(3547), 1, + anon_sym_RBRACK, + ACTIONS(3549), 1, + sym__newline, + STATE(504), 1, + sym_argument_list, + STATE(1618), 1, + aux_sym_match_arm_repeat1, + STATE(1747), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3353), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3473), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3351), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [12400] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 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(3426), 1, + anon_sym_DOT_DOT, + ACTIONS(3428), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3483), 1, + anon_sym_COMMA, + ACTIONS(3491), 1, + anon_sym_SEMI, + ACTIONS(3551), 1, + anon_sym_RBRACK, + ACTIONS(3553), 1, + sym__newline, + STATE(504), 1, + sym_argument_list, + STATE(1579), 1, + aux_sym_match_arm_repeat1, + STATE(1800), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3353), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3473), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3351), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [12474] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3371), 1, + anon_sym_DOT_DOT, + ACTIONS(3373), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3375), 1, + anon_sym_orelse, + ACTIONS(3377), 1, + anon_sym_catch, + ACTIONS(3379), 1, + anon_sym_or, + ACTIONS(3381), 1, + anon_sym_and, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1592), 2, ts_builtin_sym_end, sym__newline, - ACTIONS(3355), 2, + ACTIONS(3385), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3545), 2, + ACTIONS(3555), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3547), 2, + ACTIONS(3557), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1574), 3, + ACTIONS(1590), 4, anon_sym_import, + anon_sym_hide, anon_sym_else, sym_identifier, - ACTIONS(3353), 4, + ACTIONS(3383), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [12348] = 21, + [12540] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_DOT, - ACTIONS(3333), 1, - anon_sym_and, - ACTIONS(3335), 1, + ACTIONS(3355), 1, anon_sym_orelse, - ACTIONS(3337), 1, + ACTIONS(3357), 1, anon_sym_catch, - ACTIONS(3339), 1, + ACTIONS(3359), 1, anon_sym_or, - ACTIONS(3400), 1, + ACTIONS(3361), 1, + anon_sym_and, + ACTIONS(3426), 1, anon_sym_DOT_DOT, - ACTIONS(3402), 1, + ACTIONS(3428), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3533), 1, - anon_sym_COMMA, - ACTIONS(3549), 1, - anon_sym_RPAREN, - ACTIONS(3551), 1, - sym__newline, - STATE(523), 1, - sym_argument_list, - STATE(1587), 1, - aux_sym_match_arm_repeat1, - STATE(1913), 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, - [12419] = 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(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(3553), 1, - anon_sym_RPAREN, - ACTIONS(3555), 1, - sym__newline, - STATE(523), 1, - sym_argument_list, - STATE(1611), 1, - aux_sym_match_arm_repeat1, - STATE(1781), 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, - [12490] = 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(3557), 1, - anon_sym_RBRACK, ACTIONS(3559), 1, + anon_sym_RPAREN, + ACTIONS(3561), 1, + anon_sym_COMMA, + ACTIONS(3563), 1, sym__newline, - STATE(523), 1, + STATE(504), 1, sym_argument_list, - STATE(1945), 1, + STATE(1684), 1, + aux_sym_match_arm_repeat1, + STATE(1833), 1, aux_sym_import_declaration_repeat1, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3331), 2, + ACTIONS(3353), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3451), 2, + ACTIONS(3473), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3453), 2, + ACTIONS(3475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(927), 3, + ACTIONS(3351), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [12611] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(981), 1, + anon_sym_DOT_DOT, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 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(3565), 1, + anon_sym_RBRACK, + ACTIONS(3567), 1, + sym__newline, + STATE(504), 1, + sym_argument_list, + STATE(2020), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3353), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3473), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(979), 3, anon_sym_COMMA, anon_sym_SEMI, anon_sym_DOT_DOT_EQ, - ACTIONS(3329), 4, + ACTIONS(3351), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [12557] = 12, + [12678] = 21, 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(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), 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, - [12609] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(915), 1, anon_sym_LPAREN, - ACTIONS(931), 1, + ACTIONS(983), 1, anon_sym_LBRACK, - ACTIONS(933), 1, + ACTIONS(985), 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(3561), 4, + ACTIONS(1909), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - sym__newline, - [12671] = 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, + ACTIONS(3355), 1, anon_sym_orelse, - ACTIONS(3337), 1, + ACTIONS(3357), 1, anon_sym_catch, - ACTIONS(3339), 1, + ACTIONS(3359), 1, anon_sym_or, - ACTIONS(3400), 1, + ACTIONS(3361), 1, + anon_sym_and, + ACTIONS(3426), 1, anon_sym_DOT_DOT, - ACTIONS(3402), 1, + ACTIONS(3428), 1, anon_sym_DOT_DOT_EQ, - STATE(523), 1, + ACTIONS(3561), 1, + anon_sym_COMMA, + ACTIONS(3569), 1, + sym__newline, + STATE(504), 1, sym_argument_list, - ACTIONS(31), 2, + STATE(1684), 1, + aux_sym_match_arm_repeat1, + STATE(1903), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3331), 2, + ACTIONS(3353), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3451), 2, + ACTIONS(3473), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3453), 2, + ACTIONS(3475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3329), 4, + ACTIONS(3351), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3563), 4, + [12749] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(981), 1, + anon_sym_DOT_DOT, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 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(3571), 1, + anon_sym_RBRACK, + ACTIONS(3573), 1, + sym__newline, + STATE(504), 1, + sym_argument_list, + STATE(2023), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3353), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3473), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(979), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_DOT_DOT_EQ, + ACTIONS(3351), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [12816] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 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(3426), 1, + anon_sym_DOT_DOT, + ACTIONS(3428), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3575), 1, anon_sym_RPAREN, + ACTIONS(3577), 1, anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(3579), 1, sym__newline, - [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, + STATE(504), 1, sym_argument_list, - ACTIONS(31), 2, + STATE(1577), 1, + aux_sym_match_arm_repeat1, + STATE(1943), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(33), 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, + ACTIONS(3353), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(927), 14, - anon_sym_COMMA, + ACTIONS(3473), 2, 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_PLUS, + ACTIONS(3475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3351), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS, - sym__newline, - [12779] = 9, + [12887] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_DOT, - STATE(523), 1, + ACTIONS(1873), 1, + anon_sym_RPAREN, + 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(3426), 1, + anon_sym_DOT_DOT, + ACTIONS(3428), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3577), 1, + anon_sym_COMMA, + ACTIONS(3581), 1, + sym__newline, + STATE(504), 1, sym_argument_list, - ACTIONS(31), 2, + STATE(1577), 1, + aux_sym_match_arm_repeat1, + STATE(1752), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(33), 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, + ACTIONS(3353), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(991), 14, - anon_sym_COMMA, + ACTIONS(3473), 2, 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_PLUS, + ACTIONS(3475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3351), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS, - sym__newline, - [12825] = 16, + [12958] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_DOT, - ACTIONS(993), 1, + ACTIONS(1113), 1, anon_sym_DOT_DOT, - ACTIONS(3435), 1, + ACTIONS(3457), 1, anon_sym_orelse, - ACTIONS(3437), 1, + ACTIONS(3459), 1, anon_sym_catch, - ACTIONS(3439), 1, + ACTIONS(3461), 1, anon_sym_or, - ACTIONS(3441), 1, + ACTIONS(3463), 1, anon_sym_and, - STATE(523), 1, + STATE(504), 1, sym_argument_list, - ACTIONS(31), 2, + ACTIONS(33), 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, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3445), 2, + ACTIONS(3467), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3443), 4, + ACTIONS(3465), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3565), 4, + ACTIONS(1111), 5, anon_sym_COMMA, anon_sym_PIPE, anon_sym_COLON, + anon_sym_DOT_DOT_EQ, sym__newline, - [12947] = 8, + [13018] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(850), 1, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3445), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1113), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1111), 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, + [13066] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(852), 1, anon_sym_BANG, - ACTIONS(854), 1, + ACTIONS(856), 1, anon_sym_LPAREN, - ACTIONS(873), 1, + ACTIONS(875), 1, anon_sym_DOT, - ACTIONS(977), 1, + ACTIONS(1101), 1, anon_sym_LBRACE, - ACTIONS(3567), 1, + ACTIONS(3583), 1, anon_sym_EQ, - ACTIONS(852), 4, + ACTIONS(854), 4, anon_sym_DOT_DOT, anon_sym_or, anon_sym_LT, anon_sym_GT, - ACTIONS(857), 17, + ACTIONS(859), 17, anon_sym_RBRACE, anon_sym_DASH, anon_sym_QMARK, @@ -134248,490 +135757,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_CARET, sym__newline, - [12991] = 17, + [13110] = 7, 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(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_DOT_DOT, - 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, - 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(3575), 1, - sym__newline, - STATE(2028), 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(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, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - [13499] = 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(993), 4, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(991), 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, - [13547] = 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(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(3463), 1, - anon_sym_SEMI, - ACTIONS(3578), 1, - anon_sym_RBRACK, - ACTIONS(3580), 1, - sym__newline, - STATE(523), 1, - sym_argument_list, - STATE(2028), 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, - [13615] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3582), 1, - anon_sym_SEMI, ACTIONS(3585), 1, - anon_sym_RBRACK, + anon_sym_SEMI, ACTIONS(3588), 1, + anon_sym_RBRACK, + ACTIONS(3591), 1, sym__newline, - STATE(1998), 1, + STATE(2036), 1, aux_sym_import_declaration_repeat1, - ACTIONS(852), 5, + ACTIONS(854), 5, anon_sym_DOT_DOT, anon_sym_or, anon_sym_LT, anon_sym_GT, anon_sym_DOT, - ACTIONS(857), 17, + ACTIONS(859), 17, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DASH, @@ -134749,24 +135792,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_CARET, - [13657] = 7, + [13152] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3591), 1, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 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(3426), 1, + anon_sym_DOT_DOT, + ACTIONS(3428), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3485), 1, anon_sym_SEMI, ACTIONS(3594), 1, anon_sym_RBRACK, - ACTIONS(3597), 1, + ACTIONS(3596), 1, sym__newline, - STATE(1952), 1, + STATE(504), 1, + sym_argument_list, + STATE(2036), 1, aux_sym_import_declaration_repeat1, - ACTIONS(852), 5, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3353), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3473), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3351), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [13220] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 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(3426), 1, + anon_sym_DOT_DOT, + ACTIONS(3428), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3477), 1, + anon_sym_SEMI, + ACTIONS(3598), 1, + anon_sym_RBRACK, + ACTIONS(3600), 1, + sym__newline, + STATE(504), 1, + sym_argument_list, + STATE(2052), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3353), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3473), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3351), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [13288] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(981), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(979), 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, + [13334] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3453), 1, + anon_sym_DOT_DOT, + ACTIONS(3455), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3457), 1, + anon_sym_orelse, + ACTIONS(3459), 1, + anon_sym_catch, + ACTIONS(3461), 1, + anon_sym_or, + ACTIONS(3463), 1, + anon_sym_and, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3445), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3467), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3602), 4, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_COLON, + sym__newline, + [13396] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(981), 1, + anon_sym_DOT_DOT, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3457), 1, + anon_sym_orelse, + ACTIONS(3459), 1, + anon_sym_catch, + ACTIONS(3461), 1, + anon_sym_or, + ACTIONS(3463), 1, + anon_sym_and, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3445), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3467), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(979), 5, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + sym__newline, + [13456] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3604), 1, + anon_sym_SEMI, + ACTIONS(3607), 1, + anon_sym_RBRACK, + ACTIONS(3610), 1, + sym__newline, + STATE(2050), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(854), 5, anon_sym_DOT_DOT, anon_sym_or, anon_sym_LT, anon_sym_GT, anon_sym_DOT, - ACTIONS(857), 17, + ACTIONS(859), 17, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DASH, @@ -134784,1646 +136049,2153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_CARET, - [13699] = 18, + [13498] = 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(3361), 1, - anon_sym_or, - ACTIONS(3363), 1, - anon_sym_and, - ACTIONS(3369), 1, - anon_sym_orelse, - ACTIONS(3371), 1, - anon_sym_catch, - ACTIONS(3389), 1, + anon_sym_LPAREN, + ACTIONS(981), 1, anon_sym_DOT_DOT, - ACTIONS(3391), 1, - anon_sym_DOT_DOT_EQ, - STATE(523), 1, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3461), 1, + anon_sym_or, + ACTIONS(3463), 1, + anon_sym_and, + STATE(504), 1, sym_argument_list, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(1574), 2, + ACTIONS(3445), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3467), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(979), 7, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [13554] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 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(3426), 1, + anon_sym_DOT_DOT, + ACTIONS(3428), 1, + anon_sym_DOT_DOT_EQ, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3353), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3473), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3351), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3613), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__newline, + [13616] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3463), 1, + anon_sym_and, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1444), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(3445), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3467), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1442), 7, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [13670] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3615), 1, + anon_sym_SEMI, + ACTIONS(3618), 1, + anon_sym_RBRACK, + ACTIONS(3621), 1, + sym__newline, + STATE(2052), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(854), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + ACTIONS(859), 17, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [13712] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1444), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(3445), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3467), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1442), 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, + [13764] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3445), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(981), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(979), 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, + [13812] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 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(3426), 1, + anon_sym_DOT_DOT, + ACTIONS(3428), 1, + anon_sym_DOT_DOT_EQ, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3353), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3473), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3351), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3624), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__newline, + [13874] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3626), 1, + anon_sym_SEMI, + ACTIONS(3629), 1, + anon_sym_RBRACK, + ACTIONS(3632), 1, + sym__newline, + STATE(2042), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(854), 5, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + ACTIONS(859), 17, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_CARET, + [13916] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3453), 1, + anon_sym_DOT_DOT, + ACTIONS(3455), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3457), 1, + anon_sym_orelse, + ACTIONS(3459), 1, + anon_sym_catch, + ACTIONS(3461), 1, + anon_sym_or, + ACTIONS(3463), 1, + anon_sym_and, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3445), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3467), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3624), 4, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_COLON, + sym__newline, + [13978] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3635), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(3637), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + ACTIONS(854), 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(859), 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, + [14016] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3639), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(3641), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + ACTIONS(854), 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(859), 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, + [14054] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1113), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1111), 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, + [14100] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 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(3426), 1, + anon_sym_DOT_DOT, + ACTIONS(3428), 1, + anon_sym_DOT_DOT_EQ, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3353), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3473), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3351), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3602), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + sym__newline, + [14162] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3643), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(3645), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + ACTIONS(854), 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(859), 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, + [14200] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(1113), 1, + anon_sym_DOT_DOT, + ACTIONS(3461), 1, + anon_sym_or, + ACTIONS(3463), 1, + anon_sym_and, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3445), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3467), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1111), 7, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [14256] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3463), 1, + anon_sym_and, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1448), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(3445), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3467), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1446), 7, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [14310] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1448), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(3445), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3467), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1446), 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, + [14362] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3647), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(3649), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + ACTIONS(854), 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(859), 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, + [14400] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3395), 1, + anon_sym_orelse, + ACTIONS(3397), 1, + anon_sym_catch, + ACTIONS(3399), 1, + anon_sym_or, + ACTIONS(3401), 1, + anon_sym_and, + ACTIONS(3411), 1, + anon_sym_DOT_DOT, + ACTIONS(3413), 1, + anon_sym_DOT_DOT_EQ, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1590), 2, anon_sym_else, sym_identifier, - ACTIONS(1576), 2, + ACTIONS(1592), 2, anon_sym_LBRACE, sym__newline, - ACTIONS(3367), 2, + ACTIONS(3405), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3475), 2, + ACTIONS(3509), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3477), 2, + ACTIONS(3511), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3365), 4, + ACTIONS(3403), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [13763] = 12, + [14464] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_DOT, - STATE(523), 1, + ACTIONS(3453), 1, + anon_sym_DOT_DOT, + ACTIONS(3455), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3457), 1, + anon_sym_orelse, + ACTIONS(3459), 1, + anon_sym_catch, + ACTIONS(3461), 1, + anon_sym_or, + ACTIONS(3463), 1, + anon_sym_and, + STATE(504), 1, sym_argument_list, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(1440), 2, - anon_sym_DOT_DOT, - anon_sym_or, - ACTIONS(3423), 2, + ACTIONS(3445), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3427), 2, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3445), 2, + ACTIONS(3467), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3443), 4, + ACTIONS(3465), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1438), 8, + ACTIONS(3613), 4, 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, - [13815] = 10, + [14526] = 19, 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(857), 17, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, + ACTIONS(983), 1, anon_sym_LBRACK, - anon_sym_DOT_DOT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_CARET, - [13905] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, - ACTIONS(933), 1, + ACTIONS(985), 1, anon_sym_DOT, - ACTIONS(3333), 1, - anon_sym_and, - ACTIONS(3335), 1, + ACTIONS(3355), 1, anon_sym_orelse, - ACTIONS(3337), 1, + ACTIONS(3357), 1, anon_sym_catch, - ACTIONS(3339), 1, + ACTIONS(3359), 1, anon_sym_or, - ACTIONS(3400), 1, - anon_sym_DOT_DOT, - ACTIONS(3402), 1, - anon_sym_DOT_DOT_EQ, - 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, + ACTIONS(3361), 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, + ACTIONS(3426), 1, anon_sym_DOT_DOT, - ACTIONS(3402), 1, + ACTIONS(3428), 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(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(1576), 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, - [14229] = 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(3402), 1, - anon_sym_DOT_DOT_EQ, - ACTIONS(3513), 1, - anon_sym_DOT_DOT, - 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(523), 1, - sym_argument_list, - STATE(1959), 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, - [14359] = 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(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(523), 1, - sym_argument_list, - STATE(2041), 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, - [14424] = 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(3657), 1, anon_sym_RBRACE, + ACTIONS(3653), 1, + sym__newline, + STATE(504), 1, + sym_argument_list, + STATE(2065), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3353), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3473), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3351), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [14591] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 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(3428), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3503), 1, + anon_sym_DOT_DOT, + ACTIONS(3655), 1, + anon_sym_RBRACK, + ACTIONS(3657), 1, + sym__newline, + STATE(504), 1, + sym_argument_list, + STATE(1972), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3353), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3473), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3351), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [14656] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(1779), 1, + anon_sym_RBRACE, + 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(3426), 1, + anon_sym_DOT_DOT, + ACTIONS(3428), 1, + anon_sym_DOT_DOT_EQ, ACTIONS(3659), 1, sym__newline, - STATE(523), 1, + STATE(504), 1, sym_argument_list, - STATE(2029), 1, + STATE(1986), 1, aux_sym_import_declaration_repeat1, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3331), 2, + ACTIONS(3353), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3451), 2, + ACTIONS(3473), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3453), 2, + ACTIONS(3475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3329), 4, + ACTIONS(3351), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [14489] = 17, + [14721] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_DOT, - ACTIONS(3333), 1, - anon_sym_and, - ACTIONS(3335), 1, + ACTIONS(3355), 1, anon_sym_orelse, - ACTIONS(3337), 1, + ACTIONS(3357), 1, anon_sym_catch, - ACTIONS(3339), 1, + ACTIONS(3359), 1, anon_sym_or, - ACTIONS(3400), 1, + ACTIONS(3361), 1, + anon_sym_and, + ACTIONS(3426), 1, anon_sym_DOT_DOT, - ACTIONS(3402), 1, + ACTIONS(3428), 1, anon_sym_DOT_DOT_EQ, - STATE(523), 1, + STATE(504), 1, sym_argument_list, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3331), 2, + ACTIONS(3353), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3451), 2, + ACTIONS(3473), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3453), 2, + ACTIONS(3475), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(3661), 3, anon_sym_COMMA, anon_sym_RBRACE, sym__newline, - ACTIONS(3329), 4, + ACTIONS(3351), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [14550] = 19, + [14782] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 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, + anon_sym_DOT_DOT_EQ, 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, + ACTIONS(3677), 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, + ACTIONS(3679), 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(3329), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [14932] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3681), 2, - ts_builtin_sym_end, - sym__newline, - 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, - 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, - [14969] = 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(3685), 1, - anon_sym_RPAREN, - ACTIONS(3687), 1, sym__newline, - STATE(523), 1, + STATE(504), 1, sym_argument_list, - STATE(1999), 1, + STATE(1970), 1, aux_sym_import_declaration_repeat1, - ACTIONS(31), 2, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3331), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3451), 2, + ACTIONS(3665), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3453), 2, + ACTIONS(3667), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3329), 4, + ACTIONS(3683), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3681), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [15034] = 5, + [14847] = 19, 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_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_DOT, - ACTIONS(3333), 1, - anon_sym_and, - ACTIONS(3335), 1, + ACTIONS(3355), 1, anon_sym_orelse, - ACTIONS(3337), 1, + ACTIONS(3357), 1, anon_sym_catch, - ACTIONS(3339), 1, + ACTIONS(3359), 1, anon_sym_or, - ACTIONS(3400), 1, - anon_sym_DOT_DOT, - ACTIONS(3402), 1, + ACTIONS(3361), 1, + anon_sym_and, + ACTIONS(3428), 1, anon_sym_DOT_DOT_EQ, - STATE(523), 1, + ACTIONS(3495), 1, + anon_sym_DOT_DOT, + ACTIONS(3687), 1, + anon_sym_RBRACK, + ACTIONS(3689), 1, + sym__newline, + STATE(504), 1, sym_argument_list, - ACTIONS(31), 2, + STATE(1997), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3331), 2, + ACTIONS(3353), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3451), 2, + ACTIONS(3473), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3453), 2, + ACTIONS(3475), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3693), 3, + ACTIONS(3351), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [14912] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 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(3426), 1, + anon_sym_DOT_DOT, + ACTIONS(3428), 1, + anon_sym_DOT_DOT_EQ, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3353), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3473), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3691), 3, anon_sym_COMMA, anon_sym_RBRACE, sym__newline, - ACTIONS(3329), 4, + ACTIONS(3351), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [15132] = 13, + [14973] = 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(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, + ACTIONS(983), 1, anon_sym_LBRACK, - ACTIONS(933), 1, + ACTIONS(985), 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, + ACTIONS(3355), 1, anon_sym_orelse, + ACTIONS(3357), 1, 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, + ACTIONS(3359), 1, 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, + ACTIONS(3361), 1, 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, + ACTIONS(3426), 1, 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, + ACTIONS(3428), 1, 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(3693), 1, + anon_sym_RBRACK, ACTIONS(3695), 1, - anon_sym_PIPE, - STATE(523), 1, + sym__newline, + STATE(504), 1, sym_argument_list, - ACTIONS(31), 2, + STATE(1990), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(33), 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, + ACTIONS(3353), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3443), 4, + ACTIONS(3473), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3351), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [15799] = 17, + [15038] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - anon_sym_LBRACK, ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_DOT, - ACTIONS(3431), 1, + ACTIONS(3453), 1, anon_sym_DOT_DOT, - ACTIONS(3433), 1, + ACTIONS(3455), 1, anon_sym_DOT_DOT_EQ, - ACTIONS(3435), 1, + ACTIONS(3457), 1, anon_sym_orelse, - ACTIONS(3437), 1, + ACTIONS(3459), 1, anon_sym_catch, - ACTIONS(3439), 1, + ACTIONS(3461), 1, anon_sym_or, - ACTIONS(3441), 1, + ACTIONS(3463), 1, anon_sym_and, ACTIONS(3697), 1, anon_sym_PIPE, - STATE(523), 1, + ACTIONS(3699), 1, + sym__newline, + STATE(504), 1, sym_argument_list, - ACTIONS(31), 2, + STATE(2013), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(33), 2, anon_sym_QMARK, anon_sym_CARET, - ACTIONS(3423), 2, + ACTIONS(3445), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3427), 2, + ACTIONS(3449), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3445), 2, + ACTIONS(3467), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3443), 4, + ACTIONS(3465), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [15858] = 6, + [15103] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3699), 1, - ts_builtin_sym_end, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3453), 1, + anon_sym_DOT_DOT, + ACTIONS(3455), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3457), 1, + anon_sym_orelse, + ACTIONS(3459), 1, + anon_sym_catch, + ACTIONS(3461), 1, + anon_sym_or, + ACTIONS(3463), 1, + anon_sym_and, ACTIONS(3701), 1, - sym_identifier, - ACTIONS(3704), 1, - anon_sym_import, + anon_sym_PIPE, + ACTIONS(3703), 1, + sym__newline, + STATE(504), 1, + sym_argument_list, + STATE(1964), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3445), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3467), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [15168] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 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(3426), 1, + anon_sym_DOT_DOT, + ACTIONS(3428), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3705), 1, + anon_sym_RPAREN, 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, + STATE(504), 1, + sym_argument_list, + STATE(2060), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3353), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3473), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3351), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [15233] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(3710), 1, - ts_builtin_sym_end, - ACTIONS(3714), 1, - anon_sym_BANG, - ACTIONS(3716), 1, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 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(3426), 1, + anon_sym_DOT_DOT, + ACTIONS(3428), 1, + anon_sym_DOT_DOT_EQ, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3353), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3473), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3709), 3, + anon_sym_COMMA, + anon_sym_RBRACE, sym__newline, - STATE(1694), 1, - sym_block, - STATE(1696), 1, + ACTIONS(3351), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [15294] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 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(3426), 1, + anon_sym_DOT_DOT, + ACTIONS(3428), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3711), 1, + anon_sym_RPAREN, + ACTIONS(3713), 1, + sym__newline, + STATE(504), 1, + sym_argument_list, + STATE(2044), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3712), 2, - anon_sym_import, - sym_identifier, - ACTIONS(995), 3, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3353), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3473), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3351), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [15359] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3669), 1, + anon_sym_DOT_DOT, + ACTIONS(3671), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3673), 1, + anon_sym_orelse, + ACTIONS(3675), 1, + anon_sym_catch, + ACTIONS(3677), 1, + anon_sym_or, + ACTIONS(3679), 1, + anon_sym_and, + ACTIONS(3715), 1, + anon_sym_LBRACE, + ACTIONS(3717), 1, + sym__newline, + STATE(504), 1, + sym_argument_list, + STATE(2071), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3665), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3667), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3683), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3681), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [15424] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 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(3426), 1, + anon_sym_DOT_DOT, + ACTIONS(3428), 1, + anon_sym_DOT_DOT_EQ, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3353), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3473), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1592), 3, + anon_sym_RPAREN, + anon_sym_else, + sym__newline, + ACTIONS(3351), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [15485] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 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(3426), 1, + anon_sym_DOT_DOT, + ACTIONS(3428), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3719), 1, + anon_sym_RBRACK, + ACTIONS(3721), 1, + sym__newline, + STATE(504), 1, + sym_argument_list, + STATE(1966), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3353), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3473), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3351), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [15550] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 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(3426), 1, + anon_sym_DOT_DOT, + ACTIONS(3428), 1, + anon_sym_DOT_DOT_EQ, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3353), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3473), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3723), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + ACTIONS(3351), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [15611] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3679), 1, + anon_sym_and, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1448), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(3665), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3667), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3683), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3681), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1446), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [15663] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3679), 1, + anon_sym_and, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1444), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(3665), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3667), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3683), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3681), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1442), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [15715] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3667), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(981), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(979), 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, + [15759] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(981), 1, + anon_sym_DOT_DOT, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3673), 1, + anon_sym_orelse, + ACTIONS(3675), 1, + anon_sym_catch, + ACTIONS(3677), 1, + anon_sym_or, + ACTIONS(3679), 1, + anon_sym_and, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3665), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3667), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3683), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(979), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(3681), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [15817] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(981), 1, + anon_sym_DOT_DOT, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3677), 1, + anon_sym_or, + ACTIONS(3679), 1, + anon_sym_and, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3665), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3667), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3683), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3681), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(979), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [15871] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3665), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3667), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(981), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(979), 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, + [15917] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1444), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(3665), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3667), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3683), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3681), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1442), 6, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + sym__newline, + [15967] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3665), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3667), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1113), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1111), 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, + [16013] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3667), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1113), 4, + anon_sym_DOT_DOT, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1111), 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, + [16057] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(1113), 1, + anon_sym_DOT_DOT, + ACTIONS(3673), 1, + anon_sym_orelse, + ACTIONS(3675), 1, + anon_sym_catch, + ACTIONS(3677), 1, + anon_sym_or, + ACTIONS(3679), 1, + anon_sym_and, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3665), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3667), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3683), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1111), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + sym__newline, + ACTIONS(3681), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [16115] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(1113), 1, + anon_sym_DOT_DOT, + ACTIONS(3677), 1, + anon_sym_or, + ACTIONS(3679), 1, + anon_sym_and, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3665), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3667), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3683), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3681), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1111), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + sym__newline, + [16169] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(1448), 2, + anon_sym_DOT_DOT, + anon_sym_or, + ACTIONS(3665), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3667), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3683), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3681), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1446), 6, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_and, + sym__newline, + [16219] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3453), 1, + anon_sym_DOT_DOT, + ACTIONS(3455), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3457), 1, + anon_sym_orelse, + ACTIONS(3459), 1, + anon_sym_catch, + ACTIONS(3461), 1, + anon_sym_or, + ACTIONS(3463), 1, + anon_sym_and, + ACTIONS(3725), 1, + anon_sym_PIPE, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3445), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3467), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [16278] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, + anon_sym_DOT, + ACTIONS(3453), 1, + anon_sym_DOT_DOT, + ACTIONS(3455), 1, + anon_sym_DOT_DOT_EQ, + ACTIONS(3457), 1, + anon_sym_orelse, + ACTIONS(3459), 1, + anon_sym_catch, + ACTIONS(3461), 1, + anon_sym_or, + ACTIONS(3463), 1, + anon_sym_and, + ACTIONS(3727), 1, + anon_sym_PIPE, + STATE(504), 1, + sym_argument_list, + ACTIONS(33), 2, + anon_sym_QMARK, + anon_sym_CARET, + ACTIONS(3445), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3449), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3467), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3465), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [16337] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(3729), 1, + ts_builtin_sym_end, + ACTIONS(3733), 1, + anon_sym_BANG, + ACTIONS(3735), 1, + sym__newline, + STATE(1675), 1, + sym_block, + STATE(1892), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(987), 3, anon_sym_COLON_COLON, anon_sym_EQ, anon_sym_PIPE, - [15914] = 6, + ACTIONS(3731), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [16369] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(7), 1, sym_identifier, ACTIONS(9), 1, anon_sym_import, - ACTIONS(3719), 1, + ACTIONS(11), 1, + anon_sym_hide, + ACTIONS(3738), 1, ts_builtin_sym_end, - ACTIONS(3721), 1, + ACTIONS(3740), 1, sym__newline, - STATE(1495), 7, + STATE(1512), 7, sym__top_level_declaration, sym_import_declaration, sym_function_declaration, @@ -136431,7851 +138203,8281 @@ static const uint16_t ts_small_parse_table[] = { sym_global_constant_declaration, sym_global_variable_declaration, aux_sym_source_file_repeat1, - [15939] = 9, + [16397] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(3723), 1, + ACTIONS(3742), 1, ts_builtin_sym_end, - ACTIONS(3727), 1, - anon_sym_BANG, - ACTIONS(3729), 1, - sym__newline, - STATE(1759), 1, - sym_block, - STATE(1764), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(3725), 2, - anon_sym_import, + ACTIONS(3744), 1, 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(3732), 1, - ts_builtin_sym_end, - ACTIONS(3736), 1, - sym__newline, - STATE(1752), 1, - sym_block, - STATE(1753), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(3734), 2, + ACTIONS(3747), 1, anon_sym_import, - sym_identifier, - ACTIONS(1085), 3, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [15998] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(3739), 1, - ts_builtin_sym_end, - ACTIONS(3743), 1, - sym__newline, - STATE(1742), 1, - sym_block, - STATE(1744), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(3741), 2, - anon_sym_import, - sym_identifier, - ACTIONS(1037), 3, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [16026] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(3748), 1, - anon_sym_RPAREN, ACTIONS(3750), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3752), 1, - anon_sym_DOLLAR, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - STATE(2019), 1, - sym_parameter, - ACTIONS(3746), 2, - sym_sink, - sym_identifier, - [16052] = 8, + anon_sym_hide, + ACTIONS(3753), 1, + sym__newline, + STATE(1512), 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, + [16425] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, - anon_sym_DOLLAR, - ACTIONS(3754), 1, - anon_sym_RPAREN, + ACTIONS(25), 1, + anon_sym_LBRACE, ACTIONS(3756), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3758), 1, - sym__newline, - STATE(1501), 1, - aux_sym_import_declaration_repeat1, - STATE(1950), 1, - sym_parameter, - ACTIONS(3746), 2, - sym_sink, - sym_identifier, - [16078] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3750), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3752), 1, - anon_sym_DOLLAR, + ts_builtin_sym_end, ACTIONS(3760), 1, - anon_sym_RPAREN, + anon_sym_BANG, ACTIONS(3762), 1, sym__newline, - STATE(1506), 1, + STATE(1590), 1, + sym_block, + STATE(1783), 1, aux_sym_import_declaration_repeat1, - STATE(2019), 1, - sym_parameter, - ACTIONS(3746), 2, - sym_sink, - sym_identifier, - [16104] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3752), 1, - anon_sym_DOLLAR, - ACTIONS(3764), 1, - anon_sym_RPAREN, - ACTIONS(3766), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3768), 1, - sym__newline, - STATE(1507), 1, - aux_sym_import_declaration_repeat1, - STATE(1544), 1, - sym_parameter, - ACTIONS(3746), 2, - sym_sink, - sym_identifier, - [16130] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3752), 1, - anon_sym_DOLLAR, - ACTIONS(3756), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3760), 1, - anon_sym_RPAREN, - ACTIONS(3770), 1, - sym__newline, - STATE(1508), 1, - aux_sym_import_declaration_repeat1, - STATE(1950), 1, - sym_parameter, - ACTIONS(3746), 2, - sym_sink, - sym_identifier, - [16156] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(3752), 1, - anon_sym_DOLLAR, - ACTIONS(3754), 1, - anon_sym_RPAREN, - 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, - [16182] = 8, - ACTIONS(3), 1, - sym_comment, - 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(1511), 1, - aux_sym_import_declaration_repeat1, - STATE(2019), 1, - sym_parameter, - ACTIONS(3746), 2, - sym_sink, - sym_identifier, - [16260] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3752), 1, - anon_sym_DOLLAR, - ACTIONS(3756), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3780), 1, - anon_sym_RPAREN, - ACTIONS(3782), 1, - sym__newline, - STATE(1512), 1, - aux_sym_import_declaration_repeat1, - STATE(1950), 1, - sym_parameter, - ACTIONS(3746), 2, - sym_sink, - sym_identifier, - [16286] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - 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(1942), 1, - sym_parameter, - ACTIONS(3746), 2, - sym_sink, - sym_identifier, - [16312] = 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(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, - anon_sym_RPAREN, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - STATE(1942), 1, - sym_parameter, - ACTIONS(3746), 2, - sym_sink, - sym_identifier, - [16364] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3748), 1, - anon_sym_RPAREN, - ACTIONS(3750), 1, - anon_sym_DOT_DOT_DOT, - 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, + ACTIONS(1115), 3, + anon_sym_COLON_COLON, + anon_sym_EQ, 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, + ACTIONS(3758), 3, + anon_sym_import, + anon_sym_hide, sym_identifier, - [16438] = 7, + [16457] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3750), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3752), 1, - anon_sym_DOLLAR, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(3765), 1, + ts_builtin_sym_end, + ACTIONS(3769), 1, + anon_sym_BANG, + ACTIONS(3771), 1, + sym__newline, + STATE(1561), 1, + sym_block, + STATE(1948), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1115), 3, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(3767), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [16489] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(3774), 1, + ts_builtin_sym_end, + ACTIONS(3778), 1, + anon_sym_BANG, + ACTIONS(3780), 1, + sym__newline, + STATE(1686), 1, + sym_block, + STATE(1908), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(987), 3, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(3776), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [16521] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(3783), 1, + ts_builtin_sym_end, + ACTIONS(3787), 1, + sym__newline, + STATE(1606), 1, + sym_block, + STATE(1808), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1149), 3, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(3785), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [16550] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, ACTIONS(3790), 1, - sym__newline, - STATE(1516), 1, - aux_sym_import_declaration_repeat1, - STATE(2019), 1, - sym_parameter, - ACTIONS(3746), 2, - sym_sink, - sym_identifier, - [16461] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(3750), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3752), 1, - anon_sym_DOLLAR, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - STATE(2019), 1, - sym_parameter, - ACTIONS(3746), 2, - sym_sink, - sym_identifier, - [16484] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3752), 1, - anon_sym_DOLLAR, - ACTIONS(3756), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3792), 1, - sym__newline, - STATE(1518), 1, - aux_sym_import_declaration_repeat1, - STATE(1950), 1, - sym_parameter, - ACTIONS(3746), 2, - sym_sink, - sym_identifier, - [16507] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3067), 1, ts_builtin_sym_end, ACTIONS(3794), 1, - anon_sym_else, + sym__newline, + STATE(1671), 1, + sym_block, + STATE(1889), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(1169), 3, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(3792), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [16579] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, ACTIONS(3797), 1, - sym__newline, - STATE(2015), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(3065), 2, - anon_sym_import, - sym_identifier, - [16527] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3039), 1, ts_builtin_sym_end, - ACTIONS(3800), 1, - anon_sym_else, - ACTIONS(3802), 1, + ACTIONS(3801), 1, sym__newline, - STATE(2030), 1, + STATE(1704), 1, + sym_block, + STATE(1924), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3037), 2, + ACTIONS(1169), 3, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(3799), 3, anon_sym_import, + anon_sym_hide, sym_identifier, - [16547] = 6, + [16608] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_COMMA, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(3804), 1, + ts_builtin_sym_end, ACTIONS(3808), 1, sym__newline, - STATE(1522), 1, - aux_sym_match_arm_repeat1, - STATE(1917), 1, + STATE(1650), 1, + sym_block, + STATE(1864), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3565), 2, + ACTIONS(1149), 3, + anon_sym_COLON_COLON, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_COLON, - [16567] = 6, + ACTIONS(3806), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [16637] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3076), 1, - ts_builtin_sym_end, - ACTIONS(3811), 1, - anon_sym_else, + ACTIONS(237), 1, + sym__newline, ACTIONS(3813), 1, - sym__newline, - STATE(1932), 1, + anon_sym_RPAREN, + ACTIONS(3815), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3817), 1, + anon_sym_DOLLAR, + STATE(690), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3074), 2, - anon_sym_import, + STATE(2006), 1, + sym_parameter, + ACTIONS(3811), 2, + sym_sink, sym_identifier, - [16587] = 6, + [16663] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3085), 1, - ts_builtin_sym_end, - ACTIONS(3816), 1, - anon_sym_else, - ACTIONS(3818), 1, + ACTIONS(237), 1, sym__newline, - STATE(1968), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(3083), 2, - anon_sym_import, - sym_identifier, - [16607] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3067), 1, - ts_builtin_sym_end, + ACTIONS(3817), 1, + anon_sym_DOLLAR, + ACTIONS(3819), 1, + anon_sym_RPAREN, ACTIONS(3821), 1, - anon_sym_else, - ACTIONS(3823), 1, - sym__newline, - STATE(1943), 1, + anon_sym_DOT_DOT_DOT, + STATE(690), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3065), 2, - anon_sym_import, + STATE(1674), 1, + sym_parameter, + ACTIONS(3811), 2, + sym_sink, sym_identifier, - [16627] = 6, + [16689] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3826), 1, - anon_sym_COMMA, + ACTIONS(3817), 1, + anon_sym_DOLLAR, + ACTIONS(3823), 1, + anon_sym_RPAREN, + ACTIONS(3825), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3827), 1, + sym__newline, + STATE(1528), 1, + aux_sym_import_declaration_repeat1, + STATE(2011), 1, + sym_parameter, + ACTIONS(3811), 2, + sym_sink, + sym_identifier, + [16715] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(3813), 1, + anon_sym_RPAREN, + ACTIONS(3817), 1, + anon_sym_DOLLAR, + ACTIONS(3829), 1, + anon_sym_DOT_DOT_DOT, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(2064), 1, + sym_parameter, + ACTIONS(3811), 2, + sym_sink, + sym_identifier, + [16741] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3813), 1, + anon_sym_RPAREN, + ACTIONS(3815), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3817), 1, + anon_sym_DOLLAR, ACTIONS(3831), 1, sym__newline, - STATE(1526), 1, - aux_sym_capture_list_repeat1, - STATE(2035), 1, + STATE(1533), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3829), 2, - anon_sym_PIPE, - anon_sym_COLON, - [16647] = 6, + STATE(2006), 1, + sym_parameter, + ACTIONS(3811), 2, + sym_sink, + sym_identifier, + [16767] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3058), 1, - ts_builtin_sym_end, - ACTIONS(3834), 1, - anon_sym_else, + ACTIONS(3813), 1, + anon_sym_RPAREN, + ACTIONS(3817), 1, + anon_sym_DOLLAR, + ACTIONS(3825), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3833), 1, + sym__newline, + STATE(1526), 1, + aux_sym_import_declaration_repeat1, + STATE(2011), 1, + sym_parameter, + ACTIONS(3811), 2, + sym_sink, + sym_identifier, + [16793] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(3815), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3817), 1, + anon_sym_DOLLAR, + ACTIONS(3835), 1, + anon_sym_RPAREN, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(2006), 1, + sym_parameter, + ACTIONS(3811), 2, + sym_sink, + sym_identifier, + [16819] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3815), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3817), 1, + anon_sym_DOLLAR, + ACTIONS(3835), 1, + anon_sym_RPAREN, ACTIONS(3837), 1, sym__newline, - STATE(2014), 1, + STATE(1532), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3056), 2, - anon_sym_import, + STATE(2006), 1, + sym_parameter, + ACTIONS(3811), 2, + sym_sink, sym_identifier, - [16667] = 6, + [16845] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3840), 1, - anon_sym_COMMA, + ACTIONS(237), 1, + sym__newline, + ACTIONS(3815), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3817), 1, + anon_sym_DOLLAR, + ACTIONS(3839), 1, + anon_sym_RPAREN, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(2006), 1, + sym_parameter, + ACTIONS(3811), 2, + sym_sink, + sym_identifier, + [16871] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3815), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3817), 1, + anon_sym_DOLLAR, + ACTIONS(3839), 1, + anon_sym_RPAREN, + ACTIONS(3841), 1, + sym__newline, + STATE(1523), 1, + aux_sym_import_declaration_repeat1, + STATE(2006), 1, + sym_parameter, + ACTIONS(3811), 2, + sym_sink, + sym_identifier, + [16897] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3817), 1, + anon_sym_DOLLAR, + ACTIONS(3825), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3839), 1, + anon_sym_RPAREN, ACTIONS(3843), 1, sym__newline, - STATE(1528), 1, - aux_sym_match_arm_repeat1, - STATE(2002), 1, + STATE(1520), 1, aux_sym_import_declaration_repeat1, - ACTIONS(3565), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [16687] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3846), 1, - anon_sym_COMMA, - ACTIONS(3848), 1, - anon_sym_PIPE, - ACTIONS(3850), 1, - anon_sym_COLON, - ACTIONS(3852), 1, - sym__newline, - STATE(1532), 1, - aux_sym_capture_list_repeat1, - STATE(2035), 1, - aux_sym_import_declaration_repeat1, - [16709] = 6, - ACTIONS(3), 1, - sym_comment, - 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, + STATE(2011), 1, + sym_parameter, + ACTIONS(3811), 2, + sym_sink, sym_identifier, - [16729] = 6, + [16923] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3049), 1, + ACTIONS(3817), 1, + anon_sym_DOLLAR, + ACTIONS(3845), 1, + anon_sym_RPAREN, + ACTIONS(3847), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3849), 1, + sym__newline, + STATE(1521), 1, + aux_sym_import_declaration_repeat1, + STATE(1720), 1, + sym_parameter, + ACTIONS(3811), 2, + sym_sink, + sym_identifier, + [16949] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(3817), 1, + anon_sym_DOLLAR, + ACTIONS(3829), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3851), 1, + anon_sym_RPAREN, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(2064), 1, + sym_parameter, + ACTIONS(3811), 2, + sym_sink, + sym_identifier, + [16975] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(3817), 1, + anon_sym_DOLLAR, + ACTIONS(3829), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3835), 1, + anon_sym_RPAREN, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(2064), 1, + sym_parameter, + ACTIONS(3811), 2, + sym_sink, + sym_identifier, + [17001] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3071), 1, ts_builtin_sym_end, + ACTIONS(3853), 1, + anon_sym_else, + ACTIONS(3855), 1, + sym__newline, + STATE(2077), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(3069), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [17022] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3815), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3817), 1, + anon_sym_DOLLAR, + ACTIONS(3858), 1, + sym__newline, + STATE(1546), 1, + aux_sym_import_declaration_repeat1, + STATE(2006), 1, + sym_parameter, + ACTIONS(3811), 2, + sym_sink, + sym_identifier, + [17045] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3443), 1, + anon_sym_COMMA, + ACTIONS(3447), 1, + anon_sym_PIPE, + ACTIONS(3469), 1, + sym__newline, 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(1931), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(3056), 2, - anon_sym_import, - sym_identifier, - [16791] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3049), 1, - ts_builtin_sym_end, - ACTIONS(3875), 1, - anon_sym_else, - ACTIONS(3877), 1, - sym__newline, - STATE(2033), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(3047), 2, - anon_sym_import, - sym_identifier, - [16811] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3085), 1, - ts_builtin_sym_end, - ACTIONS(3880), 1, - anon_sym_else, - ACTIONS(3883), 1, - sym__newline, - STATE(2017), 1, - aux_sym_import_declaration_repeat1, - 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(3892), 1, - sym_identifier, - ACTIONS(3894), 1, - sym__newline, - STATE(1063), 1, - sym_block, - STATE(1547), 1, - aux_sym_import_declaration_repeat1, - [16870] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(3896), 1, - sym_identifier, - ACTIONS(3898), 1, - anon_sym_RBRACE, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - STATE(1934), 1, - sym_field_initializer, - [16889] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3896), 1, - sym_identifier, - ACTIONS(3898), 1, - anon_sym_RBRACE, - ACTIONS(3900), 1, - sym__newline, - STATE(1589), 1, - aux_sym_import_declaration_repeat1, - STATE(1934), 1, - sym_field_initializer, - [16908] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3896), 1, - sym_identifier, - ACTIONS(3898), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - sym__newline, - 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, - [16965] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(227), 1, - sym__newline, - ACTIONS(3916), 1, - sym_identifier, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - STATE(1056), 1, - sym_block, - [16984] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3774), 1, - anon_sym_RPAREN, - ACTIONS(3918), 1, - anon_sym_COMMA, - ACTIONS(3920), 1, - sym__newline, - STATE(1588), 1, - aux_sym_parameter_list_repeat1, - STATE(1734), 1, - aux_sym_import_declaration_repeat1, - [17003] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1897), 1, - anon_sym_RBRACK, - ACTIONS(3922), 1, - anon_sym_COMMA, - ACTIONS(3924), 1, - sym__newline, - STATE(1528), 1, + STATE(1553), 1, aux_sym_match_arm_repeat1, - STATE(1778), 1, + STATE(2054), 1, aux_sym_import_declaration_repeat1, - [17022] = 6, + STATE(2192), 1, + sym_match_capture, + [17070] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(3053), 1, + ts_builtin_sym_end, + ACTIONS(3862), 1, + anon_sym_else, + ACTIONS(3865), 1, sym__newline, - ACTIONS(3926), 1, + STATE(2059), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(3051), 3, + anon_sym_import, + anon_sym_hide, sym_identifier, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - STATE(1036), 1, - sym_block, - [17041] = 6, + [17091] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(3062), 1, + ts_builtin_sym_end, + ACTIONS(3868), 1, + anon_sym_else, + ACTIONS(3871), 1, sym__newline, - ACTIONS(3928), 1, + STATE(2053), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(3060), 3, + anon_sym_import, + anon_sym_hide, sym_identifier, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - STATE(1093), 1, - sym_block, - [17060] = 6, + [17112] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(3930), 1, + ACTIONS(3104), 1, + ts_builtin_sym_end, + ACTIONS(3874), 1, + anon_sym_else, + ACTIONS(3876), 1, + sym__newline, + STATE(1961), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(3102), 3, + anon_sym_import, + anon_sym_hide, sym_identifier, - ACTIONS(3932), 1, - sym__newline, - STATE(1151), 1, - sym_block, - STATE(1622), 1, - aux_sym_import_declaration_repeat1, - [17079] = 6, + [17133] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(3104), 1, + ts_builtin_sym_end, + ACTIONS(3879), 1, + anon_sym_else, + ACTIONS(3882), 1, sym__newline, - ACTIONS(3934), 1, + STATE(2055), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(3102), 3, + anon_sym_import, + anon_sym_hide, sym_identifier, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - STATE(1045), 1, - sym_block, - [17098] = 6, + [17154] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(3081), 1, + ts_builtin_sym_end, + ACTIONS(3885), 1, + anon_sym_else, + ACTIONS(3887), 1, sym__newline, - ACTIONS(3936), 1, + STATE(1967), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(3079), 3, + anon_sym_import, + anon_sym_hide, sym_identifier, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - STATE(1153), 1, - sym_block, - [17117] = 6, + [17175] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(3081), 1, + ts_builtin_sym_end, + ACTIONS(3890), 1, + anon_sym_else, + ACTIONS(3893), 1, sym__newline, - ACTIONS(3938), 1, + STATE(2056), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(3079), 3, + anon_sym_import, + anon_sym_hide, sym_identifier, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - STATE(1060), 1, - sym_block, - [17136] = 6, + [17196] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1837), 1, - anon_sym_RBRACE, - ACTIONS(3940), 1, - anon_sym_COMMA, - ACTIONS(3942), 1, + ACTIONS(237), 1, sym__newline, - STATE(1652), 1, - aux_sym_variant_payload_repeat1, - STATE(1884), 1, + ACTIONS(3815), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3817), 1, + anon_sym_DOLLAR, + STATE(690), 1, aux_sym_import_declaration_repeat1, - [17155] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(227), 1, - sym__newline, - ACTIONS(3944), 1, + STATE(2006), 1, + sym_parameter, + ACTIONS(3811), 2, + sym_sink, sym_identifier, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - STATE(1136), 1, - sym_block, - [17174] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(227), 1, - sym__newline, - ACTIONS(3946), 1, - sym_identifier, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - STATE(1062), 1, - sym_block, - [17193] = 6, - ACTIONS(3), 1, - sym_comment, - 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, + [17219] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(3090), 1, + ts_builtin_sym_end, ACTIONS(3896), 1, + anon_sym_else, + ACTIONS(3899), 1, + sym__newline, + STATE(2057), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(3088), 3, + anon_sym_import, + anon_sym_hide, 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, + [17240] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3950), 1, - anon_sym_RBRACE, - ACTIONS(3954), 1, - anon_sym_COMMA, - ACTIONS(3956), 1, + ACTIONS(3062), 1, + ts_builtin_sym_end, + ACTIONS(3902), 1, + anon_sym_else, + ACTIONS(3904), 1, sym__newline, - STATE(1541), 1, - aux_sym_initializer_list_repeat1, - STATE(1667), 1, + STATE(1985), 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(3960), 1, - anon_sym_COMMA, - ACTIONS(3963), 1, - sym__newline, - STATE(1559), 1, - aux_sym_parameter_list_repeat1, - STATE(2027), 1, - aux_sym_import_declaration_repeat1, - [17288] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(227), 1, - sym__newline, - ACTIONS(3966), 1, + ACTIONS(3060), 3, + anon_sym_import, + anon_sym_hide, sym_identifier, - STATE(682), 1, + [17261] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(3817), 1, + anon_sym_DOLLAR, + ACTIONS(3829), 1, + anon_sym_DOT_DOT_DOT, + STATE(690), 1, aux_sym_import_declaration_repeat1, - STATE(1048), 1, - sym_block, + STATE(2064), 1, + sym_parameter, + ACTIONS(3811), 2, + sym_sink, + sym_identifier, + [17284] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3817), 1, + anon_sym_DOLLAR, + ACTIONS(3825), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3907), 1, + sym__newline, + STATE(1543), 1, + aux_sym_import_declaration_repeat1, + STATE(2011), 1, + sym_parameter, + ACTIONS(3811), 2, + sym_sink, + sym_identifier, [17307] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(3968), 1, - sym_identifier, - ACTIONS(3970), 1, - sym__newline, - STATE(1180), 1, - sym_block, - STATE(1600), 1, - aux_sym_import_declaration_repeat1, - [17326] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3760), 1, - anon_sym_RPAREN, - ACTIONS(3972), 1, - anon_sym_COMMA, - ACTIONS(3974), 1, - sym__newline, - STATE(1559), 1, - aux_sym_parameter_list_repeat1, - STATE(1741), 1, - aux_sym_import_declaration_repeat1, - [17345] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(227), 1, - sym__newline, - ACTIONS(3976), 1, - sym_identifier, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - 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, - STATE(1586), 1, - aux_sym_import_declaration_repeat1, - [17402] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(3984), 1, - sym_identifier, - ACTIONS(3986), 1, - sym__newline, - STATE(1185), 1, - sym_block, - STATE(1604), 1, - aux_sym_import_declaration_repeat1, - [17421] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(3988), 1, - sym_identifier, - ACTIONS(3990), 1, - sym__newline, - STATE(1188), 1, - sym_block, - STATE(1605), 1, - aux_sym_import_declaration_repeat1, - [17440] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3047), 1, - sym_identifier, - ACTIONS(3049), 1, - anon_sym_LBRACE, - ACTIONS(3992), 1, + ACTIONS(3090), 1, + ts_builtin_sym_end, + ACTIONS(3909), 1, anon_sym_else, - ACTIONS(3994), 1, + ACTIONS(3911), 1, sym__newline, - STATE(1958), 1, + STATE(2074), 1, aux_sym_import_declaration_repeat1, - [17459] = 6, + ACTIONS(3088), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [17328] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, + ACTIONS(3071), 1, + ts_builtin_sym_end, + ACTIONS(3914), 1, + anon_sym_else, + ACTIONS(3917), 1, + sym__newline, + STATE(2058), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(3069), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [17349] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3053), 1, + ts_builtin_sym_end, + ACTIONS(3920), 1, + anon_sym_else, + ACTIONS(3922), 1, + sym__newline, + STATE(1980), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(3051), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [17370] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3925), 1, + anon_sym_COMMA, + ACTIONS(3927), 1, + anon_sym_PIPE, + ACTIONS(3929), 1, + anon_sym_COLON, + ACTIONS(3931), 1, + sym__newline, + STATE(1554), 1, + aux_sym_capture_list_repeat1, + STATE(2073), 1, + aux_sym_import_declaration_repeat1, + [17392] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3933), 1, + anon_sym_COMMA, + ACTIONS(3936), 1, + sym__newline, + STATE(1552), 1, + aux_sym_match_arm_repeat1, + STATE(2051), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(3602), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [17412] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3939), 1, + anon_sym_COMMA, + ACTIONS(3942), 1, + sym__newline, + STATE(1553), 1, + aux_sym_match_arm_repeat1, + STATE(2054), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(3602), 2, + anon_sym_PIPE, + anon_sym_COLON, + [17432] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3925), 1, + anon_sym_COMMA, + ACTIONS(3931), 1, + sym__newline, + ACTIONS(3945), 1, + anon_sym_PIPE, + ACTIONS(3947), 1, + anon_sym_COLON, + STATE(1555), 1, + aux_sym_capture_list_repeat1, + STATE(2073), 1, + aux_sym_import_declaration_repeat1, + [17454] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3949), 1, + anon_sym_COMMA, + ACTIONS(3954), 1, + sym__newline, + STATE(1555), 1, + aux_sym_capture_list_repeat1, + STATE(2073), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(3952), 2, + anon_sym_PIPE, + anon_sym_COLON, + [17474] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(3957), 1, + sym_identifier, + ACTIONS(3959), 1, + sym__newline, + STATE(1236), 1, + sym_block, + STATE(1667), 1, + aux_sym_import_declaration_repeat1, + [17493] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3961), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(3963), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [17506] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + ACTIONS(3965), 1, + sym_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1109), 1, + sym_block, + [17525] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3967), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(3969), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [17538] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3971), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(3973), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [17551] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3975), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(3977), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [17564] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3979), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(3981), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [17577] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(3983), 1, + sym_identifier, + ACTIONS(3985), 1, + sym__newline, + STATE(1095), 1, + sym_block, + STATE(1695), 1, + aux_sym_import_declaration_repeat1, + [17596] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3987), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(3989), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [17609] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(3991), 1, + sym_identifier, + ACTIONS(3993), 1, + anon_sym_RBRACE, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1976), 1, + sym_keyed_field_initializer, + [17628] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(3991), 1, + sym_identifier, + ACTIONS(3993), 1, + anon_sym_RBRACE, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1991), 1, + sym_keyed_field_initializer, + [17647] = 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_import_declaration_repeat1, + STATE(1991), 1, + sym_keyed_field_initializer, + [17666] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3635), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(3637), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [17679] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, sym__newline, ACTIONS(3997), 1, sym_identifier, - STATE(682), 1, + STATE(690), 1, aux_sym_import_declaration_repeat1, - STATE(1189), 1, + STATE(1122), 1, sym_block, - [17478] = 6, + [17698] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(3991), 1, + sym_identifier, + ACTIONS(3993), 1, + anon_sym_RBRACE, ACTIONS(3999), 1, - anon_sym_LPAREN, - ACTIONS(4001), 1, + sym__newline, + STATE(1641), 1, + aux_sym_import_declaration_repeat1, + STATE(2082), 1, + sym_keyed_field_initializer, + [17717] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, anon_sym_LBRACE, + ACTIONS(4001), 1, + anon_sym_BANG, ACTIONS(4003), 1, sym__newline, - STATE(437), 1, - sym_enum_body, - STATE(1870), 1, + STATE(493), 1, + sym_block, + STATE(1917), 1, aux_sym_import_declaration_repeat1, - [17497] = 6, + [17736] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, ACTIONS(4005), 1, sym_identifier, ACTIONS(4007), 1, - sym__newline, - STATE(1190), 1, - sym_block, - STATE(1610), 1, + anon_sym_RBRACE, + STATE(690), 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, + [17755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1857), 1, + ACTIONS(4009), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4011), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [17768] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4005), 1, + sym_identifier, + ACTIONS(4007), 1, + anon_sym_RBRACE, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1958), 1, + sym_field_initializer, + [17787] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4005), 1, + sym_identifier, + ACTIONS(4013), 1, + anon_sym_RBRACE, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1973), 1, + sym_field_initializer, + [17806] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4005), 1, + sym_identifier, + ACTIONS(4013), 1, + anon_sym_RBRACE, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1958), 1, + sym_field_initializer, + [17825] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1879), 1, anon_sym_RPAREN, - ACTIONS(4072), 1, + ACTIONS(4015), 1, anon_sym_COMMA, + ACTIONS(4017), 1, + sym__newline, + STATE(1552), 1, + aux_sym_match_arm_repeat1, + STATE(1900), 1, + aux_sym_import_declaration_repeat1, + [17844] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3060), 1, + sym_identifier, + ACTIONS(3062), 1, + anon_sym_LBRACE, + ACTIONS(4019), 1, + anon_sym_else, + ACTIONS(4021), 1, + sym__newline, + STATE(1971), 1, + aux_sym_import_declaration_repeat1, + [17863] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1889), 1, + anon_sym_RBRACK, + ACTIONS(4024), 1, + anon_sym_COMMA, + ACTIONS(4026), 1, + sym__newline, + STATE(1552), 1, + aux_sym_match_arm_repeat1, + STATE(1831), 1, + aux_sym_import_declaration_repeat1, + [17882] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4005), 1, + sym_identifier, + ACTIONS(4013), 1, + anon_sym_RBRACE, + ACTIONS(4028), 1, + sym__newline, + STATE(1644), 1, + aux_sym_import_declaration_repeat1, + STATE(1958), 1, + sym_field_initializer, + [17901] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4005), 1, + sym_identifier, + ACTIONS(4007), 1, + anon_sym_RBRACE, + ACTIONS(4030), 1, + sym__newline, + STATE(1575), 1, + aux_sym_import_declaration_repeat1, + STATE(1958), 1, + sym_field_initializer, + [17920] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4032), 1, + sym_identifier, + ACTIONS(4034), 1, + sym__newline, + STATE(1034), 1, + sym_block, + STATE(1687), 1, + aux_sym_import_declaration_repeat1, + [17939] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3991), 1, + sym_identifier, + ACTIONS(4036), 1, + anon_sym_RBRACE, + ACTIONS(4038), 1, + sym__newline, + STATE(1565), 1, + aux_sym_import_declaration_repeat1, + STATE(1991), 1, + sym_keyed_field_initializer, + [17958] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4040), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4042), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [17971] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4044), 1, + sym_identifier, + ACTIONS(4046), 1, + anon_sym_RBRACE, + ACTIONS(4048), 1, + sym__newline, + STATE(1703), 1, + aux_sym_record_body_repeat1, + STATE(1751), 1, + sym_record_field, + [17990] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4050), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4052), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [18003] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3102), 1, + sym_identifier, + ACTIONS(3104), 1, + anon_sym_LBRACE, + ACTIONS(4054), 1, + anon_sym_else, + ACTIONS(4056), 1, + sym__newline, + STATE(1983), 1, + aux_sym_import_declaration_repeat1, + [18022] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4059), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4061), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [18035] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3079), 1, + sym_identifier, + ACTIONS(3081), 1, + anon_sym_LBRACE, + ACTIONS(4063), 1, + anon_sym_else, + ACTIONS(4065), 1, + sym__newline, + STATE(1995), 1, + aux_sym_import_declaration_repeat1, + [18054] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4068), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4070), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [18067] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3088), 1, + sym_identifier, + ACTIONS(3090), 1, + anon_sym_LBRACE, + ACTIONS(4072), 1, + anon_sym_else, ACTIONS(4074), 1, sym__newline, - STATE(1528), 1, - aux_sym_match_arm_repeat1, - STATE(1859), 1, + STATE(1996), 1, aux_sym_import_declaration_repeat1, - [17820] = 6, + [18086] = 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, + ACTIONS(3069), 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, + ACTIONS(3071), 1, + anon_sym_LBRACE, + ACTIONS(4077), 1, + anon_sym_else, + ACTIONS(4079), 1, sym__newline, - ACTIONS(3896), 1, - sym_identifier, - ACTIONS(4080), 1, - anon_sym_RBRACE, - STATE(682), 1, + STATE(1998), 1, aux_sym_import_declaration_repeat1, - STATE(1934), 1, - sym_field_initializer, - [17877] = 6, + [18105] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3896), 1, + ACTIONS(3051), 1, sym_identifier, - ACTIONS(4080), 1, - anon_sym_RBRACE, + ACTIONS(3053), 1, + anon_sym_LBRACE, 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, + anon_sym_else, ACTIONS(4084), 1, sym__newline, - STATE(1618), 1, + STATE(2010), 1, aux_sym_import_declaration_repeat1, - STATE(2005), 1, + [18124] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4005), 1, + sym_identifier, + ACTIONS(4007), 1, + anon_sym_RBRACE, + ACTIONS(4087), 1, + sym__newline, + STATE(1576), 1, + aux_sym_import_declaration_repeat1, + STATE(2000), 1, sym_field_initializer, - [17915] = 6, + [18143] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, + ACTIONS(4089), 1, + anon_sym_LPAREN, + ACTIONS(4091), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(4093), 1, sym__newline, - ACTIONS(4086), 1, - sym_identifier, - STATE(682), 1, + STATE(424), 1, + sym_record_body, + STATE(1880), 1, aux_sym_import_declaration_repeat1, - STATE(1069), 1, - sym_block, - [17934] = 6, + [18162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4088), 1, + ACTIONS(4095), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4097), 3, + anon_sym_import, + anon_sym_hide, sym_identifier, - ACTIONS(4090), 1, - sym__newline, - STATE(1041), 1, - sym_block, - STATE(1593), 1, - aux_sym_import_declaration_repeat1, - [17953] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4014), 1, - sym_identifier, - ACTIONS(4092), 1, - anon_sym_RBRACE, - ACTIONS(4094), 1, - sym__newline, - STATE(1621), 1, - aux_sym_record_body_repeat1, - STATE(1750), 1, - sym_record_field, - [17972] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3780), 1, - anon_sym_RPAREN, - ACTIONS(4076), 1, - anon_sym_COMMA, - ACTIONS(4078), 1, - sym__newline, - STATE(1562), 1, - aux_sym_parameter_list_repeat1, - STATE(1682), 1, - aux_sym_import_declaration_repeat1, - [17991] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4096), 1, - sym_identifier, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - STATE(1072), 1, - sym_block, - [18010] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4100), 1, - anon_sym_EQ, - ACTIONS(4098), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - sym_identifier, - 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(227), 1, - sym__newline, - ACTIONS(4108), 1, - sym_identifier, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - STATE(1197), 1, - sym_block, - [18061] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4110), 1, - sym_identifier, - ACTIONS(4112), 1, - sym__newline, - STATE(1033), 1, - sym_block, - STATE(1554), 1, - aux_sym_import_declaration_repeat1, - [18080] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - 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, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(4130), 1, + ACTIONS(4099), 1, sym_identifier, - ACTIONS(4132), 1, + ACTIONS(4101), 1, sym__newline, - STATE(1077), 1, + STATE(1180), 1, sym_block, - STATE(1555), 1, + STATE(1634), 1, aux_sym_import_declaration_repeat1, [18194] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, + ACTIONS(4103), 1, + anon_sym_LPAREN, + ACTIONS(4105), 1, anon_sym_LBRACE, - ACTIONS(4134), 1, - sym_identifier, - ACTIONS(4136), 1, + ACTIONS(4107), 1, sym__newline, - STATE(1210), 1, - sym_block, - STATE(1640), 1, + STATE(425), 1, + sym_enum_body, + STATE(1882), 1, aux_sym_import_declaration_repeat1, [18213] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(4138), 1, + ACTIONS(4109), 1, sym_identifier, - ACTIONS(4140), 1, + ACTIONS(4111), 1, sym__newline, - STATE(1211), 1, + STATE(1039), 1, sym_block, - STATE(1642), 1, + STATE(1692), 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, + ACTIONS(3060), 1, sym_identifier, - STATE(682), 1, + ACTIONS(3062), 1, + anon_sym_LBRACE, + ACTIONS(4113), 1, + anon_sym_else, + ACTIONS(4116), 1, + sym__newline, + STATE(2090), 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, + ACTIONS(3102), 1, + sym_identifier, + ACTIONS(3104), 1, + anon_sym_LBRACE, + ACTIONS(4119), 1, + anon_sym_else, + ACTIONS(4122), 1, sym__newline, - STATE(1528), 1, - aux_sym_match_arm_repeat1, - STATE(1729), 1, + STATE(2031), 1, aux_sym_import_declaration_repeat1, [18270] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4025), 1, + ACTIONS(3079), 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, + ACTIONS(3081), 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, + ACTIONS(4125), 1, anon_sym_else, - ACTIONS(4205), 1, + ACTIONS(4128), 1, sym__newline, - STATE(1985), 1, + STATE(2032), 1, aux_sym_import_declaration_repeat1, - [18631] = 6, + [18289] = 3, 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, + ACTIONS(4133), 1, + anon_sym_EQ, + ACTIONS(4131), 4, 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, + sym__newline, + [18302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(4135), 2, + ts_builtin_sym_end, sym__newline, - ACTIONS(4294), 1, + ACTIONS(4137), 3, + anon_sym_import, + anon_sym_hide, sym_identifier, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - STATE(1025), 1, - sym_block, - [19144] = 6, + [18315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4296), 1, + ACTIONS(4139), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4141), 3, + anon_sym_import, + anon_sym_hide, sym_identifier, - ACTIONS(4298), 1, - sym__newline, - STATE(1026), 1, - sym_block, - STATE(1543), 1, - aux_sym_import_declaration_repeat1, - [19163] = 6, + [18328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(4143), 2, + ts_builtin_sym_end, sym__newline, - ACTIONS(4300), 1, + ACTIONS(4145), 3, + anon_sym_import, + anon_sym_hide, sym_identifier, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - STATE(1029), 1, - sym_block, - [19182] = 6, + [18341] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(4302), 1, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4147), 1, sym_identifier, - ACTIONS(4304), 1, - sym__newline, - STATE(1030), 1, - sym_block, - STATE(1551), 1, + STATE(690), 1, aux_sym_import_declaration_repeat1, - [19201] = 6, + STATE(1212), 1, + sym_block, + [18360] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4306), 1, + ACTIONS(4149), 1, sym_identifier, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - STATE(1032), 1, + ACTIONS(4151), 1, + sym__newline, + STATE(1213), 1, sym_block, - [19220] = 6, + STATE(1678), 1, + aux_sym_import_declaration_repeat1, + [18379] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(4308), 1, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4153), 1, sym_identifier, - ACTIONS(4310), 1, - sym__newline, - STATE(1198), 1, - sym_block, - STATE(1626), 1, + STATE(690), 1, aux_sym_import_declaration_repeat1, - [19239] = 5, + STATE(1215), 1, + sym_block, + [18398] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(4155), 1, + sym_identifier, + ACTIONS(4157), 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, + STATE(1217), 1, sym_block, STATE(1679), 1, aux_sym_import_declaration_repeat1, - [19271] = 4, + [18417] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, sym__newline, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4314), 2, - sym_sink, + ACTIONS(4159), 1, sym_identifier, - [19285] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, - anon_sym_DQUOTE, - ACTIONS(227), 1, - sym__newline, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - STATE(1719), 1, - sym_string, - [19301] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(3898), 1, - anon_sym_RBRACE, - ACTIONS(4316), 1, - anon_sym_COMMA, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [19317] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4318), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4320), 2, - anon_sym_import, - sym_identifier, - [19329] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4322), 1, - sym__newline, - STATE(1775), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4314), 2, - sym_sink, - sym_identifier, - [19343] = 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(1104), 1, - sym_block, - [19359] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(3950), 1, - anon_sym_RBRACE, - ACTIONS(4324), 1, - anon_sym_COMMA, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [19375] = 5, - ACTIONS(3), 1, - sym_comment, - 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(4332), 1, - anon_sym_else, - ACTIONS(4335), 1, - sym__newline, - STATE(2043), 1, - aux_sym_import_declaration_repeat1, - [19423] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4338), 1, - sym__newline, - STATE(1105), 1, - sym_block, - STATE(1792), 1, - aux_sym_import_declaration_repeat1, - [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(4350), 1, - sym__newline, - 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, - [19515] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - 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, - [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, - 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(1115), 1, - sym_block, - STATE(1831), 1, - aux_sym_import_declaration_repeat1, - [20163] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4428), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - sym__newline, - [20175] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4430), 1, - sym__newline, - 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, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [20239] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4436), 1, - sym__newline, - STATE(1116), 1, - sym_block, - STATE(1838), 1, - aux_sym_import_declaration_repeat1, - [20255] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(1857), 1, - anon_sym_RPAREN, - ACTIONS(4438), 1, - anon_sym_COMMA, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [20271] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4440), 1, - sym__newline, - STATE(1162), 1, - sym_block, - STATE(1900), 1, - aux_sym_import_declaration_repeat1, - [20287] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(89), 1, - anon_sym_DQUOTE, - ACTIONS(227), 1, - sym__newline, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - 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(4444), 1, - sym__newline, - STATE(472), 1, - sym_block, - STATE(1861), 1, - aux_sym_import_declaration_repeat1, - [20333] = 5, - ACTIONS(3), 1, - sym_comment, - 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(4454), 2, - anon_sym_import, - sym_identifier, - [20425] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4458), 1, - sym__newline, - STATE(1687), 1, - aux_sym_import_declaration_repeat1, - ACTIONS(4456), 2, - sym_sink, - sym_identifier, - [20439] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(3754), 1, - anon_sym_RPAREN, - ACTIONS(4460), 1, - anon_sym_COMMA, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [20455] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4462), 2, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4464), 2, - anon_sym_import, - sym_identifier, - [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(227), 1, - sym__newline, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - STATE(1751), 1, - sym_block, - [20499] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4080), 1, - anon_sym_RBRACE, - ACTIONS(4468), 1, - anon_sym_COMMA, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [20515] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(227), 1, - sym__newline, - STATE(473), 1, - sym_block, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [20531] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4328), 1, - anon_sym_COMMA, - ACTIONS(4470), 1, - anon_sym_RBRACK, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [20547] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4160), 1, - anon_sym_LBRACE, - STATE(434), 1, - sym_record_body, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [20563] = 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(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(1836), 1, - aux_sym_import_declaration_repeat1, - [20889] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4508), 2, - ts_builtin_sym_end, - sym__newline, - 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, - 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, - ACTIONS(4525), 1, - anon_sym_COMMA, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [21001] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4420), 1, - anon_sym_DASH, - STATE(1953), 1, - sym__type_constant, - ACTIONS(4527), 2, - sym_integer, - sym_character, - [21015] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4531), 1, - anon_sym_COMMA, - ACTIONS(4529), 3, - anon_sym_RBRACE, - sym_identifier, - sym__newline, - [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, - ts_builtin_sym_end, - sym__newline, - ACTIONS(4591), 2, - anon_sym_import, - sym_identifier, - [21343] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4593), 1, - sym__newline, - STATE(1204), 1, - sym_block, - STATE(1851), 1, - aux_sym_import_declaration_repeat1, - [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, + STATE(690), 1, aux_sym_import_declaration_repeat1, STATE(1096), 1, sym_block, - [21451] = 5, + [18436] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(4599), 1, + ACTIONS(237), 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, + ACTIONS(4161), 1, sym_identifier, - [21511] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(227), 1, - sym__newline, - STATE(682), 1, + STATE(690), 1, aux_sym_import_declaration_repeat1, - STATE(1126), 1, + STATE(1227), 1, sym_block, - [21527] = 5, + [18455] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4160), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(4607), 1, - sym__newline, - STATE(476), 1, - sym_record_body, - STATE(1737), 1, - aux_sym_import_declaration_repeat1, - [21543] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(1893), 1, - anon_sym_RPAREN, - ACTIONS(4533), 1, - anon_sym_COMMA, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [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, + ACTIONS(4163), 1, sym_identifier, - ACTIONS(4611), 1, + ACTIONS(4165), 1, sym__newline, - STATE(1876), 1, + STATE(1228), 1, + sym_block, + STATE(1712), 1, aux_sym_import_declaration_repeat1, - STATE(2013), 1, - sym_keyed_field_initializer, - [21591] = 5, + [18474] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(4613), 1, + ACTIONS(4167), 1, + sym_identifier, + ACTIONS(4169), 1, + sym__newline, + STATE(1237), 1, + sym_block, + STATE(1719), 1, + aux_sym_import_declaration_repeat1, + [18493] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4171), 1, + sym_identifier, + ACTIONS(4173), 1, sym__newline, STATE(1097), 1, sym_block, - STATE(1760), 1, + STATE(1723), 1, aux_sym_import_declaration_repeat1, - [21607] = 5, + [18512] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4144), 1, - anon_sym_RBRACE, - ACTIONS(4615), 1, - anon_sym_COMMA, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [21623] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(4175), 1, + sym_identifier, + ACTIONS(4177), 1, sym__newline, - STATE(509), 1, + STATE(1119), 1, sym_block, - STATE(682), 1, + STATE(1715), 1, aux_sym_import_declaration_repeat1, - [21639] = 2, + [18531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4617), 4, + ACTIONS(4179), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4181), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [18544] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1941), 1, + anon_sym_RBRACK, + ACTIONS(3483), 1, anon_sym_COMMA, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(4183), 1, sym__newline, - [21649] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(3896), 1, - sym_identifier, - STATE(682), 1, + STATE(1552), 1, + aux_sym_match_arm_repeat1, + STATE(1768), 1, aux_sym_import_declaration_repeat1, - STATE(1934), 1, - sym_field_initializer, - [21665] = 5, + [18563] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3896), 1, - sym_identifier, - ACTIONS(4619), 1, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, sym__newline, + ACTIONS(4185), 1, + sym_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1186), 1, + sym_block, + [18582] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3088), 1, + sym_identifier, + ACTIONS(3090), 1, + anon_sym_LBRACE, + ACTIONS(4187), 1, + anon_sym_else, + ACTIONS(4190), 1, + sym__newline, + STATE(2033), 1, + aux_sym_import_declaration_repeat1, + [18601] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4193), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4195), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [18614] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3069), 1, + sym_identifier, + ACTIONS(3071), 1, + anon_sym_LBRACE, + ACTIONS(4197), 1, + anon_sym_else, + ACTIONS(4200), 1, + sym__newline, + STATE(2034), 1, + aux_sym_import_declaration_repeat1, + [18633] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3051), 1, + sym_identifier, + ACTIONS(3053), 1, + anon_sym_LBRACE, + ACTIONS(4203), 1, + anon_sym_else, + ACTIONS(4206), 1, + sym__newline, + STATE(2035), 1, + aux_sym_import_declaration_repeat1, + [18652] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4209), 1, + sym_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1194), 1, + sym_block, + [18671] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4211), 1, + sym_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1041), 1, + sym_block, + [18690] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4213), 1, + sym_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1195), 1, + sym_block, + [18709] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4215), 1, + sym_identifier, + ACTIONS(4217), 1, + sym__newline, + STATE(1196), 1, + sym_block, + STATE(1625), 1, + aux_sym_import_declaration_repeat1, + [18728] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4219), 1, + sym_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1030), 1, + sym_block, + [18747] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4221), 1, + anon_sym_COMMA, + ACTIONS(4224), 1, + anon_sym_RBRACE, + ACTIONS(4226), 1, + sym__newline, + STATE(1629), 1, + aux_sym_variant_payload_repeat1, + STATE(2045), 1, + aux_sym_import_declaration_repeat1, + [18766] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4229), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4231), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [18779] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4233), 1, + sym_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1193), 1, + sym_block, + [18798] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4235), 1, + sym_identifier, + ACTIONS(4237), 1, + sym__newline, + STATE(1201), 1, + sym_block, + STATE(1637), 1, + aux_sym_import_declaration_repeat1, + [18817] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4239), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4241), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [18830] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4243), 1, + sym_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1023), 1, + sym_block, + [18849] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4245), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4247), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [18862] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4249), 1, + sym_identifier, + ACTIONS(4251), 1, + sym__newline, + STATE(1025), 1, + sym_block, + STATE(1694), 1, + aux_sym_import_declaration_repeat1, + [18881] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4253), 1, + sym_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1044), 1, + sym_block, + [18900] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4255), 1, + sym_identifier, + ACTIONS(4257), 1, + anon_sym_RBRACE, + ACTIONS(4259), 1, + sym__newline, + STATE(1710), 1, + aux_sym_enum_body_repeat1, + STATE(1957), 1, + sym_enum_member, + [18919] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(3991), 1, + sym_identifier, + ACTIONS(4261), 1, + anon_sym_RBRACE, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1976), 1, + sym_keyed_field_initializer, + [18938] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4263), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4265), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [18951] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(3991), 1, + sym_identifier, + ACTIONS(4261), 1, + anon_sym_RBRACE, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1991), 1, + sym_keyed_field_initializer, + [18970] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + sym_identifier, + ACTIONS(4269), 1, + sym__newline, + STATE(1024), 1, + sym_block, + STATE(1685), 1, + aux_sym_import_declaration_repeat1, + [18989] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3991), 1, + sym_identifier, + ACTIONS(4261), 1, + anon_sym_RBRACE, + ACTIONS(4271), 1, + sym__newline, + STATE(1645), 1, + aux_sym_import_declaration_repeat1, + STATE(1991), 1, + sym_keyed_field_initializer, + [19008] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4005), 1, + sym_identifier, + ACTIONS(4273), 1, + anon_sym_RBRACE, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1973), 1, + sym_field_initializer, + [19027] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(3991), 1, + sym_identifier, + ACTIONS(4275), 1, + anon_sym_RBRACE, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1976), 1, + sym_keyed_field_initializer, + [19046] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4277), 1, + sym_identifier, + ACTIONS(4279), 1, + sym__newline, + STATE(1029), 1, + sym_block, + STATE(1611), 1, + aux_sym_import_declaration_repeat1, + [19065] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4281), 1, + sym_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1159), 1, + sym_block, + [19084] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(3991), 1, + sym_identifier, + ACTIONS(4036), 1, + anon_sym_RBRACE, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1991), 1, + sym_keyed_field_initializer, + [19103] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4283), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4285), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [19116] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4287), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4289), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [19129] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4291), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4293), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [19142] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4036), 1, + anon_sym_RBRACE, + ACTIONS(4295), 1, + anon_sym_COMMA, + ACTIONS(4297), 1, + sym__newline, + STATE(1629), 1, + aux_sym_variant_payload_repeat1, + STATE(1742), 1, + aux_sym_import_declaration_repeat1, + [19161] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3647), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(3649), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [19174] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3651), 1, + anon_sym_RBRACE, + ACTIONS(3991), 1, + sym_identifier, + ACTIONS(4299), 1, + sym__newline, + STATE(1648), 1, + aux_sym_import_declaration_repeat1, + STATE(2082), 1, + sym_keyed_field_initializer, + [19193] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3651), 1, + anon_sym_RBRACE, + ACTIONS(4301), 1, + anon_sym_COMMA, + ACTIONS(4303), 1, + sym__newline, + STATE(1629), 1, + aux_sym_variant_payload_repeat1, + STATE(1950), 1, + aux_sym_import_declaration_repeat1, + [19212] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3651), 1, + anon_sym_RBRACE, + ACTIONS(4301), 1, + anon_sym_COMMA, + ACTIONS(4303), 1, + sym__newline, + STATE(1652), 1, + aux_sym_variant_payload_repeat1, + STATE(1950), 1, + aux_sym_import_declaration_repeat1, + [19231] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4305), 1, + anon_sym_COMMA, + ACTIONS(4307), 1, + anon_sym_RBRACE, + ACTIONS(4309), 1, + sym__newline, + STATE(1700), 1, + aux_sym_initializer_list_repeat1, + STATE(1883), 1, + aux_sym_import_declaration_repeat1, + [19250] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4005), 1, + sym_identifier, + ACTIONS(4307), 1, + anon_sym_RBRACE, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1701), 1, + sym_field_initializer, + [19269] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4311), 1, + sym_identifier, + ACTIONS(4313), 1, + sym__newline, + STATE(1166), 1, + sym_block, + STATE(1609), 1, + aux_sym_import_declaration_repeat1, + [19288] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3823), 1, + anon_sym_RPAREN, + ACTIONS(4315), 1, + anon_sym_COMMA, + ACTIONS(4317), 1, + sym__newline, + STATE(1716), 1, + aux_sym_parameter_list_repeat1, + STATE(1895), 1, + aux_sym_import_declaration_repeat1, + [19307] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4005), 1, + sym_identifier, + ACTIONS(4319), 1, + anon_sym_RBRACE, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1958), 1, + sym_field_initializer, + [19326] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4005), 1, + sym_identifier, + ACTIONS(4319), 1, + anon_sym_RBRACE, + ACTIONS(4321), 1, + sym__newline, + STATE(1572), 1, + aux_sym_import_declaration_repeat1, + STATE(1958), 1, + sym_field_initializer, + [19345] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4005), 1, + sym_identifier, + ACTIONS(4319), 1, + anon_sym_RBRACE, + ACTIONS(4323), 1, + sym__newline, + STATE(1574), 1, + aux_sym_import_declaration_repeat1, + STATE(2000), 1, + sym_field_initializer, + [19364] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4325), 1, + anon_sym_COMMA, + ACTIONS(4328), 1, + anon_sym_RBRACE, + ACTIONS(4330), 1, + sym__newline, + STATE(1664), 1, + aux_sym_initializer_list_repeat1, + STATE(1978), 1, + aux_sym_import_declaration_repeat1, + [19383] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4319), 1, + anon_sym_RBRACE, + ACTIONS(4333), 1, + anon_sym_COMMA, + ACTIONS(4335), 1, + sym__newline, + STATE(1664), 1, + aux_sym_initializer_list_repeat1, + STATE(1792), 1, + aux_sym_import_declaration_repeat1, + [19402] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4337), 1, + sym_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1054), 1, + sym_block, + [19421] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4339), 1, + sym_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1060), 1, + sym_block, + [19440] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4341), 1, + sym_identifier, + ACTIONS(4343), 1, + sym__newline, + STATE(1169), 1, + sym_block, + STATE(1612), 1, + aux_sym_import_declaration_repeat1, + [19459] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_RBRACE, + ACTIONS(4345), 1, + anon_sym_COMMA, + ACTIONS(4347), 1, + sym__newline, + STATE(1655), 1, + aux_sym_variant_payload_repeat1, + STATE(1867), 1, + aux_sym_import_declaration_repeat1, + [19478] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4349), 1, + sym_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1064), 1, + sym_block, + [19497] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4351), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4353), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [19510] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4355), 1, + sym_identifier, + ACTIONS(4357), 1, + sym__newline, + STATE(1067), 1, + sym_block, + STATE(1558), 1, + aux_sym_import_declaration_repeat1, + [19529] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4359), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4361), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [19542] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3823), 1, + anon_sym_RPAREN, + ACTIONS(4315), 1, + anon_sym_COMMA, + ACTIONS(4317), 1, + sym__newline, + STATE(1725), 1, + aux_sym_parameter_list_repeat1, + STATE(1895), 1, + aux_sym_import_declaration_repeat1, + [19561] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4363), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4365), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [19574] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4367), 1, + sym_identifier, + ACTIONS(4369), 1, + sym__newline, + STATE(1090), 1, + sym_block, + STATE(1688), 1, + aux_sym_import_declaration_repeat1, + [19593] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4371), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4373), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [19606] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4375), 1, + sym_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1218), 1, + sym_block, + [19625] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4377), 1, + sym_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1221), 1, + sym_block, + [19644] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4379), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4381), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [19657] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4383), 1, + sym_identifier, + ACTIONS(4385), 1, + sym__newline, + STATE(1225), 1, + sym_block, + STATE(1666), 1, + aux_sym_import_declaration_repeat1, + [19676] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4387), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4389), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [19689] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4391), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4393), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [19702] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1873), 1, + anon_sym_RPAREN, + ACTIONS(3577), 1, + anon_sym_COMMA, + ACTIONS(3581), 1, + sym__newline, + STATE(1552), 1, + aux_sym_match_arm_repeat1, + STATE(1752), 1, + aux_sym_import_declaration_repeat1, + [19721] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4395), 1, + sym_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1089), 1, + sym_block, + [19740] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4397), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4399), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [19753] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4401), 1, + sym_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1074), 1, + sym_block, + [19772] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4403), 1, + sym_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1171), 1, + sym_block, + [19791] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4405), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4407), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [19804] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4255), 1, + sym_identifier, + ACTIONS(4409), 1, + anon_sym_RBRACE, + ACTIONS(4411), 1, + sym__newline, + STATE(1638), 1, + aux_sym_enum_body_repeat1, + STATE(1957), 1, + sym_enum_member, + [19823] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4413), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4415), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [19836] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4417), 1, + sym_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1079), 1, + sym_block, + [19855] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4419), 1, + sym_identifier, + ACTIONS(4421), 1, + sym__newline, + STATE(1087), 1, + sym_block, + STATE(1569), 1, + aux_sym_import_declaration_repeat1, + [19874] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4423), 1, + sym_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1065), 1, + sym_block, + [19893] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4425), 1, + sym_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1179), 1, + sym_block, + [19912] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4427), 1, + sym_identifier, + ACTIONS(4429), 1, + sym__newline, + STATE(1182), 1, + sym_block, + STATE(1619), 1, + aux_sym_import_declaration_repeat1, + [19931] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4431), 1, + sym_identifier, + ACTIONS(4433), 1, + sym__newline, + STATE(1188), 1, + sym_block, + STATE(1624), 1, + aux_sym_import_declaration_repeat1, + [19950] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4005), 1, + sym_identifier, + ACTIONS(4435), 1, + anon_sym_RBRACE, + ACTIONS(4437), 1, + sym__newline, + STATE(1661), 1, + aux_sym_import_declaration_repeat1, + STATE(2000), 1, + sym_field_initializer, + [19969] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4439), 1, + sym_identifier, + ACTIONS(4441), 1, + sym__newline, + STATE(1061), 1, + sym_block, + STATE(1647), 1, + aux_sym_import_declaration_repeat1, + [19988] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4435), 1, + anon_sym_RBRACE, + ACTIONS(4443), 1, + anon_sym_COMMA, + ACTIONS(4445), 1, + sym__newline, + STATE(1664), 1, + aux_sym_initializer_list_repeat1, + STATE(1881), 1, + aux_sym_import_declaration_repeat1, + [20007] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4435), 1, + anon_sym_RBRACE, + ACTIONS(4443), 1, + anon_sym_COMMA, + ACTIONS(4445), 1, + sym__newline, + STATE(1665), 1, + aux_sym_initializer_list_repeat1, + STATE(1881), 1, + aux_sym_import_declaration_repeat1, + [20026] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4447), 1, + anon_sym_BANG, + ACTIONS(4449), 1, + sym__newline, + STATE(530), 1, + sym_block, + STATE(1786), 1, + aux_sym_import_declaration_repeat1, + [20045] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4451), 1, + sym_identifier, + ACTIONS(4454), 1, + anon_sym_RBRACE, + ACTIONS(4456), 1, + sym__newline, + STATE(1703), 1, + aux_sym_record_body_repeat1, + STATE(1751), 1, + sym_record_field, + [20064] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4459), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4461), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [20077] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4463), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4465), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [20090] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3991), 1, + sym_identifier, + ACTIONS(4036), 1, + anon_sym_RBRACE, + ACTIONS(4467), 1, + sym__newline, + STATE(1566), 1, + aux_sym_import_declaration_repeat1, + STATE(2082), 1, + sym_keyed_field_initializer, + [20109] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4469), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4471), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [20122] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4005), 1, + sym_identifier, + ACTIONS(4473), 1, + anon_sym_RBRACE, + ACTIONS(4475), 1, + sym__newline, + STATE(1657), 1, + sym_field_initializer, + STATE(1658), 1, + aux_sym_import_declaration_repeat1, + [20141] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4477), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4479), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [20154] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4481), 1, + sym_identifier, + ACTIONS(4484), 1, + anon_sym_RBRACE, + ACTIONS(4486), 1, + sym__newline, + STATE(1710), 1, + aux_sym_enum_body_repeat1, + STATE(1957), 1, + sym_enum_member, + [20173] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4489), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4491), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [20186] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4493), 1, + sym_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1231), 1, + sym_block, + [20205] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4495), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4497), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [20218] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3643), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(3645), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [20231] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4499), 1, + sym_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1021), 1, + sym_block, + [20250] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4501), 1, + anon_sym_RPAREN, + ACTIONS(4503), 1, + anon_sym_COMMA, + ACTIONS(4506), 1, + sym__newline, + STATE(1716), 1, + aux_sym_parameter_list_repeat1, + STATE(2008), 1, + aux_sym_import_declaration_repeat1, + [20269] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3639), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(3641), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [20282] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4509), 2, + ts_builtin_sym_end, + sym__newline, + ACTIONS(4511), 3, + anon_sym_import, + anon_sym_hide, + sym_identifier, + [20295] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4513), 1, + sym_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1012), 1, + sym_block, + [20314] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3819), 1, + anon_sym_RPAREN, + ACTIONS(4515), 1, + anon_sym_COMMA, + ACTIONS(4517), 1, + sym__newline, + STATE(1660), 1, + aux_sym_parameter_list_repeat1, + STATE(1875), 1, + aux_sym_import_declaration_repeat1, + [20333] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4519), 1, + sym_identifier, + ACTIONS(4521), 1, + sym__newline, + STATE(1013), 1, + sym_block, + STATE(1670), 1, + aux_sym_import_declaration_repeat1, + [20352] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4523), 1, + sym_identifier, + ACTIONS(4525), 1, + sym__newline, + STATE(1190), 1, + sym_block, + STATE(1626), 1, + aux_sym_import_declaration_repeat1, + [20371] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4527), 1, + sym_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1191), 1, + sym_block, + [20390] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4044), 1, + sym_identifier, + ACTIONS(4529), 1, + anon_sym_RBRACE, + ACTIONS(4531), 1, + sym__newline, + STATE(1585), 1, + aux_sym_record_body_repeat1, + STATE(1751), 1, + sym_record_field, + [20409] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3839), 1, + anon_sym_RPAREN, + ACTIONS(4533), 1, + anon_sym_COMMA, + ACTIONS(4535), 1, + sym__newline, + STATE(1716), 1, + aux_sym_parameter_list_repeat1, STATE(1887), 1, aux_sym_import_declaration_repeat1, - STATE(1934), 1, - sym_field_initializer, - [21681] = 4, + [20428] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4420), 1, - anon_sym_DASH, - STATE(1995), 1, - sym__type_constant, - ACTIONS(4621), 2, - sym_integer, - sym_character, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4537), 1, + sym_identifier, + ACTIONS(4539), 1, + sym__newline, + STATE(1161), 1, + sym_block, + STATE(1607), 1, + aux_sym_import_declaration_repeat1, + [20447] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1214), 1, + sym_block, + [20463] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4541), 1, + sym__newline, + STATE(1028), 1, + sym_block, + STATE(1823), 1, + aux_sym_import_declaration_repeat1, + [20479] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1117), 1, + sym_block, + [20495] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1045), 1, + sym_block, + [20511] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4091), 1, + anon_sym_LBRACE, + ACTIONS(4543), 1, + sym__newline, + STATE(1713), 1, + sym_record_body, + STATE(1737), 1, + aux_sym_import_declaration_repeat1, + [20527] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1118), 1, + sym_block, + [20543] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3090), 1, + anon_sym_RPAREN, + ACTIONS(4545), 1, + anon_sym_else, + ACTIONS(4548), 1, + sym__newline, + STATE(2086), 1, + aux_sym_import_declaration_repeat1, + [20559] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3071), 1, + anon_sym_RPAREN, + ACTIONS(4551), 1, + anon_sym_else, + ACTIONS(4554), 1, + sym__newline, + STATE(2087), 1, + aux_sym_import_declaration_repeat1, + [20575] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4557), 1, + sym__newline, + STATE(1121), 1, + sym_block, + STATE(1781), 1, + aux_sym_import_declaration_repeat1, + [20591] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3053), 1, + anon_sym_RPAREN, + ACTIONS(4559), 1, + anon_sym_else, + ACTIONS(4562), 1, + sym__newline, + STATE(2088), 1, + aux_sym_import_declaration_repeat1, + [20607] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4091), 1, + anon_sym_LBRACE, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1586), 1, + sym_record_body, + [20623] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1046), 1, + sym_block, + [20639] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3991), 1, + sym_identifier, + ACTIONS(4565), 1, + sym__newline, + STATE(1857), 1, + aux_sym_import_declaration_repeat1, + STATE(2082), 1, + sym_keyed_field_initializer, + [20655] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1123), 1, + sym_block, + [20671] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4567), 1, + sym__newline, + STATE(1124), 1, + sym_block, + STATE(1785), 1, + aux_sym_import_declaration_repeat1, + [20687] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(3993), 1, + anon_sym_RBRACE, + ACTIONS(4569), 1, + anon_sym_COMMA, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [20703] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1125), 1, + sym_block, + [20719] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4571), 1, + sym__newline, + STATE(1115), 1, + sym_block, + STATE(1773), 1, + aux_sym_import_declaration_repeat1, + [20735] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4573), 1, + sym__newline, + STATE(1049), 1, + sym_block, + STATE(1868), 1, + aux_sym_import_declaration_repeat1, + [20751] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1126), 1, + sym_block, + [20767] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4575), 1, + anon_sym_COMMA, + ACTIONS(4577), 1, + anon_sym_RBRACK, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [20783] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1127), 1, + sym_block, + [20799] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4579), 1, + sym__newline, + STATE(1128), 1, + sym_block, + STATE(1791), 1, + aux_sym_import_declaration_repeat1, + [20815] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4581), 1, + sym__newline, + STATE(1050), 1, + sym_block, + STATE(1870), 1, + aux_sym_import_declaration_repeat1, + [20831] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4585), 1, + anon_sym_COMMA, + ACTIONS(4583), 3, + anon_sym_RBRACE, + sym_identifier, + sym__newline, + [20843] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(1879), 1, + anon_sym_RPAREN, + ACTIONS(4587), 1, + anon_sym_COMMA, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [20859] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1129), 1, + sym_block, + [20875] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1131), 1, + sym_block, + [20891] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4589), 1, + sym__newline, + STATE(1132), 1, + sym_block, + STATE(1793), 1, + aux_sym_import_declaration_repeat1, + [20907] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4005), 1, + sym_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1958), 1, + sym_field_initializer, + [20923] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4005), 1, + sym_identifier, + ACTIONS(4591), 1, + sym__newline, + STATE(1862), 1, + aux_sym_import_declaration_repeat1, + STATE(1958), 1, + sym_field_initializer, + [20939] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1133), 1, + sym_block, + [20955] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1164), 1, + sym_block, + [20971] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1134), 1, + sym_block, + [20987] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4575), 1, + anon_sym_COMMA, + ACTIONS(4593), 1, + anon_sym_RBRACK, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [21003] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4595), 1, + sym__newline, + STATE(1242), 1, + sym_block, + STATE(1796), 1, + aux_sym_import_declaration_repeat1, + [21019] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4597), 1, + sym__newline, + STATE(1136), 1, + sym_block, + STATE(1797), 1, + aux_sym_import_declaration_repeat1, + [21035] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4599), 1, + sym__newline, + STATE(1165), 1, + sym_block, + STATE(1727), 1, + aux_sym_import_declaration_repeat1, + [21051] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1051), 1, + sym_block, + [21067] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4601), 1, + sym__newline, + STATE(1052), 1, + sym_block, + STATE(1879), 1, + aux_sym_import_declaration_repeat1, + [21083] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4603), 1, + sym__newline, + STATE(1053), 1, + sym_block, + STATE(1886), 1, + aux_sym_import_declaration_repeat1, + [21099] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(1889), 1, + anon_sym_RBRACK, + ACTIONS(4605), 1, + anon_sym_COMMA, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [21115] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1137), 1, + sym_block, + [21131] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1138), 1, + sym_block, + [21147] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4607), 1, + sym__newline, + STATE(1147), 1, + sym_block, + STATE(1801), 1, + aux_sym_import_declaration_repeat1, + [21163] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4609), 1, + sym__newline, + STATE(1183), 1, + sym_block, + STATE(1852), 1, + aux_sym_import_declaration_repeat1, + [21179] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1148), 1, + sym_block, + [21195] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4611), 1, + sym__newline, + STATE(1149), 1, + sym_block, + STATE(1803), 1, + aux_sym_import_declaration_repeat1, + [21211] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4605), 1, + anon_sym_COMMA, + ACTIONS(4613), 1, + anon_sym_RBRACK, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [21227] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4615), 1, + sym__newline, + STATE(1167), 1, + sym_block, + STATE(1815), 1, + aux_sym_import_declaration_repeat1, + [21243] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1055), 1, + sym_block, + [21259] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4005), 1, + sym_identifier, + ACTIONS(4617), 1, + sym__newline, + STATE(1756), 1, + aux_sym_import_declaration_repeat1, + STATE(2000), 1, + sym_field_initializer, + [21275] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4619), 1, + sym__newline, + STATE(1056), 1, + sym_block, + STATE(1904), 1, + aux_sym_import_declaration_repeat1, + [21291] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4621), 1, + sym__newline, + STATE(1057), 1, + sym_block, + STATE(1907), 1, + aux_sym_import_declaration_repeat1, + [21307] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1150), 1, + sym_block, + [21323] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4623), 1, + sym__newline, + STATE(1151), 1, + sym_block, + STATE(1804), 1, + aux_sym_import_declaration_repeat1, + [21339] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1707), 1, + sym_block, + [21355] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4625), 1, + sym__newline, + STATE(499), 1, + sym_block, + STATE(1932), 1, + aux_sym_import_declaration_repeat1, + [21371] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1152), 1, + sym_block, + [21387] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(467), 1, + sym_block, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [21403] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4091), 1, + anon_sym_LBRACE, + STATE(438), 1, + sym_record_body, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [21419] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4627), 1, + sym__newline, + STATE(1063), 1, + sym_block, + STATE(1912), 1, + aux_sym_import_declaration_repeat1, + [21435] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4105), 1, + anon_sym_LBRACE, + STATE(441), 1, + sym_enum_body, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [21451] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4629), 4, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_COLON, + sym__newline, + [21461] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1153), 1, + sym_block, + [21477] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4007), 1, + anon_sym_RBRACE, + ACTIONS(4631), 1, + anon_sym_COMMA, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [21493] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1154), 1, + sym_block, + [21509] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4633), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_identifier, + sym__newline, + [21519] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4635), 1, + sym__newline, + STATE(1040), 1, + sym_block, + STATE(1848), 1, + aux_sym_import_declaration_repeat1, + [21535] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1155), 1, + sym_block, + [21551] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1157), 1, + sym_block, + [21567] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4637), 1, + sym__newline, + STATE(1162), 1, + sym_block, + STATE(1809), 1, + aux_sym_import_declaration_repeat1, + [21583] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4575), 1, + anon_sym_COMMA, + ACTIONS(4639), 1, + anon_sym_RBRACK, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [21599] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4605), 1, + anon_sym_COMMA, + ACTIONS(4641), 1, + anon_sym_RBRACK, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [21615] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1168), 1, + sym_block, + [21631] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4643), 1, + sym__newline, + STATE(1210), 1, + sym_block, + STATE(1877), 1, + aux_sym_import_declaration_repeat1, + [21647] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1172), 1, + sym_block, + [21663] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1173), 1, + sym_block, + [21679] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4645), 1, + sym__newline, + STATE(1174), 1, + sym_block, + STATE(1812), 1, + aux_sym_import_declaration_repeat1, [21695] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(237), 1, sym__newline, - STATE(682), 1, + STATE(690), 1, aux_sym_import_declaration_repeat1, - STATE(1037), 1, + STATE(1033), 1, sym_block, [21711] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(4623), 1, + ACTIONS(4647), 1, sym__newline, - STATE(1052), 1, + STATE(1170), 1, sym_block, - STATE(1873), 1, + STATE(1820), 1, aux_sym_import_declaration_repeat1, [21727] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4160), 1, + ACTIONS(25), 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, + ACTIONS(237), 1, 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, + STATE(690), 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, + STATE(1584), 1, sym_block, - [21803] = 3, + [21743] = 5, 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, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(4633), 1, + ACTIONS(237), 1, sym__newline, - STATE(423), 1, - sym_enum_body, - STATE(1755), 1, + STATE(690), 1, aux_sym_import_declaration_repeat1, - [21831] = 2, + STATE(1175), 1, + sym_block, + [21759] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4635), 4, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4605), 1, 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, + anon_sym_RBRACK, + STATE(690), 1, aux_sym_import_declaration_repeat1, - [21983] = 5, + [21775] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(237), 1, sym__newline, - STATE(682), 1, + STATE(690), 1, aux_sym_import_declaration_repeat1, - STATE(1098), 1, + STATE(1068), 1, sym_block, - [21999] = 5, + [21791] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1177), 1, + sym_block, + [21807] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, anon_sym_LBRACE, ACTIONS(4651), 1, sym__newline, - STATE(1129), 1, + STATE(1069), 1, sym_block, - STATE(1754), 1, + STATE(1931), 1, aux_sym_import_declaration_repeat1, - [22015] = 5, + [21823] = 4, 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(1224), 1, - sym_block, - [22031] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, ACTIONS(4653), 1, - sym__newline, - STATE(1099), 1, - sym_block, - STATE(1767), 1, - aux_sym_import_declaration_repeat1, - [22047] = 5, + anon_sym_DASH, + STATE(2039), 1, + sym__type_constant, + ACTIONS(4655), 2, + sym_integer, + sym_character, + [21837] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(237), 1, sym__newline, - STATE(682), 1, + STATE(690), 1, aux_sym_import_declaration_repeat1, - STATE(1227), 1, + STATE(1220), 1, sym_block, - [22063] = 5, + [21853] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(4655), 1, + ACTIONS(4657), 1, sym__newline, - STATE(1228), 1, + STATE(1223), 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, + [21869] = 4, 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, + anon_sym_DQUOTE, ACTIONS(4663), 1, - sym__newline, - STATE(1157), 1, - sym_block, - STATE(1915), 1, - aux_sym_import_declaration_repeat1, - [22159] = 3, + sym_comment, + STATE(1853), 1, + aux_sym_string_repeat1, + ACTIONS(4661), 2, + sym_string_content, + sym_escape_sequence, + [21883] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3689), 2, - ts_builtin_sym_end, + ACTIONS(237), 1, sym__newline, - ACTIONS(3691), 2, - anon_sym_import, - sym_identifier, - [22171] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4665), 1, - sym__newline, - STATE(1010), 1, - sym_block, - STATE(1825), 1, - aux_sym_import_declaration_repeat1, - [22187] = 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(1012), 1, - sym_block, - [22203] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4667), 1, - sym__newline, - STATE(1013), 1, - sym_block, - STATE(1691), 1, - aux_sym_import_declaration_repeat1, - [22219] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(1851), 1, - anon_sym_RPAREN, - ACTIONS(4669), 1, + ACTIONS(4575), 1, anon_sym_COMMA, - STATE(682), 1, + ACTIONS(4665), 1, + anon_sym_RBRACK, + STATE(690), 1, aux_sym_import_declaration_repeat1, - [22235] = 5, + [21899] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4605), 1, + anon_sym_COMMA, + ACTIONS(4667), 1, + anon_sym_RBRACK, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [21915] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1229), 1, + sym_block, + [21931] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4669), 1, + sym__newline, + STATE(1235), 1, + sym_block, + STATE(1947), 1, + aux_sym_import_declaration_repeat1, + [21947] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, anon_sym_LBRACE, ACTIONS(4671), 1, sym__newline, - STATE(1047), 1, + STATE(1238), 1, sym_block, - STATE(1805), 1, + STATE(1956), 1, aux_sym_import_declaration_repeat1, - [22251] = 5, + [21963] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(237), 1, sym__newline, - STATE(497), 1, - sym_block, - STATE(682), 1, + STATE(690), 1, aux_sym_import_declaration_repeat1, - [22267] = 5, + STATE(1070), 1, + sym_block, + [21979] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, + ACTIONS(25), 1, anon_sym_LBRACE, ACTIONS(4673), 1, sym__newline, - STATE(498), 1, + STATE(1181), 1, sym_block, - STATE(1663), 1, + STATE(1920), 1, aux_sym_import_declaration_repeat1, - [22283] = 3, + [21995] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4675), 2, - ts_builtin_sym_end, + ACTIONS(237), 1, sym__newline, - ACTIONS(4677), 2, - anon_sym_import, - sym_identifier, - [22295] = 5, + ACTIONS(4575), 1, + anon_sym_COMMA, + ACTIONS(4675), 1, + anon_sym_RBRACK, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [22011] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1072), 1, + sym_block, + [22027] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4677), 1, + sym__newline, + STATE(1073), 1, + sym_block, + STATE(1938), 1, + aux_sym_import_declaration_repeat1, + [22043] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1189), 1, + sym_block, + [22059] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, anon_sym_LBRACE, ACTIONS(4679), 1, sym__newline, - STATE(1017), 1, + STATE(1192), 1, sym_block, - STATE(1839), 1, + STATE(1806), 1, aux_sym_import_declaration_repeat1, - [22311] = 5, + [22075] = 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, - [22353] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, + ACTIONS(3062), 1, + anon_sym_RPAREN, + ACTIONS(4681), 1, + anon_sym_else, ACTIONS(4683), 1, sym__newline, - STATE(1044), 1, - sym_block, - STATE(1773), 1, + STATE(2063), 1, aux_sym_import_declaration_repeat1, - [22369] = 5, + [22091] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, + ACTIONS(237), 1, + sym__newline, + ACTIONS(1885), 1, + anon_sym_RBRACK, + ACTIONS(4686), 1, + anon_sym_COMMA, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [22107] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3104), 1, + anon_sym_RPAREN, + ACTIONS(4688), 1, + anon_sym_else, + ACTIONS(4690), 1, + sym__newline, + STATE(2072), 1, + aux_sym_import_declaration_repeat1, + [22123] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(3575), 1, + anon_sym_RPAREN, + ACTIONS(4693), 1, + anon_sym_COMMA, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [22139] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3081), 1, + anon_sym_RPAREN, + ACTIONS(4695), 1, + anon_sym_else, + ACTIONS(4697), 1, + sym__newline, + STATE(2078), 1, + aux_sym_import_declaration_repeat1, + [22155] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(4700), 1, sym__newline, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - STATE(1130), 1, + STATE(1032), 1, sym_block, - [22385] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4001), 1, - anon_sym_LBRACE, - STATE(404), 1, - sym_enum_body, - STATE(682), 1, + STATE(1826), 1, aux_sym_import_declaration_repeat1, - [22401] = 3, + [22171] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4685), 2, - ts_builtin_sym_end, + ACTIONS(4704), 1, sym__newline, - ACTIONS(4687), 2, - anon_sym_import, + STATE(1945), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4702), 2, + sym_sink, sym_identifier, - [22413] = 5, + [22185] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(89), 1, - anon_sym_DQUOTE, - ACTIONS(227), 1, + ACTIONS(237), 1, sym__newline, - STATE(682), 1, + ACTIONS(4605), 1, + anon_sym_COMMA, + ACTIONS(4706), 1, + anon_sym_RBRACK, + STATE(690), 1, aux_sym_import_declaration_repeat1, - STATE(1863), 1, - sym_string, - [22429] = 5, + [22201] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, sym__newline, - STATE(682), 1, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1640), 1, + sym_string, + [22217] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3090), 1, + anon_sym_RPAREN, + ACTIONS(4708), 1, + anon_sym_else, + ACTIONS(4710), 1, + sym__newline, + STATE(1960), 1, + aux_sym_import_declaration_repeat1, + [22233] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3071), 1, + anon_sym_RPAREN, + ACTIONS(4713), 1, + anon_sym_else, + ACTIONS(4715), 1, + sym__newline, + STATE(1962), 1, + aux_sym_import_declaration_repeat1, + [22249] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1077), 1, + sym_block, + [22265] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4718), 1, + sym__newline, + STATE(1078), 1, + sym_block, + STATE(1953), 1, + aux_sym_import_declaration_repeat1, + [22281] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4720), 1, + sym__newline, + STATE(1015), 1, + sym_block, + STATE(1811), 1, + aux_sym_import_declaration_repeat1, + [22297] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4575), 1, + anon_sym_COMMA, + ACTIONS(4722), 1, + anon_sym_RBRACK, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [22313] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4724), 1, + sym__newline, + STATE(1197), 1, + sym_block, + STATE(1884), 1, + aux_sym_import_declaration_repeat1, + [22329] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3053), 1, + anon_sym_RPAREN, + ACTIONS(4726), 1, + anon_sym_else, + ACTIONS(4728), 1, + sym__newline, + STATE(1968), 1, + aux_sym_import_declaration_repeat1, + [22345] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4653), 1, + anon_sym_DASH, + STATE(2018), 1, + sym__type_constant, + ACTIONS(4731), 2, + sym_integer, + sym_character, + [22359] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, aux_sym_import_declaration_repeat1, STATE(1080), 1, sym_block, - [22445] = 5, + [22375] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(4689), 1, + ACTIONS(237), 1, sym__newline, - STATE(1081), 1, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1071), 1, sym_block, - STATE(1680), 1, - aux_sym_import_declaration_repeat1, - [22461] = 5, + [22391] = 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, - 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(4709), 1, - sym__newline, - STATE(489), 1, - sym_block, - STATE(1738), 1, - aux_sym_import_declaration_repeat1, - [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(227), 1, - sym__newline, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - STATE(1131), 1, - sym_block, - [22679] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3049), 1, - anon_sym_RPAREN, - ACTIONS(4719), 1, - anon_sym_else, - ACTIONS(4722), 1, - sym__newline, - STATE(2042), 1, - aux_sym_import_declaration_repeat1, - [22695] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - 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, + ACTIONS(25), 1, anon_sym_LBRACE, ACTIONS(4733), 1, sym__newline, - STATE(1022), 1, + STATE(1081), 1, sym_block, - STATE(1803), 1, + STATE(1729), 1, aux_sym_import_declaration_repeat1, - [22807] = 5, + [22407] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(237), 1, sym__newline, - STATE(682), 1, + ACTIONS(4091), 1, + anon_sym_LBRACE, + STATE(470), 1, + sym_record_body, + STATE(690), 1, aux_sym_import_declaration_repeat1, - STATE(1132), 1, - sym_block, - [22823] = 5, + [22423] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, + ACTIONS(25), 1, anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1187), 1, + sym_block, + [22439] = 4, + ACTIONS(4663), 1, + sym_comment, ACTIONS(4735), 1, - sym__newline, - STATE(1133), 1, - sym_block, - STATE(1720), 1, - aux_sym_import_declaration_repeat1, - [22839] = 5, + anon_sym_DQUOTE, + STATE(1865), 1, + aux_sym_string_repeat1, + ACTIONS(4737), 2, + sym_string_content, + sym_escape_sequence, + [22453] = 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(1234), 1, - sym_block, - STATE(1893), 1, - aux_sym_import_declaration_repeat1, - [22871] = 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(1082), 1, - sym_block, - [22887] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, + ACTIONS(25), 1, anon_sym_LBRACE, ACTIONS(4739), 1, sym__newline, - STATE(1055), 1, + STATE(1082), 1, sym_block, - STATE(1907), 1, + STATE(1732), 1, aux_sym_import_declaration_repeat1, - [22903] = 5, + [22469] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4396), 1, - anon_sym_COMMA, - ACTIONS(4741), 1, - anon_sym_RBRACK, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [22919] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(237), 1, sym__newline, - STATE(682), 1, + STATE(690), 1, aux_sym_import_declaration_repeat1, - STATE(1027), 1, + STATE(1059), 1, sym_block, - [22935] = 5, + [22485] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1176), 1, + sym_block, + [22501] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(3991), 1, + sym_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1991), 1, + sym_keyed_field_initializer, + [22517] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3991), 1, + sym_identifier, + ACTIONS(4741), 1, + sym__newline, + STATE(1942), 1, + aux_sym_import_declaration_repeat1, + STATE(1991), 1, + sym_keyed_field_initializer, + [22533] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, anon_sym_LBRACE, ACTIONS(4743), 1, sym__newline, - STATE(1028), 1, + STATE(1204), 1, sym_block, - STATE(1717), 1, + STATE(1849), 1, aux_sym_import_declaration_repeat1, - [22951] = 5, + [22549] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(237), 1, sym__newline, - STATE(682), 1, + STATE(690), 1, aux_sym_import_declaration_repeat1, STATE(1083), 1, sym_block, - [22967] = 5, + [22565] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, + ACTIONS(25), 1, anon_sym_LBRACE, ACTIONS(4745), 1, sym__newline, - STATE(1089), 1, + STATE(1026), 1, sym_block, - STATE(1709), 1, + STATE(1874), 1, aux_sym_import_declaration_repeat1, - [22983] = 5, + [22581] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(89), 1, - anon_sym_DQUOTE, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4005), 1, + sym_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1973), 1, + sym_field_initializer, + [22597] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, ACTIONS(4747), 1, sym__newline, - STATE(1871), 1, - sym_string, - STATE(1872), 1, + STATE(1088), 1, + sym_block, + STATE(1740), 1, aux_sym_import_declaration_repeat1, - [22999] = 5, + [22613] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, + ACTIONS(25), 1, anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1596), 1, + sym_block, + [22629] = 4, + ACTIONS(4663), 1, + sym_comment, ACTIONS(4749), 1, - sym__newline, - STATE(1084), 1, - sym_block, - STATE(1689), 1, - aux_sym_import_declaration_repeat1, - [23015] = 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(1031), 1, - sym_block, - [23031] = 4, - ACTIONS(4576), 1, - sym_comment, - ACTIONS(4751), 1, anon_sym_DQUOTE, - STATE(1793), 1, + STATE(1865), 1, aux_sym_string_repeat1, - ACTIONS(4753), 2, + ACTIONS(4751), 2, sym_string_content, sym_escape_sequence, - [23045] = 5, + [22643] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4438), 1, - anon_sym_COMMA, - ACTIONS(4755), 1, - anon_sym_RPAREN, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [23061] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(4757), 1, + ACTIONS(4754), 1, sym__newline, - STATE(1085), 1, + STATE(1184), 1, sym_block, - STATE(1693), 1, + STATE(1828), 1, aux_sym_import_declaration_repeat1, - [23077] = 5, + [22659] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(237), 1, sym__newline, - STATE(682), 1, + ACTIONS(3651), 1, + anon_sym_RBRACE, + ACTIONS(4756), 1, + anon_sym_COMMA, + STATE(690), 1, aux_sym_import_declaration_repeat1, - STATE(1034), 1, + [22675] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1091), 1, sym_block, - [23093] = 5, + [22691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(23), 1, - anon_sym_LBRACE, - ACTIONS(4759), 1, + ACTIONS(4758), 1, + anon_sym_EQ, + ACTIONS(4760), 3, + anon_sym_COMMA, + anon_sym_RBRACE, sym__newline, - STATE(1039), 1, + [22703] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1093), 1, sym_block, - STATE(1707), 1, - aux_sym_import_declaration_repeat1, - [23109] = 4, + [22719] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4761), 1, - anon_sym_COMMA, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [23122] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4763), 1, - anon_sym_RPAREN, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [23135] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4765), 1, - anon_sym_else, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [23148] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4767), 1, - anon_sym_RBRACK, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [23161] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4769), 1, - anon_sym_else, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [23174] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4771), 1, - anon_sym_RPAREN, - ACTIONS(4773), 1, - sym__newline, - STATE(1918), 1, - aux_sym_import_declaration_repeat1, - [23187] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4775), 1, - anon_sym_RPAREN, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [23200] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4775), 1, - anon_sym_RPAREN, - ACTIONS(4777), 1, - sym__newline, - STATE(1970), 1, - aux_sym_import_declaration_repeat1, - [23213] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4779), 1, - anon_sym_RBRACK, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [23226] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4781), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - sym__newline, - [23235] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4783), 1, - anon_sym_RPAREN, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [23248] = 4, - ACTIONS(3), 1, - sym_comment, - 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_else, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [23274] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4789), 1, - anon_sym_RPAREN, - ACTIONS(4791), 1, - sym__newline, - STATE(1975), 1, - aux_sym_import_declaration_repeat1, - [23287] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4793), 1, - anon_sym_else, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [23300] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4795), 1, - anon_sym_else, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [23313] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4797), 1, - anon_sym_else, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [23326] = 2, - ACTIONS(3), 1, - sym_comment, - 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_else, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [23348] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4803), 1, - anon_sym_RPAREN, - ACTIONS(4805), 1, - sym__newline, - STATE(1923), 1, - aux_sym_import_declaration_repeat1, - [23361] = 4, - ACTIONS(3), 1, - sym_comment, - 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__newline, - [23383] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4811), 1, - anon_sym_PIPE, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [23396] = 4, - ACTIONS(3), 1, - sym_comment, - 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(682), 1, - aux_sym_import_declaration_repeat1, - [23444] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4821), 1, - anon_sym_RPAREN, - ACTIONS(4823), 1, - sym__newline, - 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(682), 1, - aux_sym_import_declaration_repeat1, - [23470] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - 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(227), 1, - sym__newline, - ACTIONS(4835), 1, - anon_sym_else, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [23540] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4837), 1, - anon_sym_RBRACK, - 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(227), 1, - sym__newline, - ACTIONS(4843), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - STATE(682), 1, + ACTIONS(4762), 1, + sym__newline, + STATE(1224), 1, + sym_block, + STATE(1855), 1, aux_sym_import_declaration_repeat1, - [23588] = 2, + [22735] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4845), 3, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4764), 1, + sym__newline, + STATE(1094), 1, + sym_block, + STATE(1743), 1, + aux_sym_import_declaration_repeat1, + [22751] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1705), 1, + sym_string, + [22767] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1092), 1, + sym_block, + [22783] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(3823), 1, anon_sym_RPAREN, + ACTIONS(4766), 1, anon_sym_COMMA, - sym__newline, - [23597] = 2, - ACTIONS(3), 1, - sym_comment, - 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, + STATE(690), 1, aux_sym_import_declaration_repeat1, - [23619] = 4, + [22799] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4768), 1, sym__newline, - ACTIONS(4851), 1, - anon_sym_RPAREN, - STATE(682), 1, + STATE(515), 1, + sym_block, + STATE(1936), 1, aux_sym_import_declaration_repeat1, - [23632] = 4, + [22815] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, sym__newline, - ACTIONS(4853), 1, - anon_sym_else, - STATE(682), 1, + STATE(690), 1, aux_sym_import_declaration_repeat1, - [23645] = 2, + STATE(1209), 1, + sym_block, + [22831] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4181), 3, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(4772), 1, sym__newline, - [23654] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4855), 1, - anon_sym_else, - STATE(682), 1, + STATE(1914), 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(227), 1, - sym__newline, - ACTIONS(4883), 1, - anon_sym_RPAREN, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [23823] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4885), 1, - anon_sym_RPAREN, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [23836] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4885), 1, - anon_sym_RPAREN, - ACTIONS(4887), 1, - sym__newline, - STATE(2040), 1, - aux_sym_import_declaration_repeat1, - [23849] = 4, - ACTIONS(3), 1, - sym_comment, - 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(682), 1, - aux_sym_import_declaration_repeat1, - [23875] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4895), 1, - anon_sym_else, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [23888] = 4, - ACTIONS(3), 1, - sym_comment, - 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(682), 1, - aux_sym_import_declaration_repeat1, - [23914] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - 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_else, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [23940] = 4, - ACTIONS(3), 1, - sym_comment, - 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_else, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [23966] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4909), 1, - anon_sym_else, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [23979] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4911), 1, - anon_sym_else, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [23992] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4913), 1, - anon_sym_else, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [24005] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - 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_PIPE, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [24031] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4919), 1, - anon_sym_else, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [24044] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4923), 1, - anon_sym_AT, - ACTIONS(4921), 2, + ACTIONS(4770), 2, sym_sink, sym_identifier, - [24055] = 4, + [22845] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4925), 1, - anon_sym_RBRACK, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [24068] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4927), 1, - anon_sym_else, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [24081] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4929), 1, - anon_sym_RBRACK, - ACTIONS(4931), 1, - sym__newline, - STATE(1940), 1, - aux_sym_import_declaration_repeat1, - [24094] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4933), 1, + ACTIONS(25), 1, anon_sym_LBRACE, - STATE(682), 1, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, aux_sym_import_declaration_repeat1, - [24107] = 4, + STATE(1098), 1, + sym_block, + [22861] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4935), 1, - anon_sym_RBRACK, - ACTIONS(4937), 1, + ACTIONS(237), 1, sym__newline, - STATE(2008), 1, + ACTIONS(4091), 1, + anon_sym_LBRACE, + STATE(439), 1, + sym_record_body, + STATE(690), 1, aux_sym_import_declaration_repeat1, - [24120] = 4, + [22877] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(237), 1, sym__newline, - ACTIONS(4939), 1, - anon_sym_RBRACK, - STATE(682), 1, + ACTIONS(4319), 1, + anon_sym_RBRACE, + ACTIONS(4774), 1, + anon_sym_COMMA, + STATE(690), 1, aux_sym_import_declaration_repeat1, - [24133] = 4, + [22893] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(237), 1, sym__newline, - ACTIONS(3649), 1, + ACTIONS(4105), 1, + anon_sym_LBRACE, + STATE(442), 1, + sym_enum_body, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [22909] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4435), 1, + anon_sym_RBRACE, + ACTIONS(4776), 1, + anon_sym_COMMA, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [22925] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1042), 1, + sym_block, + [22941] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4778), 1, + sym__newline, + STATE(1211), 1, + sym_block, + STATE(1730), 1, + aux_sym_import_declaration_repeat1, + [22957] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1099), 1, + sym_block, + [22973] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(3813), 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(682), 1, - aux_sym_import_declaration_repeat1, - [24159] = 4, - ACTIONS(3), 1, - sym_comment, - 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, + ACTIONS(4780), 1, anon_sym_COMMA, - STATE(682), 1, + STATE(690), 1, aux_sym_import_declaration_repeat1, - [24185] = 4, + [22989] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4782), 1, sym__newline, - ACTIONS(3657), 1, - anon_sym_RBRACE, - STATE(682), 1, + STATE(1100), 1, + sym_block, + STATE(1746), 1, aux_sym_import_declaration_repeat1, - [24198] = 2, + [23005] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4945), 3, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1605), 1, + sym_block, + [23021] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4784), 1, + sym__newline, + STATE(1101), 1, + sym_block, + STATE(1748), 1, + aux_sym_import_declaration_repeat1, + [23037] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4786), 1, + sym__newline, + STATE(1216), 1, + sym_block, + STATE(1738), 1, + aux_sym_import_declaration_repeat1, + [23053] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1560), 1, + sym_block, + [23069] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(472), 1, + sym_block, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [23085] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + ACTIONS(4788), 1, + anon_sym_LBRACE, + STATE(509), 1, + sym_initializer_list, + STATE(2110), 1, + sym_argument_list, + [23101] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(3839), 1, + anon_sym_RPAREN, + ACTIONS(4790), 1, + anon_sym_COMMA, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [23117] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4792), 1, + sym__newline, + STATE(1062), 1, + sym_block, + STATE(1759), 1, + aux_sym_import_declaration_repeat1, + [23133] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4794), 1, + sym__newline, + STATE(1219), 1, + sym_block, + STATE(1765), 1, + aux_sym_import_declaration_repeat1, + [23149] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4653), 1, + anon_sym_DASH, + STATE(1974), 1, + sym__type_constant, + ACTIONS(4796), 2, + sym_integer, + sym_character, + [23163] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4653), 1, + anon_sym_DASH, + STATE(2016), 1, + sym__type_constant, + ACTIONS(4798), 2, + sym_integer, + sym_character, + [23177] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(1857), 1, + anon_sym_RPAREN, + ACTIONS(4800), 1, + anon_sym_COMMA, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [23193] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4802), 1, + sym__newline, + STATE(1043), 1, + sym_block, + STATE(1860), 1, + aux_sym_import_declaration_repeat1, + [23209] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4804), 4, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_COLON, + sym__newline, + [23219] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(1873), 1, + anon_sym_RPAREN, + ACTIONS(4693), 1, + anon_sym_COMMA, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [23235] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1102), 1, + sym_block, + [23251] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1226), 1, + sym_block, + [23267] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4806), 1, + sym__newline, + STATE(1230), 1, + sym_block, + STATE(1777), 1, + aux_sym_import_declaration_repeat1, + [23283] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1103), 1, + sym_block, + [23299] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1588), 1, + sym_block, + [23315] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4808), 1, + sym__newline, + STATE(1104), 1, + sym_block, + STATE(1753), 1, + aux_sym_import_declaration_repeat1, + [23331] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4810), 1, + sym__newline, + STATE(1105), 1, + sym_block, + STATE(1754), 1, + aux_sym_import_declaration_repeat1, + [23347] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4812), 1, + sym__newline, + STATE(1011), 1, + sym_block, + STATE(1856), 1, + aux_sym_import_declaration_repeat1, + [23363] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1106), 1, + sym_block, + [23379] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4814), 2, + sym_sink, + sym_identifier, + [23393] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4816), 2, + sym_sink, + sym_identifier, + [23407] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(4818), 1, + sym__newline, + STATE(1621), 1, + sym_string, + STATE(1838), 1, + aux_sym_import_declaration_repeat1, + [23423] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4820), 1, + sym__newline, + STATE(1107), 1, + sym_block, + STATE(1758), 1, + aux_sym_import_declaration_repeat1, + [23439] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(463), 1, + sym_block, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [23455] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4822), 1, + sym__newline, + STATE(1108), 1, + sym_block, + STATE(1760), 1, + aux_sym_import_declaration_repeat1, + [23471] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3062), 1, + anon_sym_RPAREN, + ACTIONS(4824), 1, + anon_sym_else, + ACTIONS(4827), 1, + sym__newline, + STATE(2083), 1, + aux_sym_import_declaration_repeat1, + [23487] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1027), 1, + sym_block, + [23503] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4830), 1, + sym__newline, + STATE(1038), 1, + sym_block, + STATE(1841), 1, + aux_sym_import_declaration_repeat1, + [23519] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4832), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_identifier, + sym__newline, + [23529] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4653), 1, + anon_sym_DASH, + STATE(2041), 1, + sym__type_constant, + ACTIONS(4834), 2, + sym_integer, + sym_character, + [23543] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1649), 1, + sym_block, + [23559] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4653), 1, + anon_sym_DASH, + STATE(2046), 1, + sym__type_constant, + ACTIONS(4836), 2, + sym_integer, + sym_character, + [23573] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4653), 1, + anon_sym_DASH, + STATE(2049), 1, + sym__type_constant, + ACTIONS(4838), 2, + sym_integer, + sym_character, + [23587] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4653), 1, + anon_sym_DASH, + STATE(2068), 1, + sym__type_constant, + ACTIONS(4840), 2, + sym_integer, + sym_character, + [23601] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4653), 1, + anon_sym_DASH, + STATE(2069), 1, + sym__type_constant, + ACTIONS(4842), 2, + sym_integer, + sym_character, + [23615] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4091), 1, + anon_sym_LBRACE, + ACTIONS(4844), 1, + sym__newline, + STATE(453), 1, + sym_record_body, + STATE(1787), 1, + aux_sym_import_declaration_repeat1, + [23631] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4105), 1, + anon_sym_LBRACE, + ACTIONS(4846), 1, + sym__newline, + STATE(458), 1, + sym_enum_body, + STATE(1789), 1, + aux_sym_import_declaration_repeat1, + [23647] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1110), 1, + sym_block, + [23663] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(498), 1, + sym_block, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [23679] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4848), 1, + sym__newline, + STATE(480), 1, + sym_block, + STATE(1893), 1, + aux_sym_import_declaration_repeat1, + [23695] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4850), 1, + sym__newline, + STATE(1111), 1, + sym_block, + STATE(1769), 1, + aux_sym_import_declaration_repeat1, + [23711] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4852), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_identifier, + sym__newline, + [23721] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(494), 1, + sym_block, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [23737] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(4854), 1, + sym__newline, + STATE(1564), 1, + sym_string, + STATE(1873), 1, + aux_sym_import_declaration_repeat1, + [23753] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1112), 1, + sym_block, + [23769] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1564), 1, + sym_string, + [23785] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(4856), 1, + sym__newline, + STATE(1113), 1, + sym_block, + STATE(1770), 1, + aux_sym_import_declaration_repeat1, + [23801] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4653), 1, + anon_sym_DASH, + STATE(2014), 1, + sym__type_constant, + ACTIONS(4858), 2, + sym_integer, + sym_character, + [23815] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(3991), 1, + sym_identifier, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1976), 1, + sym_keyed_field_initializer, + [23831] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4587), 1, + anon_sym_COMMA, + ACTIONS(4860), 1, + anon_sym_RPAREN, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [23847] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3952), 4, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_COLON, + sym__newline, + [23857] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4862), 2, + sym_sink, + sym_identifier, + [23871] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4864), 1, + sym__newline, + STATE(1913), 1, + aux_sym_import_declaration_repeat1, + ACTIONS(4862), 2, + sym_sink, + sym_identifier, + [23885] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1135), 1, + sym_block, + [23901] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1673), 1, + sym_block, + [23917] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4605), 1, + anon_sym_COMMA, + ACTIONS(4866), 1, + anon_sym_RBRACK, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [23933] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4036), 1, + anon_sym_RBRACE, + ACTIONS(4868), 1, + anon_sym_COMMA, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [23949] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3104), 1, + anon_sym_RPAREN, + ACTIONS(4870), 1, + anon_sym_else, + ACTIONS(4873), 1, + sym__newline, + STATE(2084), 1, + aux_sym_import_declaration_repeat1, + [23965] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4091), 1, + anon_sym_LBRACE, + ACTIONS(4876), 1, + sym__newline, + STATE(468), 1, + sym_record_body, + STATE(1851), 1, + aux_sym_import_declaration_repeat1, + [23981] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1114), 1, + sym_block, + [23997] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3081), 1, + anon_sym_RPAREN, + ACTIONS(4878), 1, + anon_sym_else, + ACTIONS(4881), 1, + sym__newline, + STATE(2085), 1, + aux_sym_import_declaration_repeat1, + [24013] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(91), 1, + anon_sym_DQUOTE, + ACTIONS(4884), 1, + sym__newline, + STATE(1709), 1, + sym_string, + STATE(1939), 1, + aux_sym_import_declaration_repeat1, + [24029] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(237), 1, + sym__newline, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + STATE(1014), 1, + sym_block, + [24045] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4888), 1, + anon_sym_COMMA, + ACTIONS(4886), 3, + anon_sym_RBRACE, + sym_identifier, + sym__newline, + [24057] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4890), 3, anon_sym_COMMA, anon_sym_RBRACE, sym__newline, - [24207] = 2, + [24066] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3907), 3, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4892), 1, + anon_sym_RPAREN, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24079] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4894), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24092] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4896), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24105] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4898), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24118] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(1869), 1, + anon_sym_RBRACK, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24131] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4900), 1, + anon_sym_PIPE, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24144] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4902), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24157] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4904), 1, + anon_sym_RBRACK, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24170] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4906), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24183] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4908), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24196] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4910), 1, + anon_sym_RPAREN, + ACTIONS(4912), 1, + sym__newline, + STATE(1979), 1, + aux_sym_import_declaration_repeat1, + [24209] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4914), 1, + anon_sym_LBRACE, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24222] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4916), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24235] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4918), 1, + anon_sym_RBRACK, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24248] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4920), 3, anon_sym_COMMA, anon_sym_RBRACE, sym__newline, - [24216] = 4, + [24257] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(4922), 1, + anon_sym_RBRACK, + ACTIONS(4924), 1, sym__newline, - ACTIONS(4947), 1, + STATE(2017), 1, + aux_sym_import_declaration_repeat1, + [24270] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4926), 1, anon_sym_else, - STATE(682), 1, + STATE(690), 1, aux_sym_import_declaration_repeat1, - [24229] = 4, + [24283] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4949), 1, - anon_sym_RBRACK, - ACTIONS(4951), 1, - sym__newline, - STATE(2023), 1, - aux_sym_import_declaration_repeat1, - [24242] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4953), 1, - anon_sym_RBRACK, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [24255] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4955), 1, - anon_sym_RBRACK, - ACTIONS(4957), 1, - sym__newline, - STATE(2024), 1, - aux_sym_import_declaration_repeat1, - [24268] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(4959), 1, - anon_sym_RBRACK, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [24281] = 4, - ACTIONS(3), 1, - sym_comment, - 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_else, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [24307] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4057), 3, + ACTIONS(4928), 3, anon_sym_COMMA, anon_sym_RBRACE, sym__newline, - [24316] = 4, + [24292] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(4892), 1, + anon_sym_RPAREN, + ACTIONS(4930), 1, sym__newline, - ACTIONS(4965), 1, - anon_sym_else, - STATE(682), 1, + STATE(2012), 1, aux_sym_import_declaration_repeat1, - [24329] = 4, + [24305] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(237), 1, sym__newline, - ACTIONS(4967), 1, - anon_sym_else, - STATE(682), 1, + ACTIONS(4932), 1, + anon_sym_COMMA, + STATE(690), 1, aux_sym_import_declaration_repeat1, - [24342] = 4, + [24318] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(237), 1, sym__newline, - ACTIONS(4969), 1, - anon_sym_else, - STATE(682), 1, + ACTIONS(4934), 1, + anon_sym_RPAREN, + STATE(690), 1, aux_sym_import_declaration_repeat1, + [24331] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4936), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24344] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4940), 1, + anon_sym_AT, + ACTIONS(4938), 2, + sym_sink, + sym_identifier, [24355] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(237), 1, sym__newline, - ACTIONS(4971), 1, + ACTIONS(4942), 1, anon_sym_else, - STATE(682), 1, + STATE(690), 1, aux_sym_import_declaration_repeat1, [24368] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(237), 1, sym__newline, - ACTIONS(4973), 1, + ACTIONS(4944), 1, anon_sym_else, - STATE(682), 1, + STATE(690), 1, aux_sym_import_declaration_repeat1, - [24381] = 2, + [24381] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4975), 3, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4946), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24394] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4948), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24407] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(3651), 1, + anon_sym_RBRACE, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24420] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4934), 1, anon_sym_RPAREN, + ACTIONS(4950), 1, + sym__newline, + STATE(2070), 1, + aux_sym_import_declaration_repeat1, + [24433] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4952), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24446] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4954), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24459] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4956), 1, + anon_sym_RBRACK, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24472] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4958), 3, anon_sym_COMMA, + anon_sym_RBRACE, 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, - [24468] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4989), 1, - anon_sym_RBRACK, - ACTIONS(4991), 1, - sym__newline, - STATE(2038), 1, - aux_sym_import_declaration_repeat1, [24481] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(237), 1, sym__newline, - ACTIONS(4993), 1, - anon_sym_COMMA, - STATE(682), 1, + ACTIONS(4960), 1, + anon_sym_RPAREN, + STATE(690), 1, aux_sym_import_declaration_repeat1, [24494] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(4962), 1, + anon_sym_RPAREN, + ACTIONS(4964), 1, sym__newline, - ACTIONS(4995), 1, - anon_sym_RBRACK, - STATE(682), 1, + STATE(1959), 1, aux_sym_import_declaration_repeat1, [24507] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(237), 1, sym__newline, - ACTIONS(4048), 1, - anon_sym_RBRACE, - STATE(682), 1, + ACTIONS(4966), 1, + anon_sym_RBRACK, + STATE(690), 1, aux_sym_import_declaration_repeat1, [24520] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(237), 1, sym__newline, - ACTIONS(4997), 1, + ACTIONS(4968), 1, anon_sym_else, - STATE(682), 1, + STATE(690), 1, aux_sym_import_declaration_repeat1, [24533] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(237), 1, sym__newline, - ACTIONS(4999), 1, + ACTIONS(4970), 1, anon_sym_else, - STATE(682), 1, + STATE(690), 1, aux_sym_import_declaration_repeat1, - [24546] = 2, + [24546] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5001), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(237), 1, sym__newline, - [24555] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(5003), 1, - anon_sym_else, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [24568] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(5005), 1, + ACTIONS(4972), 1, anon_sym_RBRACK, - STATE(682), 1, + STATE(690), 1, aux_sym_import_declaration_repeat1, - [24581] = 4, + [24559] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(237), 1, sym__newline, - ACTIONS(5007), 1, - anon_sym_COMMA, - STATE(682), 1, + ACTIONS(4974), 1, + anon_sym_else, + STATE(690), 1, aux_sym_import_declaration_repeat1, + [24572] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4976), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24585] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4328), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, [24594] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(237), 1, sym__newline, - ACTIONS(5009), 1, + ACTIONS(4978), 1, anon_sym_else, - STATE(682), 1, + STATE(690), 1, aux_sym_import_declaration_repeat1, [24607] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(237), 1, sym__newline, - ACTIONS(5011), 1, - anon_sym_RBRACK, - STATE(682), 1, + ACTIONS(4980), 1, + anon_sym_else, + STATE(690), 1, aux_sym_import_declaration_repeat1, [24620] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(237), 1, sym__newline, - ACTIONS(5013), 1, - anon_sym_RBRACK, - STATE(682), 1, + ACTIONS(4982), 1, + anon_sym_else, + STATE(690), 1, aux_sym_import_declaration_repeat1, [24633] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(237), 1, sym__newline, - ACTIONS(5015), 1, + ACTIONS(4984), 1, anon_sym_else, - STATE(682), 1, + STATE(690), 1, aux_sym_import_declaration_repeat1, - [24646] = 4, + [24646] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(5017), 1, + ACTIONS(4986), 3, anon_sym_RPAREN, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [24659] = 4, + anon_sym_COMMA, + sym__newline, + [24655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(4988), 3, + anon_sym_RPAREN, + anon_sym_COMMA, sym__newline, - ACTIONS(5019), 1, + [24664] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4990), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24677] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4992), 1, + anon_sym_COMMA, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24690] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4994), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym__newline, + [24699] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4996), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24712] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4501), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym__newline, + [24721] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4998), 1, + anon_sym_RPAREN, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24734] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5000), 1, + anon_sym_PIPE, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24747] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5002), 1, anon_sym_RBRACK, - STATE(682), 1, + ACTIONS(5004), 1, + sym__newline, + STATE(2080), 1, aux_sym_import_declaration_repeat1, - [24672] = 4, + [24760] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(237), 1, sym__newline, - ACTIONS(5021), 1, - anon_sym_else, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [24685] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(5023), 1, - anon_sym_else, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [24698] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(5025), 1, - anon_sym_else, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [24711] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(5027), 1, - anon_sym_else, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [24724] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(5029), 1, - anon_sym_else, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [24737] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(5031), 1, - 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, + ACTIONS(5006), 1, anon_sym_RBRACK, - STATE(682), 1, + STATE(690), 1, aux_sym_import_declaration_repeat1, - [24763] = 4, + [24773] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, - sym__newline, - ACTIONS(5035), 1, - anon_sym_else, - STATE(682), 1, - aux_sym_import_declaration_repeat1, - [24776] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5037), 1, - anon_sym_COMMA, - ACTIONS(5039), 1, - anon_sym_PIPE, - [24786] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5041), 1, - anon_sym_COLON_COLON, - ACTIONS(5043), 1, - anon_sym_EQ, - [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, + ACTIONS(5008), 1, anon_sym_RBRACK, + ACTIONS(5010), 1, sym__newline, - [24814] = 3, + STATE(2019), 1, + aux_sym_import_declaration_repeat1, + [24786] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5051), 1, - sym_identifier, - ACTIONS(5053), 1, - anon_sym_AT, - [24824] = 3, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5012), 1, + anon_sym_RBRACK, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24799] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4657), 1, - anon_sym_LBRACE, - STATE(493), 1, - sym_initializer_list, - [24834] = 3, + ACTIONS(5014), 1, + anon_sym_RBRACK, + ACTIONS(5016), 1, + sym__newline, + STATE(2061), 1, + aux_sym_import_declaration_repeat1, + [24812] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5055), 1, - anon_sym_COMMA, - ACTIONS(5057), 1, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5018), 1, + anon_sym_RBRACK, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24825] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5020), 1, + anon_sym_RBRACK, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24838] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5022), 1, + anon_sym_RPAREN, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24851] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(5024), 1, + sym__newline, + STATE(2076), 1, + aux_sym_import_declaration_repeat1, + [24864] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5026), 1, + anon_sym_RBRACK, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24877] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5028), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24890] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5030), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24903] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5032), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24916] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5034), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24929] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5036), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24942] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5038), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24955] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3447), 1, anon_sym_PIPE, - [24844] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5059), 2, - sym_sink, - sym_identifier, - [24852] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5061), 1, - sym_identifier, - ACTIONS(5063), 1, - anon_sym_AT, - [24862] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5065), 1, - anon_sym_COMMA, - ACTIONS(5067), 1, - anon_sym_PIPE, - [24872] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5069), 1, - anon_sym_COLON_COLON, - ACTIONS(5071), 1, - anon_sym_EQ, - [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, - [24902] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5079), 1, - anon_sym_COLON_COLON, - ACTIONS(5081), 1, - anon_sym_EQ, - [24912] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5083), 1, - anon_sym_COLON_COLON, - ACTIONS(5085), 1, - anon_sym_EQ, - [24922] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5087), 1, - anon_sym_DASH, - ACTIONS(5089), 1, - 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, - [24948] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5095), 1, - anon_sym_COLON_COLON, - ACTIONS(5097), 1, - anon_sym_EQ, - [24958] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5099), 1, - anon_sym_COLON_COLON, - ACTIONS(5101), 1, - anon_sym_EQ, - [24968] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(915), 1, - anon_sym_LPAREN, - STATE(470), 1, - sym_argument_list, - [24978] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - [24996] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5105), 1, - anon_sym_COLON_COLON, - ACTIONS(5107), 1, - anon_sym_EQ, - [25006] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5109), 1, - anon_sym_COMMA, - ACTIONS(5111), 1, - anon_sym_PIPE, - [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, - sym_identifier, - ACTIONS(5125), 1, - anon_sym_AT, - [25054] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5127), 2, - sym_sink, - sym_identifier, - [25062] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5129), 1, - sym_identifier, - ACTIONS(5131), 1, - anon_sym_AT, - [25072] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5133), 1, - anon_sym_COLON_COLON, - ACTIONS(5135), 1, - anon_sym_EQ, - [25082] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5073), 1, - anon_sym_LPAREN, - STATE(1281), 1, - sym_parameter_list, - [25092] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5137), 1, + ACTIONS(3451), 1, anon_sym_COLON, - [25099] = 2, + STATE(2182), 1, + sym_match_capture, + [24968] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5139), 1, - anon_sym_COLON, - [25106] = 2, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5040), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24981] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, - anon_sym_PIPE, - [25113] = 2, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5042), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [24994] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5143), 1, - anon_sym_COLON, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5044), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25007] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5046), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25020] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5048), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25033] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5050), 1, + anon_sym_RBRACK, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25046] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5052), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym__newline, + [25055] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5054), 1, + anon_sym_RPAREN, + ACTIONS(5056), 1, + sym__newline, + STATE(2021), 1, + aux_sym_import_declaration_repeat1, + [25068] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5058), 1, + anon_sym_RBRACK, + ACTIONS(5060), 1, + sym__newline, + STATE(2015), 1, + aux_sym_import_declaration_repeat1, + [25081] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5062), 1, + anon_sym_RPAREN, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25094] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5064), 1, + anon_sym_RBRACK, + ACTIONS(5066), 1, + sym__newline, + STATE(2047), 1, + aux_sym_import_declaration_repeat1, + [25107] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5068), 1, + anon_sym_RBRACK, + STATE(690), 1, + aux_sym_import_declaration_repeat1, [25120] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5145), 1, - anon_sym_COLON, - [25127] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5147), 1, - anon_sym_COLON, - [25134] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5149), 1, - sym_identifier, - [25141] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5151), 1, - anon_sym_COLON, - [25148] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5153), 1, - anon_sym_COLON, - [25155] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5155), 1, - anon_sym_COLON, - [25162] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5157), 1, - sym_identifier, - [25169] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5159), 1, - anon_sym_COLON, - [25176] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5161), 1, - sym_identifier, - [25183] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5163), 1, - anon_sym_COLON, - [25190] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5165), 1, - anon_sym_COLON, - [25197] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5167), 1, - sym_identifier, - [25204] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5169), 1, - sym_identifier, - [25211] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5123), 1, - sym_identifier, - [25218] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5171), 1, - sym_identifier, - [25225] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5173), 1, - sym_identifier, - [25232] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5175), 1, + ACTIONS(5070), 3, anon_sym_RPAREN, - [25239] = 2, + anon_sym_COMMA, + sym__newline, + [25129] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, - anon_sym_COLON, - [25246] = 2, + ACTIONS(237), 1, + sym__newline, + ACTIONS(3705), 1, + anon_sym_RPAREN, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25142] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5179), 1, - anon_sym_PIPE, - [25253] = 2, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5072), 1, + anon_sym_COMMA, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25155] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5181), 1, - anon_sym_COLON, - [25260] = 2, + ACTIONS(5074), 1, + anon_sym_RBRACK, + ACTIONS(5076), 1, + sym__newline, + STATE(2066), 1, + aux_sym_import_declaration_repeat1, + [25168] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5183), 1, - anon_sym_COLON, - [25267] = 2, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5078), 1, + anon_sym_RBRACK, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25181] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5185), 1, - anon_sym_PIPE, - [25274] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5187), 1, - anon_sym_COLON, - [25281] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5189), 1, - anon_sym_COLON, - [25288] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5191), 1, - anon_sym_COLON, - [25295] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5193), 1, - anon_sym_COLON, - [25302] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5195), 1, - anon_sym_COLON, - [25309] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5197), 1, - anon_sym_SEMI, - [25316] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5199), 1, - anon_sym_COLON, - [25323] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5201), 1, - sym_integer, - [25330] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5203), 1, - anon_sym_COLON, - [25337] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5205), 1, - anon_sym_COLON, - [25344] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5207), 1, + ACTIONS(4454), 3, + anon_sym_RBRACE, sym_identifier, - [25351] = 2, + sym__newline, + [25190] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5209), 1, + ACTIONS(5080), 1, + anon_sym_RBRACK, + ACTIONS(5082), 1, + sym__newline, + STATE(2067), 1, + aux_sym_import_declaration_repeat1, + [25203] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5084), 1, + anon_sym_RBRACK, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25216] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5086), 1, + anon_sym_COMMA, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25229] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5088), 1, + anon_sym_RBRACK, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25242] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5090), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25255] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5092), 1, + anon_sym_COMMA, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25268] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5094), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25281] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5096), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25294] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5098), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25307] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5100), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25320] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5102), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25333] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5104), 1, + anon_sym_RPAREN, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25346] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5106), 1, + anon_sym_RBRACK, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25359] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4484), 3, + anon_sym_RBRACE, sym_identifier, - [25358] = 2, + sym__newline, + [25368] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5211), 1, - anon_sym_COLON, - [25365] = 2, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5108), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25381] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5213), 1, - anon_sym_COLON, - [25372] = 2, + ACTIONS(5110), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + sym__newline, + [25390] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5215), 1, + ACTIONS(237), 1, + sym__newline, + ACTIONS(4036), 1, + anon_sym_RBRACE, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25403] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5112), 1, + anon_sym_RBRACK, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25416] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5114), 1, + anon_sym_RBRACK, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25429] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5116), 1, + anon_sym_RBRACK, + ACTIONS(5118), 1, + sym__newline, + STATE(2079), 1, + aux_sym_import_declaration_repeat1, + [25442] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5120), 1, + anon_sym_RBRACK, + ACTIONS(5122), 1, + sym__newline, + STATE(2081), 1, + aux_sym_import_declaration_repeat1, + [25455] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5124), 1, + anon_sym_RPAREN, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25468] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5126), 1, + anon_sym_LBRACE, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25481] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5128), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25494] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5130), 1, + anon_sym_COMMA, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25507] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5132), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25520] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5062), 1, + anon_sym_RPAREN, + ACTIONS(5134), 1, + sym__newline, + STATE(1992), 1, + aux_sym_import_declaration_repeat1, + [25533] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5136), 1, + anon_sym_RPAREN, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25546] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5138), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25559] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5140), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25572] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5142), 1, + anon_sym_RBRACK, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25585] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5144), 1, + anon_sym_RBRACK, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25598] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5146), 1, + anon_sym_RBRACK, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25611] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4224), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + sym__newline, + [25620] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5148), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25633] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5150), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25646] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5152), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25659] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5154), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25672] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5156), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25685] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5158), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25698] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5160), 1, + anon_sym_RPAREN, + ACTIONS(5162), 1, + sym__newline, + STATE(2040), 1, + aux_sym_import_declaration_repeat1, + [25711] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(237), 1, + sym__newline, + ACTIONS(5164), 1, + anon_sym_else, + STATE(690), 1, + aux_sym_import_declaration_repeat1, + [25724] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5166), 2, + sym_sink, + sym_identifier, + [25732] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5168), 2, + sym_sink, + sym_identifier, + [25740] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5170), 1, + anon_sym_COLON_COLON, + ACTIONS(5172), 1, anon_sym_EQ, - [25379] = 2, + [25750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5217), 1, - anon_sym_COLON, - [25386] = 2, + ACTIONS(5174), 1, + anon_sym_LPAREN, + STATE(1296), 1, + sym_parameter_list, + [25760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5219), 1, + ACTIONS(5176), 1, + anon_sym_COLON_COLON, + ACTIONS(5178), 1, + anon_sym_EQ, + [25770] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5180), 1, + anon_sym_COLON_COLON, + ACTIONS(5182), 1, + anon_sym_EQ, + [25780] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(933), 1, + anon_sym_LPAREN, + STATE(523), 1, + sym_argument_list, + [25790] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5184), 2, + sym_sink, + sym_identifier, + [25798] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5186), 1, + anon_sym_COLON_COLON, + ACTIONS(5188), 1, + anon_sym_EQ, + [25808] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5190), 2, + sym_sink, + sym_identifier, + [25816] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5192), 1, + anon_sym_COMMA, + ACTIONS(5194), 1, anon_sym_PIPE, - [25393] = 2, + [25826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5221), 1, - anon_sym_COLON, - [25400] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5223), 1, - anon_sym_COLON, - [25407] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5225), 1, + ACTIONS(5196), 1, sym_identifier, - [25414] = 2, + ACTIONS(5198), 1, + anon_sym_AT, + [25836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5227), 1, - sym_identifier, - [25421] = 2, + ACTIONS(5174), 1, + anon_sym_LPAREN, + STATE(1295), 1, + sym_parameter_list, + [25846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5229), 1, - anon_sym_COLON, - [25428] = 2, + ACTIONS(5200), 1, + anon_sym_COLON_COLON, + ACTIONS(5202), 1, + anon_sym_EQ, + [25856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5231), 1, - anon_sym_COLON, - [25435] = 2, + ACTIONS(5174), 1, + anon_sym_LPAREN, + STATE(1297), 1, + sym_parameter_list, + [25866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5233), 1, + ACTIONS(5204), 1, + anon_sym_COLON_COLON, + ACTIONS(5206), 1, + anon_sym_EQ, + [25876] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5208), 1, + anon_sym_COLON_COLON, + ACTIONS(5210), 1, + anon_sym_EQ, + [25886] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + anon_sym_COLON_COLON, + ACTIONS(5214), 1, + anon_sym_EQ, + [25896] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5216), 1, + anon_sym_DASH, + ACTIONS(5218), 1, + sym_integer, + [25906] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4788), 1, + anon_sym_LBRACE, + STATE(471), 1, + sym_initializer_list, + [25916] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5220), 1, + anon_sym_COMMA, + ACTIONS(5222), 1, anon_sym_PIPE, - [25442] = 2, + [25926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 1, - anon_sym_COLON, - [25449] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5237), 1, - anon_sym_COLON, - [25456] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5239), 1, - anon_sym_COLON, - [25463] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5241), 1, - anon_sym_COLON, - [25470] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5243), 1, - sym_identifier, - [25477] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5245), 1, - sym_identifier, - [25484] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5247), 1, + ACTIONS(5224), 1, + anon_sym_COMMA, + ACTIONS(5226), 1, anon_sym_PIPE, - [25491] = 2, + [25936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1651), 1, + ACTIONS(5228), 1, + anon_sym_COMMA, + ACTIONS(5230), 1, + anon_sym_PIPE, + [25946] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5232), 1, + anon_sym_COLON_COLON, + ACTIONS(5234), 1, + anon_sym_EQ, + [25956] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5236), 1, + anon_sym_COLON_COLON, + ACTIONS(5238), 1, + anon_sym_EQ, + [25966] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5240), 1, + sym_identifier, + ACTIONS(5242), 1, + anon_sym_AT, + [25976] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5244), 2, + sym_sink, + sym_identifier, + [25984] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5246), 1, + sym_identifier, + ACTIONS(5248), 1, + anon_sym_AT, + [25994] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5250), 2, + sym_integer, + sym_character, + [26002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5252), 1, + anon_sym_COMMA, + ACTIONS(5254), 1, + anon_sym_PIPE, + [26012] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5256), 1, + anon_sym_COLON_COLON, + ACTIONS(5258), 1, + anon_sym_EQ, + [26022] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5260), 2, + anon_sym_RBRACK, + sym__newline, + [26030] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5262), 1, + anon_sym_COMMA, + ACTIONS(5264), 1, + anon_sym_PIPE, + [26040] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5266), 1, + sym_identifier, + ACTIONS(5268), 1, + anon_sym_AT, + [26050] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5174), 1, + anon_sym_LPAREN, + STATE(1286), 1, + sym_parameter_list, + [26060] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5270), 1, + anon_sym_COLON, + [26067] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5272), 1, + anon_sym_COLON, + [26074] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5274), 1, + anon_sym_COLON, + [26081] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5276), 1, + anon_sym_COLON, + [26088] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5278), 1, + anon_sym_COLON, + [26095] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5280), 1, + anon_sym_COLON, + [26102] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5282), 1, + anon_sym_COLON, + [26109] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5284), 1, + sym_identifier, + [26116] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5286), 1, + anon_sym_COLON, + [26123] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5288), 1, + anon_sym_COLON, + [26130] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5290), 1, + anon_sym_COLON, + [26137] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5292), 1, + anon_sym_COLON, + [26144] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5294), 1, + sym_identifier, + [26151] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5296), 1, + sym_identifier, + [26158] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5298), 1, + sym_identifier, + [26165] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_COLON, + [26172] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5302), 1, + anon_sym_COLON, + [26179] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5304), 1, + anon_sym_COLON, + [26186] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5306), 1, + sym_integer, + [26193] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5308), 1, + anon_sym_COLON, + [26200] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5310), 1, + sym_identifier, + [26207] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5312), 1, + anon_sym_COLON, + [26214] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5314), 1, + anon_sym_COLON, + [26221] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5316), 1, + anon_sym_COLON, + [26228] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5318), 1, + anon_sym_COLON, + [26235] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5320), 1, + anon_sym_PIPE, + [26242] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5322), 1, + anon_sym_COLON, + [26249] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5324), 1, + anon_sym_COLON, + [26256] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5326), 1, + anon_sym_PIPE, + [26263] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5328), 1, + anon_sym_COLON, + [26270] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5330), 1, + anon_sym_PIPE, + [26277] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5332), 1, + sym_identifier, + [26284] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5334), 1, + anon_sym_COLON, + [26291] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5336), 1, + anon_sym_COLON, + [26298] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5338), 1, + anon_sym_COLON, + [26305] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5340), 1, + anon_sym_COLON, + [26312] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5342), 1, + anon_sym_COLON, + [26319] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5344), 1, + sym_identifier, + [26326] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5346), 1, + sym_identifier, + [26333] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5348), 1, + anon_sym_COLON, + [26340] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5350), 1, + sym_identifier, + [26347] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5352), 1, + anon_sym_COLON, + [26354] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5354), 1, + anon_sym_COLON, + [26361] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5356), 1, + sym_identifier, + [26368] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5358), 1, + sym_identifier, + [26375] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5360), 1, + anon_sym_COLON, + [26382] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5362), 1, + anon_sym_COLON, + [26389] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5364), 1, + sym_identifier, + [26396] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5366), 1, + anon_sym_COLON, + [26403] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5368), 1, + anon_sym_COLON, + [26410] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5370), 1, + sym_identifier, + [26417] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5372), 1, + anon_sym_COLON, + [26424] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5374), 1, + anon_sym_COLON, + [26431] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5376), 1, + anon_sym_PIPE, + [26438] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5378), 1, + anon_sym_COLON, + [26445] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5380), 1, + anon_sym_COLON, + [26452] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5382), 1, + anon_sym_COLON, + [26459] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5384), 1, + anon_sym_PIPE, + [26466] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5386), 1, + anon_sym_COLON, + [26473] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5240), 1, + sym_identifier, + [26480] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5388), 1, + anon_sym_COLON, + [26487] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5390), 1, anon_sym_SEMI, - [25498] = 2, + [26494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5249), 1, - sym_identifier, - [25505] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5251), 1, - anon_sym_COLON, - [25512] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5253), 1, - anon_sym_COLON, - [25519] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5255), 1, - anon_sym_COLON, - [25526] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5257), 1, - anon_sym_COLON, - [25533] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5259), 1, - anon_sym_COLON, - [25540] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5261), 1, - anon_sym_COLON, - [25547] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5263), 1, - anon_sym_COLON, - [25554] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5265), 1, - anon_sym_COLON, - [25561] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5267), 1, + ACTIONS(5392), 1, anon_sym_RPAREN, - [25568] = 2, + [26501] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5269), 1, + ACTIONS(5394), 1, anon_sym_COLON, - [25575] = 2, + [26508] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5271), 1, + ACTIONS(5396), 1, sym_identifier, - [25582] = 2, + [26515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5273), 1, + ACTIONS(5398), 1, + anon_sym_COLON, + [26522] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5400), 1, + anon_sym_COLON, + [26529] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5402), 1, + anon_sym_COLON, + [26536] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5404), 1, + anon_sym_COLON, + [26543] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5406), 1, + anon_sym_EQ, + [26550] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5408), 1, + anon_sym_PIPE, + [26557] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5410), 1, + anon_sym_PIPE, + [26564] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5412), 1, sym_identifier, - [25589] = 2, + [26571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5275), 1, + ACTIONS(5414), 1, anon_sym_COLON, - [25596] = 2, + [26578] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5277), 1, - anon_sym_COLON, - [25603] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5279), 1, - anon_sym_COLON, - [25610] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5281), 1, - anon_sym_COLON, - [25617] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5283), 1, + ACTIONS(5416), 1, anon_sym_PIPE, - [25624] = 2, + [26585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5285), 1, + ACTIONS(5418), 1, anon_sym_COLON, - [25631] = 2, + [26592] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5287), 1, + ACTIONS(5420), 1, anon_sym_COLON, - [25638] = 2, + [26599] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5289), 1, - anon_sym_COLON, - [25645] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5291), 1, - anon_sym_PIPE, - [25652] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5293), 1, - anon_sym_COLON, - [25659] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5295), 1, - anon_sym_COLON, - [25666] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5297), 1, + ACTIONS(5422), 1, sym_identifier, - [25673] = 2, + [26606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5299), 1, + ACTIONS(5424), 1, anon_sym_COLON, - [25680] = 2, + [26613] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5301), 1, + ACTIONS(5426), 1, anon_sym_COLON, - [25687] = 2, + [26620] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5303), 1, + ACTIONS(5428), 1, + anon_sym_RPAREN, + [26627] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1675), 1, + anon_sym_SEMI, + [26634] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5430), 1, + anon_sym_COLON, + [26641] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5432), 1, + anon_sym_COLON, + [26648] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5434), 1, + sym_identifier, + [26655] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5436), 1, + anon_sym_COLON, + [26662] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5438), 1, + anon_sym_COLON, + [26669] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5440), 1, + sym_identifier, + [26676] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5442), 1, + anon_sym_COLON, + [26683] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5444), 1, + anon_sym_COLON, + [26690] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5446), 1, + anon_sym_COLON, + [26697] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5448), 1, + sym_identifier, + [26704] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5450), 1, anon_sym_PIPE, - [25694] = 2, + [26711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5305), 1, + ACTIONS(5452), 1, + sym_identifier, + [26718] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5454), 1, + anon_sym_COLON, + [26725] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5456), 1, + sym_identifier, + [26732] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5458), 1, + anon_sym_COLON, + [26739] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5460), 1, + sym_identifier, + [26746] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5462), 1, + anon_sym_COLON, + [26753] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5464), 1, + anon_sym_PIPE, + [26760] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5466), 1, + anon_sym_COLON, + [26767] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5266), 1, + sym_identifier, + [26774] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5468), 1, + sym_identifier, + [26781] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5470), 1, + anon_sym_COLON, + [26788] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5472), 1, + sym_identifier, + [26795] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1609), 1, + anon_sym_SEMI, + [26802] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5474), 1, + anon_sym_SEMI, + [26809] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5476), 1, + anon_sym_COLON, + [26816] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5478), 1, + sym_identifier, + [26823] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5480), 1, ts_builtin_sym_end, - [25701] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5307), 1, - anon_sym_COLON, - [25708] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5309), 1, - 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, - [25729] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5313), 1, - anon_sym_COLON, - [25736] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5315), 1, - anon_sym_COLON, - [25743] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5317), 1, - anon_sym_PIPE, - [25750] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5319), 1, - anon_sym_COLON, - [25757] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5321), 1, - anon_sym_COLON, - [25764] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5323), 1, - sym_identifier, - [25771] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5325), 1, - sym_identifier, - [25778] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5327), 1, - anon_sym_COLON, - [25785] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5329), 1, - anon_sym_COLON, - [25792] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5331), 1, - anon_sym_COLON, - [25799] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5333), 1, - anon_sym_COLON, - [25806] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5335), 1, - sym_identifier, - [25813] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5337), 1, - 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(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, + [SMALL_STATE(1260)] = 0, + [SMALL_STATE(1261)] = 71, + [SMALL_STATE(1262)] = 144, + [SMALL_STATE(1263)] = 216, + [SMALL_STATE(1264)] = 288, + [SMALL_STATE(1265)] = 359, + [SMALL_STATE(1266)] = 430, + [SMALL_STATE(1267)] = 501, + [SMALL_STATE(1268)] = 572, + [SMALL_STATE(1269)] = 643, + [SMALL_STATE(1270)] = 714, + [SMALL_STATE(1271)] = 778, + [SMALL_STATE(1272)] = 842, + [SMALL_STATE(1273)] = 906, + [SMALL_STATE(1274)] = 970, + [SMALL_STATE(1275)] = 1034, + [SMALL_STATE(1276)] = 1098, + [SMALL_STATE(1277)] = 1177, + [SMALL_STATE(1278)] = 1256, + [SMALL_STATE(1279)] = 1335, + [SMALL_STATE(1280)] = 1414, + [SMALL_STATE(1281)] = 1493, + [SMALL_STATE(1282)] = 1572, + [SMALL_STATE(1283)] = 1651, + [SMALL_STATE(1284)] = 1730, + [SMALL_STATE(1285)] = 1806, + [SMALL_STATE(1286)] = 1882, + [SMALL_STATE(1287)] = 1958, + [SMALL_STATE(1288)] = 2032, + [SMALL_STATE(1289)] = 2108, + [SMALL_STATE(1290)] = 2184, + [SMALL_STATE(1291)] = 2260, + [SMALL_STATE(1292)] = 2336, + [SMALL_STATE(1293)] = 2412, + [SMALL_STATE(1294)] = 2488, + [SMALL_STATE(1295)] = 2564, + [SMALL_STATE(1296)] = 2640, + [SMALL_STATE(1297)] = 2716, + [SMALL_STATE(1298)] = 2792, + [SMALL_STATE(1299)] = 2868, + [SMALL_STATE(1300)] = 2941, + [SMALL_STATE(1301)] = 3014, + [SMALL_STATE(1302)] = 3087, + [SMALL_STATE(1303)] = 3160, + [SMALL_STATE(1304)] = 3233, + [SMALL_STATE(1305)] = 3306, + [SMALL_STATE(1306)] = 3379, + [SMALL_STATE(1307)] = 3452, + [SMALL_STATE(1308)] = 3525, + [SMALL_STATE(1309)] = 3598, + [SMALL_STATE(1310)] = 3671, + [SMALL_STATE(1311)] = 3744, + [SMALL_STATE(1312)] = 3817, + [SMALL_STATE(1313)] = 3890, + [SMALL_STATE(1314)] = 3963, + [SMALL_STATE(1315)] = 4036, + [SMALL_STATE(1316)] = 4109, + [SMALL_STATE(1317)] = 4182, + [SMALL_STATE(1318)] = 4255, + [SMALL_STATE(1319)] = 4328, + [SMALL_STATE(1320)] = 4401, + [SMALL_STATE(1321)] = 4474, + [SMALL_STATE(1322)] = 4547, + [SMALL_STATE(1323)] = 4620, + [SMALL_STATE(1324)] = 4693, + [SMALL_STATE(1325)] = 4766, + [SMALL_STATE(1326)] = 4839, + [SMALL_STATE(1327)] = 4912, + [SMALL_STATE(1328)] = 4985, + [SMALL_STATE(1329)] = 5058, + [SMALL_STATE(1330)] = 5131, + [SMALL_STATE(1331)] = 5204, + [SMALL_STATE(1332)] = 5277, + [SMALL_STATE(1333)] = 5350, + [SMALL_STATE(1334)] = 5420, + [SMALL_STATE(1335)] = 5490, + [SMALL_STATE(1336)] = 5560, + [SMALL_STATE(1337)] = 5630, + [SMALL_STATE(1338)] = 5700, + [SMALL_STATE(1339)] = 5770, + [SMALL_STATE(1340)] = 5840, + [SMALL_STATE(1341)] = 5910, + [SMALL_STATE(1342)] = 5980, + [SMALL_STATE(1343)] = 6050, + [SMALL_STATE(1344)] = 6120, + [SMALL_STATE(1345)] = 6190, + [SMALL_STATE(1346)] = 6260, + [SMALL_STATE(1347)] = 6330, + [SMALL_STATE(1348)] = 6400, + [SMALL_STATE(1349)] = 6470, + [SMALL_STATE(1350)] = 6540, + [SMALL_STATE(1351)] = 6610, + [SMALL_STATE(1352)] = 6680, + [SMALL_STATE(1353)] = 6750, + [SMALL_STATE(1354)] = 6820, + [SMALL_STATE(1355)] = 6890, + [SMALL_STATE(1356)] = 6960, + [SMALL_STATE(1357)] = 7030, + [SMALL_STATE(1358)] = 7100, + [SMALL_STATE(1359)] = 7170, + [SMALL_STATE(1360)] = 7240, + [SMALL_STATE(1361)] = 7310, + [SMALL_STATE(1362)] = 7380, + [SMALL_STATE(1363)] = 7450, + [SMALL_STATE(1364)] = 7520, + [SMALL_STATE(1365)] = 7590, + [SMALL_STATE(1366)] = 7660, + [SMALL_STATE(1367)] = 7730, + [SMALL_STATE(1368)] = 7800, + [SMALL_STATE(1369)] = 7870, + [SMALL_STATE(1370)] = 7940, + [SMALL_STATE(1371)] = 8010, + [SMALL_STATE(1372)] = 8080, + [SMALL_STATE(1373)] = 8147, + [SMALL_STATE(1374)] = 8200, + [SMALL_STATE(1375)] = 8248, + [SMALL_STATE(1376)] = 8296, + [SMALL_STATE(1377)] = 8344, + [SMALL_STATE(1378)] = 8392, + [SMALL_STATE(1379)] = 8440, + [SMALL_STATE(1380)] = 8488, + [SMALL_STATE(1381)] = 8536, + [SMALL_STATE(1382)] = 8584, + [SMALL_STATE(1383)] = 8632, + [SMALL_STATE(1384)] = 8692, + [SMALL_STATE(1385)] = 8746, + [SMALL_STATE(1386)] = 8802, + [SMALL_STATE(1387)] = 8870, + [SMALL_STATE(1388)] = 8926, + [SMALL_STATE(1389)] = 8988, + [SMALL_STATE(1390)] = 9042, + [SMALL_STATE(1391)] = 9106, + [SMALL_STATE(1392)] = 9168, + [SMALL_STATE(1393)] = 9228, + [SMALL_STATE(1394)] = 9296, + [SMALL_STATE(1395)] = 9360, + [SMALL_STATE(1396)] = 9415, + [SMALL_STATE(1397)] = 9490, + [SMALL_STATE(1398)] = 9557, + [SMALL_STATE(1399)] = 9620, + [SMALL_STATE(1400)] = 9681, + [SMALL_STATE(1401)] = 9744, + [SMALL_STATE(1402)] = 9803, + [SMALL_STATE(1403)] = 9870, + [SMALL_STATE(1404)] = 9925, + [SMALL_STATE(1405)] = 9978, + [SMALL_STATE(1406)] = 10031, + [SMALL_STATE(1407)] = 10092, + [SMALL_STATE(1408)] = 10151, + [SMALL_STATE(1409)] = 10205, + [SMALL_STATE(1410)] = 10279, + [SMALL_STATE(1411)] = 10345, + [SMALL_STATE(1412)] = 10407, + [SMALL_STATE(1413)] = 10467, + [SMALL_STATE(1414)] = 10519, + [SMALL_STATE(1415)] = 10577, + [SMALL_STATE(1416)] = 10639, + [SMALL_STATE(1417)] = 10699, + [SMALL_STATE(1418)] = 10765, + [SMALL_STATE(1419)] = 10817, + [SMALL_STATE(1420)] = 10871, + [SMALL_STATE(1421)] = 10929, + [SMALL_STATE(1422)] = 11002, + [SMALL_STATE(1423)] = 11074, + [SMALL_STATE(1424)] = 11148, + [SMALL_STATE(1425)] = 11222, + [SMALL_STATE(1426)] = 11292, + [SMALL_STATE(1427)] = 11369, + [SMALL_STATE(1428)] = 11438, + [SMALL_STATE(1429)] = 11512, + [SMALL_STATE(1430)] = 11586, + [SMALL_STATE(1431)] = 11660, + [SMALL_STATE(1432)] = 11734, + [SMALL_STATE(1433)] = 11808, + [SMALL_STATE(1434)] = 11882, + [SMALL_STATE(1435)] = 11956, + [SMALL_STATE(1436)] = 12030, + [SMALL_STATE(1437)] = 12104, + [SMALL_STATE(1438)] = 12178, + [SMALL_STATE(1439)] = 12252, + [SMALL_STATE(1440)] = 12326, + [SMALL_STATE(1441)] = 12400, + [SMALL_STATE(1442)] = 12474, + [SMALL_STATE(1443)] = 12540, + [SMALL_STATE(1444)] = 12611, + [SMALL_STATE(1445)] = 12678, + [SMALL_STATE(1446)] = 12749, + [SMALL_STATE(1447)] = 12816, + [SMALL_STATE(1448)] = 12887, + [SMALL_STATE(1449)] = 12958, + [SMALL_STATE(1450)] = 13018, + [SMALL_STATE(1451)] = 13066, + [SMALL_STATE(1452)] = 13110, + [SMALL_STATE(1453)] = 13152, + [SMALL_STATE(1454)] = 13220, + [SMALL_STATE(1455)] = 13288, + [SMALL_STATE(1456)] = 13334, + [SMALL_STATE(1457)] = 13396, + [SMALL_STATE(1458)] = 13456, + [SMALL_STATE(1459)] = 13498, + [SMALL_STATE(1460)] = 13554, + [SMALL_STATE(1461)] = 13616, + [SMALL_STATE(1462)] = 13670, + [SMALL_STATE(1463)] = 13712, + [SMALL_STATE(1464)] = 13764, + [SMALL_STATE(1465)] = 13812, + [SMALL_STATE(1466)] = 13874, + [SMALL_STATE(1467)] = 13916, + [SMALL_STATE(1468)] = 13978, + [SMALL_STATE(1469)] = 14016, + [SMALL_STATE(1470)] = 14054, + [SMALL_STATE(1471)] = 14100, + [SMALL_STATE(1472)] = 14162, + [SMALL_STATE(1473)] = 14200, + [SMALL_STATE(1474)] = 14256, + [SMALL_STATE(1475)] = 14310, + [SMALL_STATE(1476)] = 14362, + [SMALL_STATE(1477)] = 14400, + [SMALL_STATE(1478)] = 14464, + [SMALL_STATE(1479)] = 14526, + [SMALL_STATE(1480)] = 14591, + [SMALL_STATE(1481)] = 14656, + [SMALL_STATE(1482)] = 14721, + [SMALL_STATE(1483)] = 14782, + [SMALL_STATE(1484)] = 14847, + [SMALL_STATE(1485)] = 14912, + [SMALL_STATE(1486)] = 14973, + [SMALL_STATE(1487)] = 15038, + [SMALL_STATE(1488)] = 15103, + [SMALL_STATE(1489)] = 15168, + [SMALL_STATE(1490)] = 15233, + [SMALL_STATE(1491)] = 15294, + [SMALL_STATE(1492)] = 15359, + [SMALL_STATE(1493)] = 15424, + [SMALL_STATE(1494)] = 15485, + [SMALL_STATE(1495)] = 15550, + [SMALL_STATE(1496)] = 15611, + [SMALL_STATE(1497)] = 15663, + [SMALL_STATE(1498)] = 15715, + [SMALL_STATE(1499)] = 15759, + [SMALL_STATE(1500)] = 15817, + [SMALL_STATE(1501)] = 15871, + [SMALL_STATE(1502)] = 15917, + [SMALL_STATE(1503)] = 15967, + [SMALL_STATE(1504)] = 16013, + [SMALL_STATE(1505)] = 16057, + [SMALL_STATE(1506)] = 16115, + [SMALL_STATE(1507)] = 16169, + [SMALL_STATE(1508)] = 16219, + [SMALL_STATE(1509)] = 16278, + [SMALL_STATE(1510)] = 16337, + [SMALL_STATE(1511)] = 16369, + [SMALL_STATE(1512)] = 16397, + [SMALL_STATE(1513)] = 16425, + [SMALL_STATE(1514)] = 16457, + [SMALL_STATE(1515)] = 16489, + [SMALL_STATE(1516)] = 16521, + [SMALL_STATE(1517)] = 16550, + [SMALL_STATE(1518)] = 16579, + [SMALL_STATE(1519)] = 16608, + [SMALL_STATE(1520)] = 16637, + [SMALL_STATE(1521)] = 16663, + [SMALL_STATE(1522)] = 16689, + [SMALL_STATE(1523)] = 16715, + [SMALL_STATE(1524)] = 16741, + [SMALL_STATE(1525)] = 16767, + [SMALL_STATE(1526)] = 16793, + [SMALL_STATE(1527)] = 16819, + [SMALL_STATE(1528)] = 16845, + [SMALL_STATE(1529)] = 16871, + [SMALL_STATE(1530)] = 16897, + [SMALL_STATE(1531)] = 16923, + [SMALL_STATE(1532)] = 16949, + [SMALL_STATE(1533)] = 16975, + [SMALL_STATE(1534)] = 17001, + [SMALL_STATE(1535)] = 17022, + [SMALL_STATE(1536)] = 17045, + [SMALL_STATE(1537)] = 17070, + [SMALL_STATE(1538)] = 17091, + [SMALL_STATE(1539)] = 17112, + [SMALL_STATE(1540)] = 17133, + [SMALL_STATE(1541)] = 17154, + [SMALL_STATE(1542)] = 17175, + [SMALL_STATE(1543)] = 17196, + [SMALL_STATE(1544)] = 17219, + [SMALL_STATE(1545)] = 17240, + [SMALL_STATE(1546)] = 17261, + [SMALL_STATE(1547)] = 17284, + [SMALL_STATE(1548)] = 17307, + [SMALL_STATE(1549)] = 17328, + [SMALL_STATE(1550)] = 17349, + [SMALL_STATE(1551)] = 17370, + [SMALL_STATE(1552)] = 17392, + [SMALL_STATE(1553)] = 17412, + [SMALL_STATE(1554)] = 17432, + [SMALL_STATE(1555)] = 17454, + [SMALL_STATE(1556)] = 17474, + [SMALL_STATE(1557)] = 17493, + [SMALL_STATE(1558)] = 17506, + [SMALL_STATE(1559)] = 17525, + [SMALL_STATE(1560)] = 17538, + [SMALL_STATE(1561)] = 17551, + [SMALL_STATE(1562)] = 17564, + [SMALL_STATE(1563)] = 17577, + [SMALL_STATE(1564)] = 17596, + [SMALL_STATE(1565)] = 17609, + [SMALL_STATE(1566)] = 17628, + [SMALL_STATE(1567)] = 17647, + [SMALL_STATE(1568)] = 17666, + [SMALL_STATE(1569)] = 17679, + [SMALL_STATE(1570)] = 17698, + [SMALL_STATE(1571)] = 17717, + [SMALL_STATE(1572)] = 17736, + [SMALL_STATE(1573)] = 17755, + [SMALL_STATE(1574)] = 17768, + [SMALL_STATE(1575)] = 17787, + [SMALL_STATE(1576)] = 17806, + [SMALL_STATE(1577)] = 17825, + [SMALL_STATE(1578)] = 17844, + [SMALL_STATE(1579)] = 17863, + [SMALL_STATE(1580)] = 17882, + [SMALL_STATE(1581)] = 17901, + [SMALL_STATE(1582)] = 17920, + [SMALL_STATE(1583)] = 17939, + [SMALL_STATE(1584)] = 17958, + [SMALL_STATE(1585)] = 17971, + [SMALL_STATE(1586)] = 17990, + [SMALL_STATE(1587)] = 18003, + [SMALL_STATE(1588)] = 18022, + [SMALL_STATE(1589)] = 18035, + [SMALL_STATE(1590)] = 18054, + [SMALL_STATE(1591)] = 18067, + [SMALL_STATE(1592)] = 18086, + [SMALL_STATE(1593)] = 18105, + [SMALL_STATE(1594)] = 18124, + [SMALL_STATE(1595)] = 18143, + [SMALL_STATE(1596)] = 18162, + [SMALL_STATE(1597)] = 18175, + [SMALL_STATE(1598)] = 18194, + [SMALL_STATE(1599)] = 18213, + [SMALL_STATE(1600)] = 18232, + [SMALL_STATE(1601)] = 18251, + [SMALL_STATE(1602)] = 18270, + [SMALL_STATE(1603)] = 18289, + [SMALL_STATE(1604)] = 18302, + [SMALL_STATE(1605)] = 18315, + [SMALL_STATE(1606)] = 18328, + [SMALL_STATE(1607)] = 18341, + [SMALL_STATE(1608)] = 18360, + [SMALL_STATE(1609)] = 18379, + [SMALL_STATE(1610)] = 18398, + [SMALL_STATE(1611)] = 18417, + [SMALL_STATE(1612)] = 18436, + [SMALL_STATE(1613)] = 18455, + [SMALL_STATE(1614)] = 18474, + [SMALL_STATE(1615)] = 18493, + [SMALL_STATE(1616)] = 18512, + [SMALL_STATE(1617)] = 18531, + [SMALL_STATE(1618)] = 18544, + [SMALL_STATE(1619)] = 18563, + [SMALL_STATE(1620)] = 18582, + [SMALL_STATE(1621)] = 18601, + [SMALL_STATE(1622)] = 18614, + [SMALL_STATE(1623)] = 18633, + [SMALL_STATE(1624)] = 18652, + [SMALL_STATE(1625)] = 18671, + [SMALL_STATE(1626)] = 18690, + [SMALL_STATE(1627)] = 18709, + [SMALL_STATE(1628)] = 18728, + [SMALL_STATE(1629)] = 18747, + [SMALL_STATE(1630)] = 18766, + [SMALL_STATE(1631)] = 18779, + [SMALL_STATE(1632)] = 18798, + [SMALL_STATE(1633)] = 18817, + [SMALL_STATE(1634)] = 18830, + [SMALL_STATE(1635)] = 18849, + [SMALL_STATE(1636)] = 18862, + [SMALL_STATE(1637)] = 18881, + [SMALL_STATE(1638)] = 18900, + [SMALL_STATE(1639)] = 18919, + [SMALL_STATE(1640)] = 18938, + [SMALL_STATE(1641)] = 18951, + [SMALL_STATE(1642)] = 18970, + [SMALL_STATE(1643)] = 18989, + [SMALL_STATE(1644)] = 19008, + [SMALL_STATE(1645)] = 19027, + [SMALL_STATE(1646)] = 19046, + [SMALL_STATE(1647)] = 19065, + [SMALL_STATE(1648)] = 19084, + [SMALL_STATE(1649)] = 19103, + [SMALL_STATE(1650)] = 19116, + [SMALL_STATE(1651)] = 19129, + [SMALL_STATE(1652)] = 19142, + [SMALL_STATE(1653)] = 19161, + [SMALL_STATE(1654)] = 19174, + [SMALL_STATE(1655)] = 19193, + [SMALL_STATE(1656)] = 19212, + [SMALL_STATE(1657)] = 19231, + [SMALL_STATE(1658)] = 19250, + [SMALL_STATE(1659)] = 19269, + [SMALL_STATE(1660)] = 19288, + [SMALL_STATE(1661)] = 19307, + [SMALL_STATE(1662)] = 19326, + [SMALL_STATE(1663)] = 19345, + [SMALL_STATE(1664)] = 19364, + [SMALL_STATE(1665)] = 19383, + [SMALL_STATE(1666)] = 19402, + [SMALL_STATE(1667)] = 19421, + [SMALL_STATE(1668)] = 19440, + [SMALL_STATE(1669)] = 19459, + [SMALL_STATE(1670)] = 19478, + [SMALL_STATE(1671)] = 19497, + [SMALL_STATE(1672)] = 19510, + [SMALL_STATE(1673)] = 19529, + [SMALL_STATE(1674)] = 19542, + [SMALL_STATE(1675)] = 19561, + [SMALL_STATE(1676)] = 19574, + [SMALL_STATE(1677)] = 19593, + [SMALL_STATE(1678)] = 19606, + [SMALL_STATE(1679)] = 19625, + [SMALL_STATE(1680)] = 19644, + [SMALL_STATE(1681)] = 19657, + [SMALL_STATE(1682)] = 19676, + [SMALL_STATE(1683)] = 19689, + [SMALL_STATE(1684)] = 19702, + [SMALL_STATE(1685)] = 19721, + [SMALL_STATE(1686)] = 19740, + [SMALL_STATE(1687)] = 19753, + [SMALL_STATE(1688)] = 19772, + [SMALL_STATE(1689)] = 19791, + [SMALL_STATE(1690)] = 19804, + [SMALL_STATE(1691)] = 19823, + [SMALL_STATE(1692)] = 19836, + [SMALL_STATE(1693)] = 19855, + [SMALL_STATE(1694)] = 19874, + [SMALL_STATE(1695)] = 19893, + [SMALL_STATE(1696)] = 19912, + [SMALL_STATE(1697)] = 19931, + [SMALL_STATE(1698)] = 19950, + [SMALL_STATE(1699)] = 19969, + [SMALL_STATE(1700)] = 19988, + [SMALL_STATE(1701)] = 20007, + [SMALL_STATE(1702)] = 20026, + [SMALL_STATE(1703)] = 20045, + [SMALL_STATE(1704)] = 20064, + [SMALL_STATE(1705)] = 20077, + [SMALL_STATE(1706)] = 20090, + [SMALL_STATE(1707)] = 20109, + [SMALL_STATE(1708)] = 20122, + [SMALL_STATE(1709)] = 20141, + [SMALL_STATE(1710)] = 20154, + [SMALL_STATE(1711)] = 20173, + [SMALL_STATE(1712)] = 20186, + [SMALL_STATE(1713)] = 20205, + [SMALL_STATE(1714)] = 20218, + [SMALL_STATE(1715)] = 20231, + [SMALL_STATE(1716)] = 20250, + [SMALL_STATE(1717)] = 20269, + [SMALL_STATE(1718)] = 20282, + [SMALL_STATE(1719)] = 20295, + [SMALL_STATE(1720)] = 20314, + [SMALL_STATE(1721)] = 20333, + [SMALL_STATE(1722)] = 20352, + [SMALL_STATE(1723)] = 20371, + [SMALL_STATE(1724)] = 20390, + [SMALL_STATE(1725)] = 20409, + [SMALL_STATE(1726)] = 20428, + [SMALL_STATE(1727)] = 20447, + [SMALL_STATE(1728)] = 20463, + [SMALL_STATE(1729)] = 20479, + [SMALL_STATE(1730)] = 20495, + [SMALL_STATE(1731)] = 20511, + [SMALL_STATE(1732)] = 20527, + [SMALL_STATE(1733)] = 20543, + [SMALL_STATE(1734)] = 20559, + [SMALL_STATE(1735)] = 20575, + [SMALL_STATE(1736)] = 20591, + [SMALL_STATE(1737)] = 20607, + [SMALL_STATE(1738)] = 20623, + [SMALL_STATE(1739)] = 20639, + [SMALL_STATE(1740)] = 20655, + [SMALL_STATE(1741)] = 20671, + [SMALL_STATE(1742)] = 20687, + [SMALL_STATE(1743)] = 20703, + [SMALL_STATE(1744)] = 20719, + [SMALL_STATE(1745)] = 20735, + [SMALL_STATE(1746)] = 20751, + [SMALL_STATE(1747)] = 20767, + [SMALL_STATE(1748)] = 20783, + [SMALL_STATE(1749)] = 20799, + [SMALL_STATE(1750)] = 20815, + [SMALL_STATE(1751)] = 20831, + [SMALL_STATE(1752)] = 20843, + [SMALL_STATE(1753)] = 20859, + [SMALL_STATE(1754)] = 20875, + [SMALL_STATE(1755)] = 20891, + [SMALL_STATE(1756)] = 20907, + [SMALL_STATE(1757)] = 20923, + [SMALL_STATE(1758)] = 20939, + [SMALL_STATE(1759)] = 20955, + [SMALL_STATE(1760)] = 20971, + [SMALL_STATE(1761)] = 20987, + [SMALL_STATE(1762)] = 21003, + [SMALL_STATE(1763)] = 21019, + [SMALL_STATE(1764)] = 21035, + [SMALL_STATE(1765)] = 21051, + [SMALL_STATE(1766)] = 21067, + [SMALL_STATE(1767)] = 21083, + [SMALL_STATE(1768)] = 21099, + [SMALL_STATE(1769)] = 21115, + [SMALL_STATE(1770)] = 21131, + [SMALL_STATE(1771)] = 21147, + [SMALL_STATE(1772)] = 21163, + [SMALL_STATE(1773)] = 21179, + [SMALL_STATE(1774)] = 21195, + [SMALL_STATE(1775)] = 21211, + [SMALL_STATE(1776)] = 21227, + [SMALL_STATE(1777)] = 21243, + [SMALL_STATE(1778)] = 21259, + [SMALL_STATE(1779)] = 21275, + [SMALL_STATE(1780)] = 21291, + [SMALL_STATE(1781)] = 21307, + [SMALL_STATE(1782)] = 21323, + [SMALL_STATE(1783)] = 21339, + [SMALL_STATE(1784)] = 21355, + [SMALL_STATE(1785)] = 21371, + [SMALL_STATE(1786)] = 21387, + [SMALL_STATE(1787)] = 21403, + [SMALL_STATE(1788)] = 21419, + [SMALL_STATE(1789)] = 21435, + [SMALL_STATE(1790)] = 21451, + [SMALL_STATE(1791)] = 21461, + [SMALL_STATE(1792)] = 21477, + [SMALL_STATE(1793)] = 21493, + [SMALL_STATE(1794)] = 21509, + [SMALL_STATE(1795)] = 21519, + [SMALL_STATE(1796)] = 21535, + [SMALL_STATE(1797)] = 21551, + [SMALL_STATE(1798)] = 21567, + [SMALL_STATE(1799)] = 21583, + [SMALL_STATE(1800)] = 21599, + [SMALL_STATE(1801)] = 21615, + [SMALL_STATE(1802)] = 21631, + [SMALL_STATE(1803)] = 21647, + [SMALL_STATE(1804)] = 21663, + [SMALL_STATE(1805)] = 21679, + [SMALL_STATE(1806)] = 21695, + [SMALL_STATE(1807)] = 21711, + [SMALL_STATE(1808)] = 21727, + [SMALL_STATE(1809)] = 21743, + [SMALL_STATE(1810)] = 21759, + [SMALL_STATE(1811)] = 21775, + [SMALL_STATE(1812)] = 21791, + [SMALL_STATE(1813)] = 21807, + [SMALL_STATE(1814)] = 21823, + [SMALL_STATE(1815)] = 21837, + [SMALL_STATE(1816)] = 21853, + [SMALL_STATE(1817)] = 21869, + [SMALL_STATE(1818)] = 21883, + [SMALL_STATE(1819)] = 21899, + [SMALL_STATE(1820)] = 21915, + [SMALL_STATE(1821)] = 21931, + [SMALL_STATE(1822)] = 21947, + [SMALL_STATE(1823)] = 21963, + [SMALL_STATE(1824)] = 21979, + [SMALL_STATE(1825)] = 21995, + [SMALL_STATE(1826)] = 22011, + [SMALL_STATE(1827)] = 22027, + [SMALL_STATE(1828)] = 22043, + [SMALL_STATE(1829)] = 22059, + [SMALL_STATE(1830)] = 22075, + [SMALL_STATE(1831)] = 22091, + [SMALL_STATE(1832)] = 22107, + [SMALL_STATE(1833)] = 22123, + [SMALL_STATE(1834)] = 22139, + [SMALL_STATE(1835)] = 22155, + [SMALL_STATE(1836)] = 22171, + [SMALL_STATE(1837)] = 22185, + [SMALL_STATE(1838)] = 22201, + [SMALL_STATE(1839)] = 22217, + [SMALL_STATE(1840)] = 22233, + [SMALL_STATE(1841)] = 22249, + [SMALL_STATE(1842)] = 22265, + [SMALL_STATE(1843)] = 22281, + [SMALL_STATE(1844)] = 22297, + [SMALL_STATE(1845)] = 22313, + [SMALL_STATE(1846)] = 22329, + [SMALL_STATE(1847)] = 22345, + [SMALL_STATE(1848)] = 22359, + [SMALL_STATE(1849)] = 22375, + [SMALL_STATE(1850)] = 22391, + [SMALL_STATE(1851)] = 22407, + [SMALL_STATE(1852)] = 22423, + [SMALL_STATE(1853)] = 22439, + [SMALL_STATE(1854)] = 22453, + [SMALL_STATE(1855)] = 22469, + [SMALL_STATE(1856)] = 22485, + [SMALL_STATE(1857)] = 22501, + [SMALL_STATE(1858)] = 22517, + [SMALL_STATE(1859)] = 22533, + [SMALL_STATE(1860)] = 22549, + [SMALL_STATE(1861)] = 22565, + [SMALL_STATE(1862)] = 22581, + [SMALL_STATE(1863)] = 22597, + [SMALL_STATE(1864)] = 22613, + [SMALL_STATE(1865)] = 22629, + [SMALL_STATE(1866)] = 22643, + [SMALL_STATE(1867)] = 22659, + [SMALL_STATE(1868)] = 22675, + [SMALL_STATE(1869)] = 22691, + [SMALL_STATE(1870)] = 22703, + [SMALL_STATE(1871)] = 22719, + [SMALL_STATE(1872)] = 22735, + [SMALL_STATE(1873)] = 22751, + [SMALL_STATE(1874)] = 22767, + [SMALL_STATE(1875)] = 22783, + [SMALL_STATE(1876)] = 22799, + [SMALL_STATE(1877)] = 22815, + [SMALL_STATE(1878)] = 22831, + [SMALL_STATE(1879)] = 22845, + [SMALL_STATE(1880)] = 22861, + [SMALL_STATE(1881)] = 22877, + [SMALL_STATE(1882)] = 22893, + [SMALL_STATE(1883)] = 22909, + [SMALL_STATE(1884)] = 22925, + [SMALL_STATE(1885)] = 22941, + [SMALL_STATE(1886)] = 22957, + [SMALL_STATE(1887)] = 22973, + [SMALL_STATE(1888)] = 22989, + [SMALL_STATE(1889)] = 23005, + [SMALL_STATE(1890)] = 23021, + [SMALL_STATE(1891)] = 23037, + [SMALL_STATE(1892)] = 23053, + [SMALL_STATE(1893)] = 23069, + [SMALL_STATE(1894)] = 23085, + [SMALL_STATE(1895)] = 23101, + [SMALL_STATE(1896)] = 23117, + [SMALL_STATE(1897)] = 23133, + [SMALL_STATE(1898)] = 23149, + [SMALL_STATE(1899)] = 23163, + [SMALL_STATE(1900)] = 23177, + [SMALL_STATE(1901)] = 23193, + [SMALL_STATE(1902)] = 23209, + [SMALL_STATE(1903)] = 23219, + [SMALL_STATE(1904)] = 23235, + [SMALL_STATE(1905)] = 23251, + [SMALL_STATE(1906)] = 23267, + [SMALL_STATE(1907)] = 23283, + [SMALL_STATE(1908)] = 23299, + [SMALL_STATE(1909)] = 23315, + [SMALL_STATE(1910)] = 23331, + [SMALL_STATE(1911)] = 23347, + [SMALL_STATE(1912)] = 23363, + [SMALL_STATE(1913)] = 23379, + [SMALL_STATE(1914)] = 23393, + [SMALL_STATE(1915)] = 23407, + [SMALL_STATE(1916)] = 23423, + [SMALL_STATE(1917)] = 23439, + [SMALL_STATE(1918)] = 23455, + [SMALL_STATE(1919)] = 23471, + [SMALL_STATE(1920)] = 23487, + [SMALL_STATE(1921)] = 23503, + [SMALL_STATE(1922)] = 23519, + [SMALL_STATE(1923)] = 23529, + [SMALL_STATE(1924)] = 23543, + [SMALL_STATE(1925)] = 23559, + [SMALL_STATE(1926)] = 23573, + [SMALL_STATE(1927)] = 23587, + [SMALL_STATE(1928)] = 23601, + [SMALL_STATE(1929)] = 23615, + [SMALL_STATE(1930)] = 23631, + [SMALL_STATE(1931)] = 23647, + [SMALL_STATE(1932)] = 23663, + [SMALL_STATE(1933)] = 23679, + [SMALL_STATE(1934)] = 23695, + [SMALL_STATE(1935)] = 23711, + [SMALL_STATE(1936)] = 23721, + [SMALL_STATE(1937)] = 23737, + [SMALL_STATE(1938)] = 23753, + [SMALL_STATE(1939)] = 23769, + [SMALL_STATE(1940)] = 23785, + [SMALL_STATE(1941)] = 23801, + [SMALL_STATE(1942)] = 23815, + [SMALL_STATE(1943)] = 23831, + [SMALL_STATE(1944)] = 23847, + [SMALL_STATE(1945)] = 23857, + [SMALL_STATE(1946)] = 23871, + [SMALL_STATE(1947)] = 23885, + [SMALL_STATE(1948)] = 23901, + [SMALL_STATE(1949)] = 23917, + [SMALL_STATE(1950)] = 23933, + [SMALL_STATE(1951)] = 23949, + [SMALL_STATE(1952)] = 23965, + [SMALL_STATE(1953)] = 23981, + [SMALL_STATE(1954)] = 23997, + [SMALL_STATE(1955)] = 24013, + [SMALL_STATE(1956)] = 24029, + [SMALL_STATE(1957)] = 24045, + [SMALL_STATE(1958)] = 24057, + [SMALL_STATE(1959)] = 24066, + [SMALL_STATE(1960)] = 24079, + [SMALL_STATE(1961)] = 24092, + [SMALL_STATE(1962)] = 24105, + [SMALL_STATE(1963)] = 24118, + [SMALL_STATE(1964)] = 24131, + [SMALL_STATE(1965)] = 24144, + [SMALL_STATE(1966)] = 24157, + [SMALL_STATE(1967)] = 24170, + [SMALL_STATE(1968)] = 24183, + [SMALL_STATE(1969)] = 24196, + [SMALL_STATE(1970)] = 24209, + [SMALL_STATE(1971)] = 24222, + [SMALL_STATE(1972)] = 24235, + [SMALL_STATE(1973)] = 24248, + [SMALL_STATE(1974)] = 24257, + [SMALL_STATE(1975)] = 24270, + [SMALL_STATE(1976)] = 24283, + [SMALL_STATE(1977)] = 24292, + [SMALL_STATE(1978)] = 24305, + [SMALL_STATE(1979)] = 24318, + [SMALL_STATE(1980)] = 24331, + [SMALL_STATE(1981)] = 24344, + [SMALL_STATE(1982)] = 24355, + [SMALL_STATE(1983)] = 24368, + [SMALL_STATE(1984)] = 24381, + [SMALL_STATE(1985)] = 24394, + [SMALL_STATE(1986)] = 24407, + [SMALL_STATE(1987)] = 24420, + [SMALL_STATE(1988)] = 24433, + [SMALL_STATE(1989)] = 24446, + [SMALL_STATE(1990)] = 24459, + [SMALL_STATE(1991)] = 24472, + [SMALL_STATE(1992)] = 24481, + [SMALL_STATE(1993)] = 24494, + [SMALL_STATE(1994)] = 24507, + [SMALL_STATE(1995)] = 24520, + [SMALL_STATE(1996)] = 24533, + [SMALL_STATE(1997)] = 24546, + [SMALL_STATE(1998)] = 24559, + [SMALL_STATE(1999)] = 24572, + [SMALL_STATE(2000)] = 24585, + [SMALL_STATE(2001)] = 24594, + [SMALL_STATE(2002)] = 24607, + [SMALL_STATE(2003)] = 24620, + [SMALL_STATE(2004)] = 24633, + [SMALL_STATE(2005)] = 24646, + [SMALL_STATE(2006)] = 24655, + [SMALL_STATE(2007)] = 24664, + [SMALL_STATE(2008)] = 24677, + [SMALL_STATE(2009)] = 24690, + [SMALL_STATE(2010)] = 24699, + [SMALL_STATE(2011)] = 24712, + [SMALL_STATE(2012)] = 24721, + [SMALL_STATE(2013)] = 24734, + [SMALL_STATE(2014)] = 24747, + [SMALL_STATE(2015)] = 24760, + [SMALL_STATE(2016)] = 24773, + [SMALL_STATE(2017)] = 24786, + [SMALL_STATE(2018)] = 24799, + [SMALL_STATE(2019)] = 24812, + [SMALL_STATE(2020)] = 24825, + [SMALL_STATE(2021)] = 24838, + [SMALL_STATE(2022)] = 24851, + [SMALL_STATE(2023)] = 24864, + [SMALL_STATE(2024)] = 24877, + [SMALL_STATE(2025)] = 24890, + [SMALL_STATE(2026)] = 24903, + [SMALL_STATE(2027)] = 24916, + [SMALL_STATE(2028)] = 24929, + [SMALL_STATE(2029)] = 24942, + [SMALL_STATE(2030)] = 24955, + [SMALL_STATE(2031)] = 24968, + [SMALL_STATE(2032)] = 24981, + [SMALL_STATE(2033)] = 24994, + [SMALL_STATE(2034)] = 25007, + [SMALL_STATE(2035)] = 25020, + [SMALL_STATE(2036)] = 25033, + [SMALL_STATE(2037)] = 25046, + [SMALL_STATE(2038)] = 25055, + [SMALL_STATE(2039)] = 25068, + [SMALL_STATE(2040)] = 25081, + [SMALL_STATE(2041)] = 25094, + [SMALL_STATE(2042)] = 25107, + [SMALL_STATE(2043)] = 25120, + [SMALL_STATE(2044)] = 25129, + [SMALL_STATE(2045)] = 25142, + [SMALL_STATE(2046)] = 25155, + [SMALL_STATE(2047)] = 25168, + [SMALL_STATE(2048)] = 25181, + [SMALL_STATE(2049)] = 25190, + [SMALL_STATE(2050)] = 25203, + [SMALL_STATE(2051)] = 25216, + [SMALL_STATE(2052)] = 25229, + [SMALL_STATE(2053)] = 25242, + [SMALL_STATE(2054)] = 25255, + [SMALL_STATE(2055)] = 25268, + [SMALL_STATE(2056)] = 25281, + [SMALL_STATE(2057)] = 25294, + [SMALL_STATE(2058)] = 25307, + [SMALL_STATE(2059)] = 25320, + [SMALL_STATE(2060)] = 25333, + [SMALL_STATE(2061)] = 25346, + [SMALL_STATE(2062)] = 25359, + [SMALL_STATE(2063)] = 25368, + [SMALL_STATE(2064)] = 25381, + [SMALL_STATE(2065)] = 25390, + [SMALL_STATE(2066)] = 25403, + [SMALL_STATE(2067)] = 25416, + [SMALL_STATE(2068)] = 25429, + [SMALL_STATE(2069)] = 25442, + [SMALL_STATE(2070)] = 25455, + [SMALL_STATE(2071)] = 25468, + [SMALL_STATE(2072)] = 25481, + [SMALL_STATE(2073)] = 25494, + [SMALL_STATE(2074)] = 25507, + [SMALL_STATE(2075)] = 25520, + [SMALL_STATE(2076)] = 25533, + [SMALL_STATE(2077)] = 25546, + [SMALL_STATE(2078)] = 25559, + [SMALL_STATE(2079)] = 25572, + [SMALL_STATE(2080)] = 25585, + [SMALL_STATE(2081)] = 25598, + [SMALL_STATE(2082)] = 25611, + [SMALL_STATE(2083)] = 25620, + [SMALL_STATE(2084)] = 25633, + [SMALL_STATE(2085)] = 25646, + [SMALL_STATE(2086)] = 25659, + [SMALL_STATE(2087)] = 25672, + [SMALL_STATE(2088)] = 25685, + [SMALL_STATE(2089)] = 25698, + [SMALL_STATE(2090)] = 25711, + [SMALL_STATE(2091)] = 25724, + [SMALL_STATE(2092)] = 25732, + [SMALL_STATE(2093)] = 25740, + [SMALL_STATE(2094)] = 25750, + [SMALL_STATE(2095)] = 25760, + [SMALL_STATE(2096)] = 25770, + [SMALL_STATE(2097)] = 25780, + [SMALL_STATE(2098)] = 25790, + [SMALL_STATE(2099)] = 25798, + [SMALL_STATE(2100)] = 25808, + [SMALL_STATE(2101)] = 25816, + [SMALL_STATE(2102)] = 25826, + [SMALL_STATE(2103)] = 25836, + [SMALL_STATE(2104)] = 25846, + [SMALL_STATE(2105)] = 25856, + [SMALL_STATE(2106)] = 25866, + [SMALL_STATE(2107)] = 25876, + [SMALL_STATE(2108)] = 25886, + [SMALL_STATE(2109)] = 25896, + [SMALL_STATE(2110)] = 25906, + [SMALL_STATE(2111)] = 25916, + [SMALL_STATE(2112)] = 25926, + [SMALL_STATE(2113)] = 25936, + [SMALL_STATE(2114)] = 25946, + [SMALL_STATE(2115)] = 25956, + [SMALL_STATE(2116)] = 25966, + [SMALL_STATE(2117)] = 25976, + [SMALL_STATE(2118)] = 25984, + [SMALL_STATE(2119)] = 25994, + [SMALL_STATE(2120)] = 26002, + [SMALL_STATE(2121)] = 26012, + [SMALL_STATE(2122)] = 26022, + [SMALL_STATE(2123)] = 26030, + [SMALL_STATE(2124)] = 26040, + [SMALL_STATE(2125)] = 26050, + [SMALL_STATE(2126)] = 26060, + [SMALL_STATE(2127)] = 26067, + [SMALL_STATE(2128)] = 26074, + [SMALL_STATE(2129)] = 26081, + [SMALL_STATE(2130)] = 26088, + [SMALL_STATE(2131)] = 26095, + [SMALL_STATE(2132)] = 26102, + [SMALL_STATE(2133)] = 26109, + [SMALL_STATE(2134)] = 26116, + [SMALL_STATE(2135)] = 26123, + [SMALL_STATE(2136)] = 26130, + [SMALL_STATE(2137)] = 26137, + [SMALL_STATE(2138)] = 26144, + [SMALL_STATE(2139)] = 26151, + [SMALL_STATE(2140)] = 26158, + [SMALL_STATE(2141)] = 26165, + [SMALL_STATE(2142)] = 26172, + [SMALL_STATE(2143)] = 26179, + [SMALL_STATE(2144)] = 26186, + [SMALL_STATE(2145)] = 26193, + [SMALL_STATE(2146)] = 26200, + [SMALL_STATE(2147)] = 26207, + [SMALL_STATE(2148)] = 26214, + [SMALL_STATE(2149)] = 26221, + [SMALL_STATE(2150)] = 26228, + [SMALL_STATE(2151)] = 26235, + [SMALL_STATE(2152)] = 26242, + [SMALL_STATE(2153)] = 26249, + [SMALL_STATE(2154)] = 26256, + [SMALL_STATE(2155)] = 26263, + [SMALL_STATE(2156)] = 26270, + [SMALL_STATE(2157)] = 26277, + [SMALL_STATE(2158)] = 26284, + [SMALL_STATE(2159)] = 26291, + [SMALL_STATE(2160)] = 26298, + [SMALL_STATE(2161)] = 26305, + [SMALL_STATE(2162)] = 26312, + [SMALL_STATE(2163)] = 26319, + [SMALL_STATE(2164)] = 26326, + [SMALL_STATE(2165)] = 26333, + [SMALL_STATE(2166)] = 26340, + [SMALL_STATE(2167)] = 26347, + [SMALL_STATE(2168)] = 26354, + [SMALL_STATE(2169)] = 26361, + [SMALL_STATE(2170)] = 26368, + [SMALL_STATE(2171)] = 26375, + [SMALL_STATE(2172)] = 26382, + [SMALL_STATE(2173)] = 26389, + [SMALL_STATE(2174)] = 26396, + [SMALL_STATE(2175)] = 26403, + [SMALL_STATE(2176)] = 26410, + [SMALL_STATE(2177)] = 26417, + [SMALL_STATE(2178)] = 26424, + [SMALL_STATE(2179)] = 26431, + [SMALL_STATE(2180)] = 26438, + [SMALL_STATE(2181)] = 26445, + [SMALL_STATE(2182)] = 26452, + [SMALL_STATE(2183)] = 26459, + [SMALL_STATE(2184)] = 26466, + [SMALL_STATE(2185)] = 26473, + [SMALL_STATE(2186)] = 26480, + [SMALL_STATE(2187)] = 26487, + [SMALL_STATE(2188)] = 26494, + [SMALL_STATE(2189)] = 26501, + [SMALL_STATE(2190)] = 26508, + [SMALL_STATE(2191)] = 26515, + [SMALL_STATE(2192)] = 26522, + [SMALL_STATE(2193)] = 26529, + [SMALL_STATE(2194)] = 26536, + [SMALL_STATE(2195)] = 26543, + [SMALL_STATE(2196)] = 26550, + [SMALL_STATE(2197)] = 26557, + [SMALL_STATE(2198)] = 26564, + [SMALL_STATE(2199)] = 26571, + [SMALL_STATE(2200)] = 26578, + [SMALL_STATE(2201)] = 26585, + [SMALL_STATE(2202)] = 26592, + [SMALL_STATE(2203)] = 26599, + [SMALL_STATE(2204)] = 26606, + [SMALL_STATE(2205)] = 26613, + [SMALL_STATE(2206)] = 26620, + [SMALL_STATE(2207)] = 26627, + [SMALL_STATE(2208)] = 26634, + [SMALL_STATE(2209)] = 26641, + [SMALL_STATE(2210)] = 26648, + [SMALL_STATE(2211)] = 26655, + [SMALL_STATE(2212)] = 26662, + [SMALL_STATE(2213)] = 26669, + [SMALL_STATE(2214)] = 26676, + [SMALL_STATE(2215)] = 26683, + [SMALL_STATE(2216)] = 26690, + [SMALL_STATE(2217)] = 26697, + [SMALL_STATE(2218)] = 26704, + [SMALL_STATE(2219)] = 26711, + [SMALL_STATE(2220)] = 26718, + [SMALL_STATE(2221)] = 26725, + [SMALL_STATE(2222)] = 26732, + [SMALL_STATE(2223)] = 26739, + [SMALL_STATE(2224)] = 26746, + [SMALL_STATE(2225)] = 26753, + [SMALL_STATE(2226)] = 26760, + [SMALL_STATE(2227)] = 26767, + [SMALL_STATE(2228)] = 26774, + [SMALL_STATE(2229)] = 26781, + [SMALL_STATE(2230)] = 26788, + [SMALL_STATE(2231)] = 26795, + [SMALL_STATE(2232)] = 26802, + [SMALL_STATE(2233)] = 26809, + [SMALL_STATE(2234)] = 26816, + [SMALL_STATE(2235)] = 26823, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -144283,2571 +146485,2636 @@ 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(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(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(316), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [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(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(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), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), + [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 56), + [281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 56), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(444), + [296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), + [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(2105), + [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(1352), + [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(1326), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(697), + [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(437), + [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(444), + [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(2105), + [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(1352), + [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(1326), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(697), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(437), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), + [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 5, 0, 56), + [341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), + [343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 5, 0, 56), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(444), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(2105), + [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(1352), + [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(1326), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(697), + [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(437), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [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(444), + [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(2105), + [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(1352), + [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(1326), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(697), + [390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(437), + [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 5, 0, 88), + [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 5, 0, 88), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 6, 0, 88), + [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 6, 0, 88), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(385), + [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2094), + [445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(851), + [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1952), + [451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(909), + [454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(89), + [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), + [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(765), + [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(714), + [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(437), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(534), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(669), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1009), + [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1010), + [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(343), + [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(26), + [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(852), + [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(966), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(995), + [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(996), + [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(851), + [501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2169), + [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(474), + [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(476), + [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(400), + [513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(476), + [516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1817), + [519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(50), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(444), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2105), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym_qualified_identifier, 1, 0, 2), + [859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1352), + [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1326), + [867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(697), + [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(437), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2203), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), + [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), + [916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1372), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 0), + [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 0), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 1, 0, 0), + [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_type, 1, 0, 0), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 3, 0, 17), + [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 17), + [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 96), + [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 96), + [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 125), + [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 125), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 126), + [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 126), + [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 127), + [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 127), + [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 128), + [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 128), + [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 129), + [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 129), + [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 7, 0, 130), + [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 7, 0, 130), + [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 95), + [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 95), + [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 97), + [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 97), + [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 98), + [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 98), + [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 31), + [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 31), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 14), + [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 14), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 157), + [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 157), + [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 99), + [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 99), + [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 7), + [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 7), + [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 158), + [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 158), + [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 159), + [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 159), + [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 8, 0, 160), + [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 8, 0, 160), + [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 7, 0, 0), + [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 7, 0, 0), + [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), + [1023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), + [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 2, 0, 0), + [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 2, 0, 0), + [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 4, 0, 39), + [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 4, 0, 39), + [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 4, 0, 40), + [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 4, 0, 40), + [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 6, 0, 100), + [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 6, 0, 100), + [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_body, 3, 0, 0), + [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 0), + [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [1051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 9, 0, 187), + [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 9, 0, 187), + [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 9, 0, 188), + [1059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 9, 0, 188), + [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 8, 0, 0), + [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 8, 0, 0), + [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 3, 0, 23), + [1067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 3, 0, 23), + [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_body, 2, 0, 0), + [1071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 0), + [1073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_builtin_type, 1, 0, 0), + [1075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_builtin_type, 1, 0, 0), + [1077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 6, 0, 0), + [1079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 6, 0, 0), + [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [1083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), + [1085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), + [1087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), + [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 6, 0, 75), + [1091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 6, 0, 75), + [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 3, 0, 0), + [1095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 3, 0, 0), + [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), + [1099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), + [1101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 1, 0, 2), + [1103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 1, 0, 2), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [1107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [1109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [1111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 4, 0, 54), + [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 4, 0, 54), + [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 37), + [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 37), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 66), + [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 66), + [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 67), + [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 67), + [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 68), + [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 68), + [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 69), + [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 69), + [1137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 5, 0, 0), + [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 5, 0, 0), + [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 0), + [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 0), + [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 92), + [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 92), + [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), + [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_type, 2, 0, 0), + [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 2, 0, 0), + [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_type, 2, 0, 0), + [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_type, 5, 0, 75), + [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_type, 5, 0, 75), + [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2, 0, 0), + [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2, 0, 0), + [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 62), + [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 62), + [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 16), + [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 16), + [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 6, 0, 0), + [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 6, 0, 0), + [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, 0, 73), + [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, 0, 73), + [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 8, 0, 0), + [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 8, 0, 0), + [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 33), + [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 33), + [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comptime_block, 2, 0, 0), + [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comptime_block, 2, 0, 0), + [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 6, 0, 105), + [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 6, 0, 105), + [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_type, 2, 0, 0), + [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_type, 2, 0, 0), + [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), + [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), + [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_type, 3, 0, 0), + [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_type, 3, 0, 0), + [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_literal, 3, 0, 34), + [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_literal, 3, 0, 34), + [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 8, 0, 162), + [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 8, 0, 162), + [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 8, 0, 0), + [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 8, 0, 0), + [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1, 0, 0), + [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1, 0, 0), + [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 6, 0, 0), + [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 6, 0, 0), + [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2, 0, 10), + [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2, 0, 10), + [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 7, 0, 134), + [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 7, 0, 134), + [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 5, 0, 0), + [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 5, 0, 0), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 3, 0, 0), + [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 3, 0, 0), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 119), + [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 119), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 2, 0, 0), + [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 2, 0, 0), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 120), + [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 120), + [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, 0, 55), + [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, 0, 55), [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), + [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 154), + [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 154), + [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 7, 0, 121), + [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 7, 0, 121), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, 0, 45), + [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, 0, 45), + [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_expression, 7, 0, 155), + [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_expression, 7, 0, 155), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 6, 0, 0), + [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 6, 0, 0), + [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 6, 0, 0), + [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 6, 0, 0), + [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 8, 0, 0), + [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 8, 0, 0), + [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 7, 0, 133), + [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 7, 0, 133), + [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 6, 0, 104), + [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 6, 0, 104), + [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 5, 0, 0), + [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 5, 0, 0), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, 0, 86), + [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, 0, 86), + [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comptime_block, 3, 0, 0), + [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comptime_block, 3, 0, 0), + [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 11), + [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 11), + [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 4, 0, 0), + [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 4, 0, 0), + [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 86), + [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 86), + [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 119), + [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 119), + [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 87), + [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 87), + [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_literal, 2, 0, 12), + [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_literal, 2, 0, 12), + [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 120), + [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 120), + [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 55), + [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 55), + [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 6, 0, 121), + [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 6, 0, 121), + [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 8, 0, 154), + [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 8, 0, 154), + [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_expression, 6, 0, 122), + [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_expression, 6, 0, 122), + [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), + [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), [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), + [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, 0, 55), + [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, 0, 55), + [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 5, 0, 87), + [1391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 5, 0, 87), + [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_literal, 7, 0, 0), + [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_literal, 7, 0, 0), + [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_literal, 3, 0, 9), + [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_literal, 3, 0, 9), + [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intrinsic_call_expression, 3, 0, 29), + [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intrinsic_call_expression, 3, 0, 29), [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(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(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(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(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 = 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), + [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), + [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_payload, 7, 0, 0), + [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_payload, 7, 0, 0), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, 0, 74), + [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, 0, 74), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1, 0, 0), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_literal, 2, 0, 9), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_literal, 2, 0, 9), + [1435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_literal, 2, 0, 9), SHIFT(735), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 32), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 32), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 4, 0, 57), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 4, 0, 57), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), + [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), + [1602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(690), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [1719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(670), + [1722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2094), + [1725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(821), + [1728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1952), + [1731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(909), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), + [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(770), + [1739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(718), + [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(437), + [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2030), + [1748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(821), + [1751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2173), + [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(474), + [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(476), + [1760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(476), + [1763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1817), + [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(722), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), + [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1, 0, 0), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1, 0, 0), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 148), + [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 148), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 230), + [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 230), + [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 231), + [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 231), + [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 232), + [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 232), + [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 233), + [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 233), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 46), + [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 46), + [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 46), + [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 46), + [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 3, 0, 47), + [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 3, 0, 47), + [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 3, 0, 48), + [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 3, 0, 48), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 3, 0, 4), + [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 3, 0, 4), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 234), + [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 234), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, 0, 31), + [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, 0, 31), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 111), + [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 111), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 115), + [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 115), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 112), + [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 112), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 116), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 116), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 235), + [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 235), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 236), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 236), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 117), + [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 117), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 51), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 51), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 52), + [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 52), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 237), + [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 237), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 238), + [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 238), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 239), + [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 239), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 136), + [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 136), + [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 137), + [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 137), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 53), + [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 53), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 240), + [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 240), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 241), + [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 241), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 242), + [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 242), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 243), + [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 243), + [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 244), + [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 244), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 245), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 245), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, 0, 246), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, 0, 246), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 247), + [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 247), + [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 248), + [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 248), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 138), + [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 138), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 139), + [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 139), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 249), + [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 249), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 250), + [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 250), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 251), + [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 251), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 252), + [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 252), + [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 253), + [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 253), + [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 254), + [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 254), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 255), + [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 255), + [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 256), + [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 256), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 257), + [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 257), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 140), + [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 140), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_block, 4, 0, 30), + [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_block, 4, 0, 30), + [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 258), + [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 258), + [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 141), + [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 141), + [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 142), + [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 142), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 259), + [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 259), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 260), + [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 260), + [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 143), + [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 143), + [2355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 2, 0, 0), SHIFT(1326), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 261), + [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 261), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 11, 0, 262), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 11, 0, 262), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 263), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 263), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 264), + [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 264), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 144), + [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 144), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 265), + [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 265), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 266), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 266), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 267), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 267), + [2390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 3, 0, 0), SHIFT(1326), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 268), + [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 268), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 269), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 269), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 270), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 270), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 271), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 271), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 272), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 272), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 273), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 273), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 274), + [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 274), + [2421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 4, 0, 0), SHIFT(1326), + [2424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_literal, 5, 0, 0), SHIFT(1326), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 275), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 275), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, 0, 276), + [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, 0, 276), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 145), + [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 145), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 146), + [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 146), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 277), + [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 277), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 7, 0, 147), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 7, 0, 147), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 278), + [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 278), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 279), + [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 279), + [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 149), + [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 149), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 150), + [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 150), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 151), + [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 151), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 280), + [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 280), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 281), + [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 281), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 282), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 282), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 283), + [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 283), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 284), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 284), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 285), + [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 285), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 286), + [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 286), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 287), + [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 287), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 288), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 288), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 289), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 289), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 290), + [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 290), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 12, 0, 291), + [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 12, 0, 291), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 292), + [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 292), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 293), + [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 293), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 294), + [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 294), + [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 295), + [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 295), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 296), + [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 296), + [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 297), + [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 297), + [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 298), + [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 298), + [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 299), + [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 299), + [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 206), + [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 206), + [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 7, 0, 85), + [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 7, 0, 85), + [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 300), + [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 300), + [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 301), + [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 301), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 302), + [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 302), + [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, 0, 303), + [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, 0, 303), + [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 304), + [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 304), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 305), + [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 305), + [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 306), + [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 306), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 307), + [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 307), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 308), + [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 308), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 4, 0, 76), + [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 4, 0, 76), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 309), + [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 309), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 310), + [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 310), + [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 311), + [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 311), + [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 312), + [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 312), + [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 229), + [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 229), + [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 314), + [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 314), + [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 315), + [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 315), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 316), + [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 316), + [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 4, 0, 77), + [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 4, 0, 77), + [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 4, 0, 78), + [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 4, 0, 78), + [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 53), + [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 53), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 164), + [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 164), + [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 165), + [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 165), + [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 166), + [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 166), + [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, 0, 13), + [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, 0, 13), + [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 167), + [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 167), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 317), + [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 317), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 318), + [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 318), + [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 319), + [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 319), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 320), + [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 320), + [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 321), + [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 321), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, 0, 322), + [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, 0, 322), + [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 323), + [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 323), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 324), + [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 324), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 325), + [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 325), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 168), + [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 168), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 326), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 326), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 4, 0, 18), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 4, 0, 18), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 169), + [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 169), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 18), + [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 18), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 170), + [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 170), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 14, 0, 327), + [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 14, 0, 327), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 4, 0, 54), + [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 4, 0, 54), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 171), + [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 171), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 172), + [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 172), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 173), + [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 173), + [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 174), + [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 174), + [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 328), + [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 328), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 175), + [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 175), + [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 176), + [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 176), + [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 177), + [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 177), + [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 329), + [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 329), + [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 330), + [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 330), + [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, 0, 331), + [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, 0, 331), + [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 15, 0, 332), + [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 15, 0, 332), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 8, 0, 178), + [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 8, 0, 178), + [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, 0, 333), + [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, 0, 333), + [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 80), + [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 80), + [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 179), + [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 179), + [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 82), + [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 82), + [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 207), + [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 207), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 180), + [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 180), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 83), + [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 83), + [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 181), + [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 181), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 85), + [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 85), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 208), + [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 208), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 113), + [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 113), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 182), + [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 182), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 209), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 209), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 183), + [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 183), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 184), + [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 184), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 210), + [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 210), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 84), + [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 84), + [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 211), + [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 211), + [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 212), + [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 212), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 213), + [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 213), + [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 214), + [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 214), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 53), + [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 53), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 85), + [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 85), + [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 25), + [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 25), + [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 215), + [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 215), + [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 2, 0, 25), + [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 2, 0, 25), + [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 189), + [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 189), + [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 114), + [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 114), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 190), + [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 190), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 2, 0, 26), + [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 2, 0, 26), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 9, 0, 191), + [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 9, 0, 191), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 10, 0, 217), + [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 10, 0, 217), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 218), + [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 218), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 192), + [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 192), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 219), + [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 219), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 193), + [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 193), + [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 194), + [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 194), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 195), + [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 195), + [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 196), + [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 196), + [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 220), + [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 220), + [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 197), + [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 197), + [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 221), + [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 221), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 222), + [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 222), + [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 198), + [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 198), + [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 223), + [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 223), + [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 28), + [2969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 28), + [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 199), + [2973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 199), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_block, 3, 0, 30), + [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_block, 3, 0, 30), + [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 224), + [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 224), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 225), + [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 225), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 200), + [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 200), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 201), + [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 201), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 202), + [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 202), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 226), + [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 226), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 227), + [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 227), + [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 5, 0, 106), + [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 5, 0, 106), + [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_declaration, 5, 0, 41), + [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_declaration, 5, 0, 41), + [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 41), + [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 41), + [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 203), + [3021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 203), + [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 10, 0, 228), + [3025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 10, 0, 228), + [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 204), + [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 204), + [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 9, 0, 205), + [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 9, 0, 205), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 107), + [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 107), + [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 108), + [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 108), + [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 110), + [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 110), + [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 13, 0, 313), + [3049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 13, 0, 313), + [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 109), + [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 109), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [3057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 109), SHIFT(2007), + [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 27), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 27), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [3066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 27), SHIFT(1988), + [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 81), + [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 81), + [3073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 81), SHIFT(266), + [3076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 81), SHIFT(2028), + [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 50), + [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 50), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [3085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 50), SHIFT(1975), + [3088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 79), + [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 79), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [3094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 79), SHIFT(1982), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [3099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 81), SHIFT(1984), + [3102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 49), + [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 49), + [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [3108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 49), SHIFT(1965), + [3111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 49), SHIFT(258), + [3114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 49), SHIFT(2025), + [3117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 109), SHIFT(274), + [3120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 109), SHIFT(2029), + [3123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 79), SHIFT(264), + [3126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 79), SHIFT(2027), + [3129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 27), SHIFT(257), + [3132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 27), SHIFT(2024), + [3135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 50), SHIFT(261), + [3138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 50), SHIFT(2026), + [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 3, 0, 0), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3, 0, 0), + [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_error_capture, 3, 0, 0), + [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_error_capture, 3, 0, 0), + [3149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 6, 0, 163), + [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 6, 0, 163), + [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 4, 0, 0), + [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4, 0, 0), + [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_capture_list, 5, 0, 135), + [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 5, 0, 135), + [3161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1260), + [3164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(1321), + [3167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_declaration_repeat1, 2, 0, 0), SHIFT(1325), + [3170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 79), SHIFT(163), + [3173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 79), SHIFT(2002), + [3176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 81), SHIFT(164), + [3179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 81), SHIFT(2003), + [3182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 50), SHIFT(160), + [3185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 50), SHIFT(2001), + [3188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 109), SHIFT(172), + [3191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 109), SHIFT(2004), + [3194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 49), SHIFT(156), + [3197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 49), SHIFT(1999), + [3200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 27), SHIFT(153), + [3203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 27), SHIFT(1989), + [3206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 153), + [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 153), + [3210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 6, 0, 216), + [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 6, 0, 216), + [3214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 185), + [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 185), + [3218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 118), + [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 118), + [3222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 186), + [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 186), + [3226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 152), + [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 152), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 61), + [3306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 61), SHIFT_REPEAT(1878), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 61), + [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 3, 0, 90), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 3, 0, 90), + [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 8, 0, 0), + [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 8, 0, 0), + [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 7, 0, 0), + [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 7, 0, 0), + [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 6, 0, 0), + [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 6, 0, 0), + [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 5, 0, 0), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 5, 0, 0), + [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), + [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 9), + [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 9), + [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), + [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [3421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(525), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [3430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(2060), + [3433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(478), + [3436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(2044), + [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [3585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1899), + [3588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1327), + [3591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2036), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1928), + [3607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1320), + [3610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2050), + [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 3, 0, 0), + [3615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1847), + [3618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1305), + [3621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2052), + [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 4, 0, 0), + [3626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1926), + [3629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(1319), + [3632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(2042), + [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 3, 0, 4), + [3637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 3, 0, 4), + [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, 0, 19), + [3641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, 0, 19), + [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, 0, 13), + [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, 0, 13), + [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, 0, 5), + [3649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, 0, 5), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), [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(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(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), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 13), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyed_field_initializer, 4, 0, 13), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 4), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 15), + [3731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 15), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [3735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 15), SHIFT(1892), + [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [3744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1291), + [3747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1915), + [3750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2230), + [3753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1512), + [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 43), + [3758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 43), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [3762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 43), SHIFT(1783), + [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 38), + [3767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 38), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [3771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 38), SHIFT(1948), + [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 20), + [3776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 20), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [3780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 20), SHIFT(1908), + [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 93), + [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 93), + [3787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 93), SHIFT(1808), + [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 63), + [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 63), + [3794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 63), SHIFT(1889), + [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 70), + [3799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 70), + [3801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 70), SHIFT(1924), + [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 102), + [3806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 102), + [3808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 102), SHIFT(1864), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [3855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 81), SHIFT(2077), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [3862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 109), SHIFT(250), + [3865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 109), SHIFT(2059), + [3868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 27), SHIFT(233), + [3871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 27), SHIFT(2053), + [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [3876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 49), SHIFT(1961), + [3879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 49), SHIFT(234), + [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 49), SHIFT(2055), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 50), SHIFT(1967), + [3890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 50), SHIFT(237), + [3893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 50), SHIFT(2056), + [3896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 79), SHIFT(240), + [3899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 79), SHIFT(2057), + [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [3904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 27), SHIFT(1985), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [3911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 79), SHIFT(2074), + [3914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 81), SHIFT(242), + [3917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 81), SHIFT(2058), + [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [3922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 109), SHIFT(1980), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [3933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(939), + [3936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(2051), + [3939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(940), + [3942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(2054), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [3949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1836), + [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), + [3954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2073), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_distinct_type, 2, 0, 8), + [3963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_distinct_type, 2, 0, 8), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 5, 0, 21), + [3969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 5, 0, 21), + [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 64), + [3973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 64), + [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 65), + [3977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 65), + [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_type, 2, 0, 8), + [3981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_type, 2, 0, 8), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 22), + [3989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 22), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 3, 0, 4), + [4011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 3, 0, 4), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [4021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 27), SHIFT(1971), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 156), + [4042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 156), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_struct_type, 3, 0, 0), + [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_struct_type, 3, 0, 0), + [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [4056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 49), SHIFT(1983), + [4059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 71), + [4061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 71), + [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [4065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 50), SHIFT(1995), + [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 72), + [4070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 72), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [4074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 79), SHIFT(1996), + [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [4079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 81), SHIFT(1998), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [4084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 109), SHIFT(2010), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 10, 0, 161), + [4097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 10, 0, 161), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [4113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 27), SHIFT(281), + [4116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 27), SHIFT(2090), + [4119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 49), SHIFT(282), + [4122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 49), SHIFT(2031), + [4125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 50), SHIFT(285), + [4128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 50), SHIFT(2032), + [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 1, 0, 24), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [4135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 5, 0, 19), + [4137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 5, 0, 19), + [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 123), + [4141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 123), + [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 124), + [4145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 124), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 4, 0, 18), + [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 4, 0, 18), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [4187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 79), SHIFT(288), + [4190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 79), SHIFT(2033), + [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 2, 0, 1), + [4195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 2, 0, 1), + [4197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 81), SHIFT(290), + [4200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 81), SHIFT(2034), + [4203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 109), SHIFT(298), + [4206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 109), SHIFT(2035), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [4221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 2, 0, 0), SHIFT_REPEAT(1739), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 2, 0, 0), + [4226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 2, 0, 0), SHIFT_REPEAT(2045), + [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 4, 0, 18), + [4231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 4, 0, 18), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 4, 0, 13), + [4241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 4, 0, 13), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 5, 0, 21), + [4247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 5, 0, 21), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 3), + [4265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 3), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 131), + [4285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 131), + [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 132), + [4289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 132), + [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 3, 0, 4), + [4293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 3, 0, 4), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [4325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), + [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), + [4330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1978), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 91), + [4353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 91), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 94), + [4361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 94), + [4363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 36), + [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 36), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 4, 0, 5), + [4373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 4, 0, 5), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 5, 0, 41), + [4381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 5, 0, 41), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 5, 0, 41), + [4389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 5, 0, 41), + [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 4, 0, 5), + [4393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 4, 0, 5), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 42), + [4399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 42), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 6, 0, 44), + [4407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 6, 0, 44), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_variable_declaration, 6, 0, 44), + [4415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_variable_declaration, 6, 0, 44), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [4451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1287), + [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), + [4456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1703), + [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 101), + [4461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 101), + [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 6, 0, 58), + [4465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 6, 0, 58), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 103), + [4471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 103), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [4477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 6), + [4479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 6), + [4481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1603), + [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), + [4486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1710), + [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 5, 0, 19), + [4491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 5, 0, 19), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [4495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_struct_type, 2, 0, 0), + [4497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_struct_type, 2, 0, 0), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [4503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1547), + [4506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2008), + [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_constant_declaration, 4, 0, 13), + [4511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_constant_declaration, 4, 0, 13), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [4545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 79), SHIFT(312), + [4548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 79), SHIFT(2086), + [4551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 81), SHIFT(314), + [4554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 81), SHIFT(2087), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [4559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 109), SHIFT(322), + [4562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 109), SHIFT(2088), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 1, 0, 0), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 4, 0, 0), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 3, 0, 4), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 27), SHIFT(2063), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 49), SHIFT(2072), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [4697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 50), SHIFT(2078), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [4710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 79), SHIFT(1960), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 81), SHIFT(1962), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [4728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 109), SHIFT(1968), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [4749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [4751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1865), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 1, 0, 24), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [4804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 3, 0, 0), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [4824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 27), SHIFT(305), + [4827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 27), SHIFT(2083), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_field, 2, 0, 35), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member, 4, 0, 13), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [4870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 49), SHIFT(306), + [4873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 49), SHIFT(2084), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [4878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 50), SHIFT(309), + [4881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 50), SHIFT(2085), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 1, 0, 0), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 3, 0, 0), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 4, 0, 0), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 4, 0, 0), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_payload_repeat1, 3, 0, 0), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 35), + [4988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 3, 0, 0), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 89), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 59), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [5070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 60), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [5110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 4, 0, 0), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [5168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [5244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_constant, 2, 0, 0), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [5338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture, 3, 0, 9), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [5352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture, 4, 0, 90), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [5480] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), }; #ifdef __cplusplus diff --git a/tree-sitter-brolang/test/corpus/syntax.txt b/tree-sitter-brolang/test/corpus/syntax.txt index 1e988c5..ea146ab 100644 --- a/tree-sitter-brolang/test/corpus/syntax.txt +++ b/tree-sitter-brolang/test/corpus/syntax.txt @@ -4,6 +4,16 @@ Core syntax io :: import "@std/io" +hide private_value :: 1 + +hide private_counter i32 = 0 + +hide Private :: opaque + +hide private_sum func(a, b i32) i32 { + return a + b +} + Status :: enum { ok bad @@ -30,6 +40,38 @@ sum func(a, b i32) i32 ! Status { (identifier) (string (string_content))) + (global_constant_declaration + (identifier) + (expression + (integer))) + (global_variable_declaration + (identifier) + (type + (builtin_type)) + (expression + (integer))) + (type_declaration + (identifier) + (opaque_type)) + (function_declaration + (identifier) + (parameter_list + (parameter + (identifier) + (identifier) + (type + (builtin_type)))) + (type + (builtin_type)) + (block + (statement + (return_statement + (expression + (binary_expression + (expression + (identifier)) + (expression + (identifier)))))))) (type_declaration (identifier) (enum_type diff --git a/tree-sitter-brolang/test/highlight/intrinsics.bro b/tree-sitter-brolang/test/highlight/intrinsics.bro index 6ee40ea..c05979a 100644 --- a/tree-sitter-brolang/test/highlight/intrinsics.bro +++ b/tree-sitter-brolang/test/highlight/intrinsics.bro @@ -1,7 +1,10 @@ +hide helper func() void {} +# <- keyword + main func() void { _ = sizeof!(i32) # ^^^^^^ function.builtin -# ^ operator +# ^ operator _ = sizeof(i32) # ^^^^^^ function }