From 402871ef7a0ddb46d99da1e69077941b3ae0bfb1 Mon Sep 17 00:00:00 2001 From: hl-valdemar Date: Tue, 21 Jul 2026 22:59:51 +0200 Subject: [PATCH] rename none to null --- LANGUAGE.md | 8 +- TODO.md | 38 +- compiler/ast/ast.odin | 2 +- compiler/checker/checker.odin | 86 +- compiler/checker/comptime.odin | 38 +- compiler/hir/hir.odin | 2 +- compiler/ir/ir.odin | 2 +- compiler/lexer/lexer.odin | 2 +- compiler/llvm/llvm.odin | 8 +- compiler/loader/loader.odin | 4 +- compiler/lower/lower.odin | 10 +- compiler/parser/parser.odin | 4 +- compiler/token/token.odin | 2 +- compiler_tests.odin | 66 +- examples/build/raylib/source/main.bro | 4 +- examples/interop/recursive/app/main.bro | 2 +- examples/programs/arraylist/main.bro | 6 +- .../programs/comptime_type_params/main.bro | 2 +- examples/programs/comptime_v1/main.bro | 2 +- examples/programs/conditional_unwrap/main.bro | 8 +- examples/programs/io/main.bro | 12 +- examples/programs/mem_allocator/raw_alloc.bro | 2 +- examples/programs/mem_allocator/task_list.bro | 14 +- .../programs/mem_allocator/typed_alloc.bro | 8 +- examples/programs/milestone_39/main.bro | 2 +- examples/programs/yield/main.bro | 32 +- languages/brolang/highlights.scm | 2 +- std/debug/debug.bro | 2 +- std/io/file.bro | 2 +- std/mem/mem.bro | 18 +- std/meta/meta.test.bro | 2 +- std/testing/testing.bro | 4 +- testbed/game/main.bro | 4 +- testbed/lexer/std/io/io.bro | 2 +- testbed/lexer/std/mem/mem.bro | 18 +- testbed/main.bro | 2 +- testbed/mem_alloc/std/mem/mem.bro | 16 +- tree-sitter-brolang/grammar.js | 6 +- tree-sitter-brolang/queries/highlights.scm | 2 +- tree-sitter-brolang/src/grammar.json | 8 +- tree-sitter-brolang/src/node-types.json | 6 +- tree-sitter-brolang/src/parser.c | 7072 ++++++++--------- tree-sitter-brolang/test/corpus/syntax.txt | 4 +- tree-sitter-brolang/test/highlight/types.bro | 2 +- 44 files changed, 3771 insertions(+), 3767 deletions(-) diff --git a/LANGUAGE.md b/LANGUAGE.md index 27d5590..e1c9124 100644 --- a/LANGUAGE.md +++ b/LANGUAGE.md @@ -36,7 +36,7 @@ roadmap and milestone history. - `ptrcast!(T, ptr)` as a first-pass pointer-child retype that preserves optionality, pointer kind, mutability, and sentinel shape - UTF-8 string literals as immutable pointers to static zero-terminated byte arrays, plus raw backtick multiline strings - narrow immutable zero-terminated byte pointer/slice conversion to `*c_char` / `?*c_char` without general `u8`/`c_char` interchange -- optionals with `none`, `orelse`, postfix `?`, conditional unwraps, guarded unwraps, and left-to-right short-circuiting multi-unwraps +- optionals with `null`, `orelse`, postfix `?`, conditional unwraps, guarded unwraps, and left-to-right short-circuiting multi-unwraps - nominal distinct types with exact backing construction, native enums with optional explicit integer backing and explicit backing-to-scalar casts, contextual enum literals, and imported C enums as target-backed integer aliases - source-order native structs, opaque nominal records with `Name :: opaque`, complete `c_struct { ... }`, keyed record literals, native untagged unions, and native tagged unions `union(Enum)` / `union(enum)` - named native struct fields may declare defaults with `field T = expression`; keyed literals use defaults for omitted fields and explicit initializers override them @@ -210,8 +210,8 @@ exactly once. Bare functions named `memcopy` or `memset` remain ordinary user fu - forced typed comptime expressions such as `$sum(1, 2)`, `$Point { x = 1, y = 2 }`, and comptime value blocks such as `${ yield 4 }` - comptime execution for bodyful Brolang functions with mutable locals, loops, `defer`, `match`, `try`/`catch`, exact type `==`/`!=`, pointer/slice storage mutation, pointer captures, and calls through comptime-known function values; `undefined` storage may be initialized at comptime, but remaining poison cannot be observed - comptime type factories such as `Box func($T type) type { return struct { value T } }`; calls like `Box(i32)` are concrete nominal types and may appear anywhere a type is expected -- `struct_type!(layout, names, types, defaults)` constructs a nominal record type from comptime fixed arrays or tuples and is valid in every type position; layout is `.auto` or `.c`, bare `none` means a required field, and `some!(none)` installs an optional `none` default -- `some!(value)` explicitly constructs the present branch of an expected optional, including nested optionals where `some!(none)` differs from outer `none` +- `struct_type!(layout, names, types, defaults)` constructs a nominal record type from comptime fixed arrays or tuples and is valid in every type position; layout is `.auto` or `.c`, bare `null` means a required field, and `some!(null)` installs an optional `null` default +- `some!(value)` explicitly constructs the present branch of an expected optional, including nested optionals where `some!(null)` differs from outer `null` - tuple types are unnamed-field structs (`struct { i32, []u8 }`), tuple values use `{1, "bro"}` / `{1,}` / `{}`, and fields use canonical numeric names such as `.0` - anonymous keyed records use `{x = 1, name = "bro"}`; without context their declaration-ordered names and inferred value types form a structurally interned record type, while a record context applies that type's coercions and field defaults; `{}` remains an empty tuple without context and constructs an empty contextual record when a record is expected - `typeinfo!`, `field!`, `compile_error!`, and semantic `expand for` provide compile-time record and enum reflection and heterogeneous static expansion without runtime metadata; enum reflection exposes declaration-ordered fields, reflected aggregates remain persistent compile-time values, and expand-loop `break` / `continue` must be selected entirely at comptime @@ -236,7 +236,7 @@ exactly once. Bare functions named `memcopy` or `memset` remain ordinary user fu - root `std` re-exports `ArrayList(T)` while its operations remain in `std/arraylist` - `std/mem` generic slice equality, allocator contract with raw byte operations, typed `empty` / `alloc` / `realloc` / `free`, overflow checks, zero-sized-type support, and failure-preserving reallocation - `std/arraylist` generic `ArrayList(T)` with direct `items` slice access, explicit capacity, allocator ownership, fallible reserve/append, clear, and deinit -- `std/meta` reflection records plus `EnumFieldStruct(E, Field, default ?Field)`, implemented with `struct_type!`; it produces a record with one field per native enum member in declaration order, where outer `none` means no field default +- `std/meta` reflection records plus `EnumFieldStruct(E, Field, default ?Field)`, implemented with `struct_type!`; it produces a record with one field per native enum member in declaration order, where outer `null` means no field default - `std/io` explicit `Io` capabilities, provider-bound `Reader`/`Writer` handles, existing-file open/close operations, allocation-free `write_all`, and comptime-expanded writer-first `print`; formatting supports natural `{}`, byte `{s}`, decimal `{d}`, integer `{b}` / `{o}` / `{x}` / `{X}`, byte-character `{c}`, scientific float `{e}`, and `{{` / `}}`, with malformed formats and incompatible tuple fields rejected at comptime - entry points are either `main func() ...` or `main func(init process.Init) ...`; `std/process.Init` carries startup capabilities, currently only `io`, while the system provider remains hidden inside `std/io` - `std/debug.print` is an allocation-free, failure-ignoring stderr escape hatch independent of `process.Init` diff --git a/TODO.md b/TODO.md index 8e6f4ca..396bd12 100644 --- a/TODO.md +++ b/TODO.md @@ -93,11 +93,11 @@ - if statements (implemented). example: `if condition { ... } else if { ... } else { ... }` - conditions must be `bool`; block-scoped locals do not escape their blocks - lowered through new `Label` / `Br` / `Cond_Br` IR opcodes (alloca-backed locals, no phi nodes) - - conditional unwrapping for optionals (`?T`) (implemented): `if val |v| { ... } else { ... }` - unwrap `val` into `v` if it is not `none` + - conditional unwrapping for optionals (`?T`) (implemented): `if val |v| { ... } else { ... }` - unwrap `val` into `v` if it is not `null` - single immutable binding scoped to the then-block; `v` not visible in `else` or after the `if` - `|` lexes as a new `Pipe` token; the `.If` reuses AST `name` / HIR `local` to carry the binding (no new statement kind) - new `Optional_Is_Some` / `Optional_Value` IR opcodes (the `Unwrap` presence-test + extract, minus the trap) - - conditional unwrapping with guard clause (implemented): `if val |v : v >= 10| { ... } else { ... }` - enter the then-block when `val` is not `none` and the guard is true + - conditional unwrapping with guard clause (implemented): `if val |v : v >= 10| { ... } else { ... }` - enter the then-block when `val` is not `null` and the guard is true - multi-unwrap (implemented; see section below) - while loops (implemented; operates on boolean conditions). examples: - `while condition { ... }` - iterate while the condition is true @@ -189,7 +189,7 @@ } ``` - disallow: `b :: undefined` since assigning undefined to something that can't change defeats the purpose - - disallow assigning `undefined` after declaration; use optionals and `none` for values that intentionally move back to an empty state + - disallow assigning `undefined` after declaration; use optionals and `null` for values that intentionally move back to an empty state 13. introduce `float` and `range` type constraints (the `int` family generalized) (implemented) - `float` resolves a local binding to any float scalar (`f32`/`f64`) via static analysis; @@ -351,9 +351,9 @@ `target = if …` are supported too - value-loop: a labeled body `for/while … blk: { … }` whose early exits are `yield :blk x` and whose body ends in an unlabeled fall-through `yield` (the value - when the loop completes). The `{T, none}` yields resolve the result to `?T` - (a pure-AST `none`-scan picks optionality; the first concrete yield fixes the element - type). E.g. `active_ent_idx :: for 0..10 |i| blk: { if (cond) yield :blk i; yield none }` + when the loop completes). The `{T, null}` yields resolve the result to `?T` + (a pure-AST `null`-scan picks optionality; the first concrete yield fixes the element + type). E.g. `active_ent_idx :: for 0..10 |i| blk: { if (cond) yield :blk i; yield null }` resolves to `?usize` - new `blk:` / `yield :blk` label surface adds one `label` field to the AST `Stmt`; no new token (`blk:` is `Identifier Colon`, `:blk` is `Colon Identifier`). The parser carries a @@ -370,7 +370,7 @@ loop. The TODO "BAD" loops (unlabeled yield from inside an `if`, an unbound labeled loop) fall out of these naturally - follow-ups: a branch that early-`return`s instead of yielding, unwrap-`if` as a value - source, and `none`-before-concrete typing in untyped loops are done in 20.6; labeled value + source, and `null`-before-concrete typing in untyped loops are done in 20.6; labeled value blocks and `yield`/`break` to an outer loop are done in 20.7 20.6 value if/loop follow-ups (implemented; checker-only) @@ -383,16 +383,16 @@ guard), each branch assigning the slot; the HIR `.If` carries the unwraps, which the existing lowering already handles. (The simple "unwrap or fallback" case is just `orelse` — `name :: opt orelse d` — already a plain expression.) - - untyped value loops pre-type their element from the first concrete (non-`none`) yield + - untyped value loops pre-type their element from the first concrete (non-`null`) yield regardless of source order (a capture-scoped probe build, `value_loop_element_type`), so a - `none` yielded before any concrete value still resolves the result to `?T` + `null` yielded before any concrete value still resolves the result to `?T` - still checker-only; no HIR/lowering change 20.7 labels — value blocks + yield/break to an outer loop (implemented; first lowering change) - `x :: blk: { …; yield :blk v }` — a labeled value *block* (the disambiguated form of "an if/loop at the end of a block"; an unlabeled trailing if/loop stays ambiguous and is not a value source). `yield :blk v` exits the block with a value; every path must yield. Carries - the same `{T, none}` → `?T` typing, defer-capture, and reassignment forms as value loops + the same `{T, null}` → `?T` typing, defer-capture, and reassignment forms as value loops - `yield :outer v` to an enclosing (non-innermost) value loop/block, plus plain `break :L` / `continue :L` to an enclosing labeled loop - a label now names a first-class exit target: `label` added to the HIR `Stmt` (on @@ -406,10 +406,10 @@ `.Block` break target; not a loop, so unlabeled `break`/`continue` and `continue :blk` skip it). The checker tracks a parallel `loop_is_loop` stack so labeled `break` reaches a loop or block while `continue` and unlabeled `break`/`continue` reach only the innermost loop - - untyped block `none`-before-concrete typing now builds the block's leading (yield-free) + - untyped block `null`-before-concrete typing now builds the block's leading (yield-free) statements first (a throwaway probe), so a first concrete `yield :blk` that references a block local still resolves the result to `?T` - - deferred (`// ponytail:`): the same `none`-before-concrete typing in an untyped block (or + - deferred (`// ponytail:`): the same `null`-before-concrete typing in an untyped block (or loop) whose concrete yield references a local declared *past* the first yield (annotate) 21. unions and tagged unions (implemented; first pass — native untagged unions only; see below) @@ -947,6 +947,8 @@ - comptime local declarations resolve type syntax in the active interpreter state, preserving match captures - `EnumFieldStruct` sizes its working arrays directly from the comptime `.enum |info|` capture +47. rename optional `none` to `null` (implemented) + ## A word on unchecked casts For casts that bypass safety checks, Honey provides builtin functions: @@ -978,13 +980,13 @@ ptr := ptrcast!(addr, @u8) # integer to pointer ## A word on multi-unwrap -Unwrap multiple optionals with `and`. This **short-circuits**: if the first optional is none, subsequent expressions are not evaluated. +Unwrap multiple optionals with `and`. This **short-circuits**: if the first optional is null, subsequent expressions are not evaluated. ``` name: ?[]u8 = get_name() age: ?u8 = get_age() if name and age |n, a| { - # both n and a are guaranteed non-none here + # both n and a are guaranteed non-null here print("{s} is {d} years old", n, a) } ``` @@ -1013,7 +1015,7 @@ The `and` in multi-unwrap short-circuits left-to-right: ``` if get_name() and get_hat() |n, h| { - # get_hat() is only called if get_name() returned non-none + # get_hat() is only called if get_name() returned non-null } ``` @@ -1242,7 +1244,7 @@ Yielding is also possible from loops with the same constraint. # get active entity active_ent_idx :: for 0..10 |i| blk: { if is_active(some_entity, i) yield :blk i - yield none # fall-through: no active ent was found (this should imply a return type matching both the index value and `none`, meaning it should resolve to an optional in this case) + yield null # fall-through: no active ent was found (this should imply a return type matching both the index value and `null`, meaning it should resolve to an optional in this case) # note that in this case, we have to use the `blk` label to yield from the correct scope. # otherwise, the yield should return directly from the if-statement's scope (which would be incorrect in this case). @@ -1251,13 +1253,13 @@ active_ent_idx :: for 0..10 |i| blk: { # BAD: yield returned from if-statement, but no name binds it: should miscompile similar to unused return values from functions. active_ent_idx :: for 0..10 |i| { if is_active(some_entity, i) yield i # bad - yield none + yield null } # BAD: likewise for loops for 0..10 |i| blk: { # bad, no name binds returned value if is_active(some_entity, i) yield :blk i - yield none + yield null } ``` diff --git a/compiler/ast/ast.odin b/compiler/ast/ast.odin index a6ccada..06c09e9 100644 --- a/compiler/ast/ast.odin +++ b/compiler/ast/ast.odin @@ -78,7 +78,7 @@ Expr_Kind :: enum u8 { String, Bool, Array, - None, + Null, Undefined, Inference_Hole, Type, diff --git a/compiler/checker/checker.odin b/compiler/checker/checker.odin index cfeae47..6b814d3 100644 --- a/compiler/checker/checker.odin +++ b/compiler/checker/checker.odin @@ -81,7 +81,7 @@ Yield_Target :: struct { label: symbol.Id, slot: hir.Local_Id, slot_type: types.Type, - // True when the loop also yields `none` (a `{T, none}` set → `?T`); set from a + // True when the loop also yields `null` (a `{T, null}` set → `?T`); set from a // pure-AST scan, used to pick the slot's element type on the first concrete yield. result_optional: bool, // `len(defers)` when this target's body began; a `yield :label` flushes defers down @@ -394,7 +394,7 @@ block_reads_name :: proc(checker: ^Checker, statements: []ast.Stmt_Id, name: sym case .Add, .Sub, .Mul, .Div, .Bit_And, .Bit_Or, .Bit_Xor, .Shift_Left, .Shift_Right, .Shift_Left_Saturating, .Index, .Orelse, .Eq, .Ne, .Lt, .Le, .Gt, .Ge, .And, .Or, .Range: append(&expr_stack, expr.left, expr.right) - case .Invalid, .Integer, .Float, .String, .Bool, .None, .Undefined, .Inference_Hole, + case .Invalid, .Integer, .Float, .String, .Bool, .Null, .Undefined, .Inference_Hole, .Type, .Name, .Function_Literal, .Anonymous_Struct_Type: } } @@ -639,9 +639,9 @@ build_static_value :: proc(checker: ^Checker, value: Ct_Value, span: source.Span diagnostic=source.INVALID_DIAGNOSTIC, }) } - if value.kind == .None { + if value.kind == .Null { return add_hir_expr(checker, hir.Expr{ - kind=.None, span=span, type=value.type, + kind=.Null, span=span, type=value.type, target=hir.INVALID_REF, left=hir.INVALID_EXPR, right=hir.INVALID_EXPR, diagnostic=source.INVALID_DIAGNOSTIC, }) @@ -2797,7 +2797,7 @@ infer_call_comptime_values :: proc( for value_bound in bound { all_bound = all_bound && value_bound } - // Concrete arguments bind first. Numeric constants and `none` are contextual and + // Concrete arguments bind first. Numeric constants and `null` are contextual and // therefore only contribute after stronger evidence has had a chance to bind the // parameter type. weak_passes := [2]bool{false, true} @@ -2811,8 +2811,8 @@ infer_call_comptime_values :: proc( continue } arg_expr := checker.ast_module.exprs[arg_id] - is_none := arg_expr.kind == .None - is_weak := is_numeric_constant_expr(checker, arg_id) || is_none + is_null := arg_expr.kind == .Null + is_weak := is_numeric_constant_expr(checker, arg_id) || is_null if is_weak != weak { continue } @@ -2836,7 +2836,7 @@ infer_call_comptime_values :: proc( } } actual := actual_args[param_index] - if is_none { + if is_null { previous := checker.current_comptime_values checker.current_comptime_values = values contextual := type_from_syntax( @@ -3506,7 +3506,7 @@ mark_expr_imports_used :: proc(checker: ^Checker, expr_id: ast.Expr_Id, file: as case .Add, .Sub, .Mul, .Div, .Bit_And, .Bit_Or, .Bit_Xor, .Shift_Left, .Shift_Right, .Shift_Left_Saturating, .Index, .Orelse, .Eq, .Ne, .Lt, .Le, .Gt, .Ge, .And, .Or, .Range: append(&stack, expr.left, expr.right) - case .Invalid, .Integer, .Float, .String, .Bool, .None, .Undefined, .Inference_Hole, .Type, .Name, .Anonymous_Struct_Type: + case .Invalid, .Integer, .Float, .String, .Bool, .Null, .Undefined, .Inference_Hole, .Type, .Name, .Anonymous_Struct_Type: } } } @@ -4585,10 +4585,10 @@ infer_compound_expr :: proc( case .Eq, .Ne, .Lt, .Le, .Gt, .Ge, .And, .Or: left_expr := checker.ast_module.exprs[expr.left] right_expr := checker.ast_module.exprs[expr.right] - if left_expr.kind == .None && right_expr.kind != .None { + if left_expr.kind == .Null && right_expr.kind != .Null { right := infer_nested_expr(checker, expr.right, locals, pkg, file, demanded, local_types) _ = infer_nested_expr(checker, expr.left, locals, pkg, file, demanded, local_types, right) - } else if right_expr.kind == .None && left_expr.kind != .None { + } else if right_expr.kind == .Null && left_expr.kind != .Null { left := infer_nested_expr(checker, expr.left, locals, pkg, file, demanded, local_types) _ = infer_nested_expr(checker, expr.right, locals, pkg, file, demanded, local_types, left) } else { @@ -4629,7 +4629,7 @@ infer_compound_expr :: proc( element = types.I64 } return types.array(store, element, u64(len(expr.args)), false) - case .None: + case .Null: return expected if types.is_optional(expected, store) else types.INVALID case .Undefined: return types.INVALID @@ -4928,7 +4928,7 @@ infer_expr :: proc( case .Float: last = types.F64 _ = pop(&stack) - case .String, .Array, .None, .Undefined, .Address, .Deref, .Index, .Slice, + case .String, .Array, .Null, .Undefined, .Address, .Deref, .Index, .Slice, .Field, .Unwrap, .Orelse, .Try, .Catch, .Struct_Literal, .Keyed, .Enum_Literal, .Cast, .Comptime, .Bool, .Not, .Bit_Not, .Bit_And, .Bit_Or, .Bit_Xor, .Shift_Left, .Shift_Right, .Shift_Left_Saturating, .Eq, .Ne, .Lt, .Le, .Gt, .Ge, .And, .Or, .Range: @@ -7773,13 +7773,13 @@ build_compound_expr :: proc( target=hir.INVALID_REF, left=hir.INVALID_EXPR, right=hir.INVALID_EXPR, diagnostic=source.INVALID_DIAGNOSTIC, }) - case .None: + case .Null: if !types.is_optional(expected, store) { - id := source.add(checker.diagnostics, expr.span, "'none' requires an optional context") + id := source.add(checker.diagnostics, expr.span, "'null' requires an optional context") return invalid_hir_expr(checker, expr.span, id, expected) } return add_hir_expr(checker, hir.Expr{ - kind=.None, span=expr.span, type=expected, target=hir.INVALID_REF, + kind=.Null, span=expr.span, type=expected, target=hir.INVALID_REF, left=hir.INVALID_EXPR, right=hir.INVALID_EXPR, diagnostic=source.INVALID_DIAGNOSTIC, }) case .Undefined: @@ -8311,7 +8311,7 @@ build_compound_expr :: proc( case .Eq, .Ne, .Lt, .Le, .Gt, .Ge: // Contextualize literals whose type comes from their peer. This covers // integer and enum literals as well as optional presence tests such as - // `value == none` and `none != value`. + // `value == null` and `null != value`. left_const := eval_constant(checker, expr.left) right_const := eval_constant(checker, expr.right) left, right: hir.Expr_Id @@ -8319,10 +8319,10 @@ build_compound_expr :: proc( right_expr := checker.ast_module.exprs[expr.right] left_numeric_const := left_const.kind == .Value || is_float_constant_expr(checker, expr.left) right_numeric_const := right_const.kind == .Value || is_float_constant_expr(checker, expr.right) - if right_expr.kind == .None && left_expr.kind != .None { + if right_expr.kind == .Null && left_expr.kind != .Null { left = build_nested_expr(checker, expr.left, locals, global_reads, calls, types.INVALID, pkg, file) right = build_nested_expr(checker, expr.right, locals, global_reads, calls, checker.module.exprs[left].type, pkg, file) - } else if left_expr.kind == .None && right_expr.kind != .None { + } else if left_expr.kind == .Null && right_expr.kind != .Null { right = build_nested_expr(checker, expr.right, locals, global_reads, calls, types.INVALID, pkg, file) left = build_nested_expr(checker, expr.left, locals, global_reads, calls, checker.module.exprs[right].type, pkg, file) } else if right_expr.kind == .Enum_Literal && left_expr.kind != .Enum_Literal { @@ -8349,10 +8349,10 @@ build_compound_expr :: proc( left_type := checker.module.exprs[left].type right_type := checker.module.exprs[right].type operand_type := types.INVALID - if left_expr.kind == .None || right_expr.kind == .None { + if left_expr.kind == .Null || right_expr.kind == .Null { if expr.kind != .Eq && expr.kind != .Ne || !types.is_optional(left_type, store) || !types.equal(left_type, right_type) { - id := source.add(checker.diagnostics, expr.span, "'none' only supports '==' and '!=' with an optional value") + id := source.add(checker.diagnostics, expr.span, "'null' only supports '==' and '!=' with an optional value") return invalid_hir_expr(checker, expr.span, id, types.BOOL) } operand_type = left_type @@ -8703,7 +8703,7 @@ build_expr :: proc( continue } switch expr.kind { - case .String, .Array, .None, .Undefined, .Address, .Deref, .Index, .Slice, + case .String, .Array, .Null, .Undefined, .Address, .Deref, .Index, .Slice, .Field, .Unwrap, .Orelse, .Try, .Catch, .Struct_Literal, .Keyed, .Bool, .Cast, .Comptime, .Not, .Bit_Not, .Bit_And, .Bit_Or, .Bit_Xor, .Shift_Left, .Shift_Right, .Shift_Left_Saturating, .Eq, .Ne, .Lt, .Le, .Gt, .Ge, .And, .Or, .Range, @@ -12567,24 +12567,24 @@ build_value_match :: proc( return slot_read(checker, slot, slot_type, span), slot_type } -// loop_yields_none reports whether any `yield` that targets this loop (a labeled +// loop_yields_null reports whether any `yield` that targets this loop (a labeled // `yield :blk` inside `if`/block branches, or the trailing fall-through) yields the -// literal `none` — making the loop's result optional. Pure AST walk; does not descend +// literal `null` — making the loop's result optional. Pure AST walk; does not descend // into nested loops or value sources, whose yields belong to them. -loop_yields_none :: proc(checker: ^Checker, stmts: []ast.Stmt_Id) -> bool { +loop_yields_null :: proc(checker: ^Checker, stmts: []ast.Stmt_Id) -> bool { for id in stmts { s := checker.ast_module.statements[id] #partial switch s.kind { case .Yield: - if s.expr != ast.INVALID_EXPR && checker.ast_module.exprs[s.expr].kind == .None { + if s.expr != ast.INVALID_EXPR && checker.ast_module.exprs[s.expr].kind == .Null { return true } case .If: - if loop_yields_none(checker, s.body) || loop_yields_none(checker, s.else_body) { + if loop_yields_null(checker, s.body) || loop_yields_null(checker, s.else_body) { return true } case .Block: - if loop_yields_none(checker, s.body) { + if loop_yields_null(checker, s.body) { return true } } @@ -12593,8 +12593,8 @@ loop_yields_none :: proc(checker: ^Checker, stmts: []ast.Stmt_Id) -> bool { } // resolve_loop_slot fixes a value-loop's result slot from its first concrete yield (an -// optional element type when the loop also yields `none`) and coerces `value` into it. -// Returns INVALID when the type can't be fixed yet (a `none`/invalid first yield). +// optional element type when the loop also yields `null`) and coerces `value` into it. +// Returns INVALID when the type can't be fixed yet (a `null`/invalid first yield). resolve_loop_slot :: proc(ctx: ^Build_Ctx, target: ^Yield_Target, value: hir.Expr_Id, vtype: types.Type, span: source.Span) -> hir.Expr_Id { checker := ctx.checker if target.slot == hir.INVALID_LOCAL { @@ -12608,14 +12608,14 @@ resolve_loop_slot :: proc(ctx: ^Build_Ctx, target: ^Yield_Target, value: hir.Exp } // first_concrete_yield_expr returns the AST expr of the first yield (source order) that is -// not the literal `none`, descending into `if`/block branches but not nested loops or value -// sources (whose yields belong to them). INVALID when the loop yields only `none`. +// not the literal `null`, descending into `if`/block branches but not nested loops or value +// sources (whose yields belong to them). INVALID when the loop yields only `null`. first_concrete_yield_expr :: proc(checker: ^Checker, stmts: []ast.Stmt_Id) -> ast.Expr_Id { for id in stmts { s := checker.ast_module.statements[id] #partial switch s.kind { case .Yield: - if s.expr != ast.INVALID_EXPR && checker.ast_module.exprs[s.expr].kind != .None { + if s.expr != ast.INVALID_EXPR && checker.ast_module.exprs[s.expr].kind != .Null { return s.expr } case .If: @@ -12635,9 +12635,9 @@ first_concrete_yield_expr :: proc(checker: ^Checker, stmts: []ast.Stmt_Id) -> as } // value_loop_element_type pre-types the element of an untyped value loop from its first -// concrete (non-`none`) yield, so a `none` yielded before any concrete value still resolves +// concrete (non-`null`) yield, so a `null` yielded before any concrete value still resolves // the result to `?T`. The loop's captures are bound temporarily for the probe and the probe -// expr is discarded; returns INVALID when the loop yields only `none`. +// expr is discarded; returns INVALID when the loop yields only `null`. value_loop_element_type :: proc(ctx: ^Build_Ctx, loop_stmt: ast.Stmt) -> types.Type { checker := ctx.checker yield_expr := first_concrete_yield_expr(checker, loop_stmt.body) @@ -12736,7 +12736,7 @@ block_element_type :: proc(ctx: ^Build_Ctx, block_stmts: []ast.Stmt_Id) -> types // reads it after the block. Every path must yield (or otherwise exit); HIR holds a `.Block` // that emits the body and the exit label the labeled breaks branch to. No iteration / no // fall-through (unlike a value loop). The type is the annotation when typed, else the first -// concrete `yield :blk`'s type (optional when any yield is `none`). +// concrete `yield :blk`'s type (optional when any yield is `null`). build_value_labeled_block :: proc( ctx: ^Build_Ctx, body: ^[dynamic]hir.Stmt_Id, @@ -12746,7 +12746,7 @@ build_value_labeled_block :: proc( span: source.Span, ) -> (value: hir.Expr_Id, value_type: types.Type) { checker := ctx.checker - result_optional := loop_yields_none(checker, block_stmts) + result_optional := loop_yields_null(checker, block_stmts) slot := hir.INVALID_LOCAL slot_type := types.INVALID if is_runtime_type(checker, expected) { @@ -12754,8 +12754,8 @@ build_value_labeled_block :: proc( slot = new_value_slot(ctx, slot_type) result_optional = types.is_optional(slot_type, &checker.module.types) } else if result_optional { - // Untyped block that also yields `none`: pre-type the element from the first - // concrete yield (regardless of source order) so a `none` yielded first still + // Untyped block that also yields `null`: pre-type the element from the first + // concrete yield (regardless of source order) so a `null` yielded first still // resolves the result to `?T`. elem := block_element_type(ctx, block_stmts) if is_runtime_type(checker, elem) { @@ -12816,7 +12816,7 @@ build_value_labeled_block :: proc( // desugars (in build_block) to `slot = x; break`, and the construct's value is a read // of the slot after the loop. Reuses the ordinary `.For`/`.While` build via a peeled // copy; no new HIR. The yielded type is the annotation when typed, else the first -// concrete yield's type (optional when any yield is `none`). +// concrete yield's type (optional when any yield is `null`). build_value_loop :: proc( ctx: ^Build_Ctx, body: ^[dynamic]hir.Stmt_Id, @@ -12844,7 +12844,7 @@ build_value_loop :: proc( } fall_stmt := checker.ast_module.statements[loop_stmt.body[n - 1]] - result_optional := loop_yields_none(checker, loop_stmt.body) + result_optional := loop_yields_null(checker, loop_stmt.body) slot := hir.INVALID_LOCAL slot_type := types.INVALID if is_runtime_type(checker, expected) { @@ -12852,8 +12852,8 @@ build_value_loop :: proc( slot = new_value_slot(ctx, slot_type) result_optional = types.is_optional(slot_type, &checker.module.types) } else if result_optional { - // Untyped loop that also yields `none`: pre-type the element from the first - // concrete yield (regardless of source order) so a `none` built before any + // Untyped loop that also yields `null`: pre-type the element from the first + // concrete yield (regardless of source order) so a `null` built before any // concrete yield still resolves the result to `?T`. elem := value_loop_element_type(ctx, loop_stmt) if is_runtime_type(checker, elem) { diff --git a/compiler/checker/comptime.odin b/compiler/checker/comptime.odin index be71a34..79f7131 100644 --- a/compiler/checker/comptime.odin +++ b/compiler/checker/comptime.odin @@ -228,7 +228,7 @@ Ct_Value_Kind :: enum u8 { Slice, Function, Type, - None, + Null, Optional_Some, Fallible, } @@ -651,12 +651,12 @@ ct_coerce_value :: proc(state: ^Ct_State, id: Ct_Value_Id, expected: types.Type, return ct_add_value(state, value), true } } - if value.kind == .None { + if value.kind == .Null { if types.is_optional(expected, store) { value.type = expected return ct_add_value(state, value), true } - return INVALID_CT_VALUE, ct_fail(state, .Not_Comptime, span, "'none' requires an optional context") + return INVALID_CT_VALUE, ct_fail(state, .Not_Comptime, span, "'null' requires an optional context") } if types.is_optional(expected, store) { child := types.child_type(expected, store) @@ -941,9 +941,9 @@ ct_materialize_value :: proc( case .Function: value_expected := expected if types.is_valid(expected) else value.type return build_function_value(checker, ast.Function_Id(u32(value.index)), span, value_expected) - case .None: + case .Null: return add_hir_expr(checker, hir.Expr{ - kind=.None, span=span, type=value.type, + kind=.Null, span=span, type=value.type, target=hir.INVALID_REF, left=hir.INVALID_EXPR, right=hir.INVALID_EXPR, diagnostic=source.INVALID_DIAGNOSTIC, }) @@ -1154,11 +1154,11 @@ ct_eval_expr :: proc( return ct_add_value(state, Ct_Value{kind=.Type, type=types.INVALID, index=u64(resolved)}), ct_flow(.Normal), types.is_valid(resolved) case .Enum_Literal: return ct_eval_enum_literal(state, expr, expected, depth+1) - case .None: + case .Null: if !types.is_optional(expected, store) { - return INVALID_CT_VALUE, ct_flow(.Normal), ct_fail(state, .Not_Comptime, expr.span, "'none' requires an optional context") + return INVALID_CT_VALUE, ct_flow(.Normal), ct_fail(state, .Not_Comptime, expr.span, "'null' requires an optional context") } - return ct_add_value(state, Ct_Value{kind=.None, type=expected}), ct_flow(.Normal), true + return ct_add_value(state, Ct_Value{kind=.Null, type=expected}), ct_flow(.Normal), true case .Field: if enum_type, enum_ok := enum_type_from_field_expr(checker, expr, state.pkg, state.file); enum_ok { member, ok := find_enum_member(checker, enum_type, expr.name) @@ -1246,7 +1246,7 @@ ct_eval_expr :: proc( return children[0], ct_flow(.Normal), true } } - if v.kind == .None { + if v.kind == .Null { child := types.child_type(v.type, store) return ct_eval_expr(state, expr.right, child, depth+1) } @@ -1289,7 +1289,7 @@ ct_eval_expr :: proc( } left_expr := checker.ast_module.exprs[expr.left] right_expr := checker.ast_module.exprs[expr.right] - if left_expr.kind == .None && right_expr.kind != .None && + if left_expr.kind == .Null && right_expr.kind != .Null && (expr.kind == .Eq || expr.kind == .Ne) { right, right_flow, right_ok := ct_eval_expr(state, expr.right, types.INVALID, depth+1) if !right_ok || right_flow.kind != .Normal { @@ -2071,8 +2071,8 @@ ct_unwrap_optional :: proc(state: ^Ct_State, id: Ct_Value_Id, span: source.Span) return children[0], ct_flow(.Normal), true } } - if value.kind == .None { - return INVALID_CT_VALUE, ct_flow(.Normal), ct_fail(state, .Not_Comptime, span, "comptime optional unwrap of none") + if value.kind == .Null { + return INVALID_CT_VALUE, ct_flow(.Normal), ct_fail(state, .Not_Comptime, span, "comptime optional unwrap of null") } return INVALID_CT_VALUE, ct_flow(.Normal), ct_fail(state, .Not_Comptime, span, "postfix '?' requires an optional") } @@ -2132,13 +2132,13 @@ ct_eval_binary :: proc(state: ^Ct_State, op: ast.Expr_Kind, left_id, right_id: C left := state.values[left_id] right := state.values[right_id] is_compare := op == .Eq || op == .Ne || op == .Lt || op == .Le || op == .Gt || op == .Ge - if left.kind == .None || right.kind == .None { + if left.kind == .Null || right.kind == .Null { if (op != .Eq && op != .Ne) || !types.is_optional(left.type, &state.checker.module.types) || !types.equal(left.type, right.type) { - return INVALID_CT_VALUE, ct_flow(.Normal), ct_fail(state, .Not_Comptime, span, "'none' only supports '==' and '!=' with an optional value") + return INVALID_CT_VALUE, ct_flow(.Normal), ct_fail(state, .Not_Comptime, span, "'null' only supports '==' and '!=' with an optional value") } - equal := left.kind == .None && right.kind == .None + equal := left.kind == .Null && right.kind == .Null if op == .Ne { equal = !equal } @@ -2781,7 +2781,7 @@ ct_typeinfo_value :: proc(state: ^Ct_State, target: types.Type, span: source.Spa kind=.Array, type=fields_type, start=fields_start, count=u32(len(field_values)), }) name_optional_type := types.optional(store, types.slice(store, types.U8, false)) - record_name := ct_add_value(state, Ct_Value{kind=.None, type=name_optional_type}) + record_name := ct_add_value(state, Ct_Value{kind=.Null, type=name_optional_type}) if item.name != 0 { name_value := ct_reflection_string(state, symbol_text(checker, symbol.Id(item.name))) name_start := u32(len(state.children)) @@ -3053,7 +3053,7 @@ ct_struct_type :: proc( ) } default := state.values[value] - if default.kind == .None { + if default.kind == .Null { continue } children := ct_child_slice(state, default) @@ -3616,7 +3616,7 @@ ct_write_comptime_key :: proc(state: ^Ct_State, id: Ct_Value_Id, builder: ^strin } strings.write_string(builder, "];") return true - case .None: + case .Null: strings.write_string(builder, "n;") return true case .Optional_Some: @@ -4156,7 +4156,7 @@ ct_exec_if :: proc(state: ^Ct_State, statement: ast.Stmt, yield_returns: bool, d return flow, ok } v := state.values[value] - if v.kind == .None { + if v.kind == .Null { matched = false break } diff --git a/compiler/hir/hir.odin b/compiler/hir/hir.odin index da692b2..4c3ab0b 100644 --- a/compiler/hir/hir.odin +++ b/compiler/hir/hir.odin @@ -82,7 +82,7 @@ Expr_Kind :: enum u8 { Undefined, Array, Struct, - None, + Null, Optional_Some, Local, Global, diff --git a/compiler/ir/ir.odin b/compiler/ir/ir.odin index 0e943cb..6169f6c 100644 --- a/compiler/ir/ir.odin +++ b/compiler/ir/ir.odin @@ -71,7 +71,7 @@ Opcode :: enum u8 { Poison, String, Aggregate, - None, + Null, Optional_Some, Load_Global, Function_Address, diff --git a/compiler/lexer/lexer.odin b/compiler/lexer/lexer.odin index 4ebea30..b09d769 100644 --- a/compiler/lexer/lexer.odin +++ b/compiler/lexer/lexer.odin @@ -30,7 +30,7 @@ keyword_kind :: proc(text: string) -> token.Kind { case "try": return .Keyword_Try case "catch": return .Keyword_Catch case "mut": return .Keyword_Mut - case "none": return .Keyword_None + case "null": return .Keyword_Null case "undefined": return .Keyword_Undefined case "orelse": return .Keyword_Orelse case "and": return .Keyword_And diff --git a/compiler/llvm/llvm.odin b/compiler/llvm/llvm.odin index 749a6b3..c7adb54 100644 --- a/compiler/llvm/llvm.odin +++ b/compiler/llvm/llvm.odin @@ -275,7 +275,7 @@ valid_value :: proc( return false } switch instructions[value_id].op { - case .Param, .Const, .Poison, .String, .Aggregate, .None, .Optional_Some, + case .Param, .Const, .Poison, .String, .Aggregate, .Null, .Optional_Some, .Load_Global, .Function_Address, .Address_Of, .Load, .Union_Tag, .Slice, .Length, .Slice_Ptr, .Fallible_Error, .Extract, .Select, .Unwrap, .Optional_Is_Some, .Optional_Value, .Orelse, @@ -1109,10 +1109,10 @@ emit_instruction_stream :: proc( } fmt.sbprintf(&emitter.builder, ", %d\n", arg_index) } - case .None: + case .Null: item, ok := types.node(&emitter.module.types, instruction.type) if !ok || item.kind != .Optional { - emit_recovery_value(emitter, instruction_index, instruction, "invalid optional none") + emit_recovery_value(emitter, instruction_index, instruction, "invalid optional null") continue } if types.is_pointer(item.child, &emitter.module.types) { @@ -1656,7 +1656,7 @@ emit_instruction_stream :: proc( fmt.sbprintf(&emitter.builder, " %%optional_ok%d = extractvalue %s %%v%d, 0\n", instruction_index, llvm_type(optional_type, &emitter.module.types), instruction.a) } fmt.sbprintf(&emitter.builder, " br i1 %%optional_ok%d, label %%optional_continue%d, label %%optional_trap%d\noptional_trap%d:\n", instruction_index, instruction_index, instruction_index, instruction_index) - message := diagnostic_message(emitter, source.INVALID_DIAGNOSTIC, instruction.span, "attempted to unwrap none") + message := diagnostic_message(emitter, source.INVALID_DIAGNOSTIC, instruction.span, "attempted to unwrap null") emit_trap_call(emitter, message) fmt.sbprintf(&emitter.builder, " unreachable\noptional_continue%d:\n", instruction_index) if types.is_pointer(item.child, &emitter.module.types) { diff --git a/compiler/loader/loader.odin b/compiler/loader/loader.odin index 27aa19e..6f3427a 100644 --- a/compiler/loader/loader.odin +++ b/compiler/loader/loader.odin @@ -437,7 +437,7 @@ add_macro_zero_expr :: proc( return ast.INVALID_EXPR, false } return add_import_expr(state, ast.Expr{ - kind=.None, span=span, + kind=.Null, span=span, left=ast.INVALID_EXPR, right=ast.INVALID_EXPR, diagnostic=source.INVALID_DIAGNOSTIC, }), true @@ -680,7 +680,7 @@ add_converted_macro_value_expr :: proc( }, span), true case .Null: return add_import_expr(state, ast.Expr{ - kind=.None, span=span, + kind=.Null, span=span, left=ast.INVALID_EXPR, right=ast.INVALID_EXPR, diagnostic=source.INVALID_DIAGNOSTIC, }), true diff --git a/compiler/lower/lower.odin b/compiler/lower/lower.odin index 0d17639..fc6d630 100644 --- a/compiler/lower/lower.odin +++ b/compiler/lower/lower.odin @@ -244,9 +244,9 @@ lower_compound_expr :: proc(state: ^State, expr_id: hir.Expr_Id) -> ir.Instructi b=ir.INVALID_INSTRUCTION, diagnostic=source.INVALID_DIAGNOSTIC, }) - case .None: + case .Null: return append_instruction(state, ir.Instruction{ - op=.None, span=expr.span, type=expr.type, + op=.Null, span=expr.span, type=expr.type, target=ir.INVALID_REF, a=ir.INVALID_INSTRUCTION, b=ir.INVALID_INSTRUCTION, diagnostic=source.INVALID_DIAGNOSTIC, }) @@ -563,8 +563,8 @@ lower_compound_expr :: proc(state: ^State, expr_id: hir.Expr_Id) -> ir.Instructi case .Eq, .Ne, .Lt, .Le, .Gt, .Ge: left_expr := state.hir_module.exprs[expr.left] right_expr := state.hir_module.exprs[expr.right] - if left_expr.kind == .None || right_expr.kind == .None { - optional_expr := expr.right if left_expr.kind == .None else expr.left + if left_expr.kind == .Null || right_expr.kind == .Null { + optional_expr := expr.right if left_expr.kind == .Null else expr.left optional := lower_nested_expr(state, optional_expr) present := append_instruction(state, ir.Instruction{ op=.Optional_Is_Some, span=expr.span, type=types.BOOL, @@ -716,7 +716,7 @@ lower_expr :: proc(state: ^State, expr_id: hir.Expr_Id) -> ir.Instruction_Id { diagnostic=source.INVALID_DIAGNOSTIC, }) _ = pop(&stack) - case .String, .Array, .Struct, .Range, .None, .Optional_Some, .Address, .Deref, + case .String, .Array, .Struct, .Range, .Null, .Optional_Some, .Address, .Deref, .Index, .Slice, .Field, .Union_Tag, .Length, .Slice_Ptr, .Unwrap, .Orelse, .Try, .Catch, .Not, .Eq, .Ne, .Lt, .Le, .Gt, .Ge, .And, .Or: last = lower_compound_expr(state, frame.expr) diff --git a/compiler/parser/parser.odin b/compiler/parser/parser.odin index a4dc3a4..e2b26ba 100644 --- a/compiler/parser/parser.odin +++ b/compiler/parser/parser.odin @@ -966,10 +966,10 @@ parse_primary :: proc(parser: ^Parser, nesting: int) -> ast.Expr_Id { right=ast.INVALID_EXPR, diagnostic=source.INVALID_DIAGNOSTIC, }) - case .Keyword_None: + case .Keyword_Null: advance(parser) return add_expr(parser, ast.Expr{ - kind=.None, + kind=.Null, span=tok.span, left=ast.INVALID_EXPR, right=ast.INVALID_EXPR, diff --git a/compiler/token/token.odin b/compiler/token/token.odin index 6177ffc..1237719 100644 --- a/compiler/token/token.odin +++ b/compiler/token/token.odin @@ -76,7 +76,7 @@ Kind :: enum u8 { Keyword_Try, Keyword_Catch, Keyword_Mut, - Keyword_None, + Keyword_Null, Keyword_Undefined, Keyword_Orelse, Keyword_And, diff --git a/compiler_tests.odin b/compiler_tests.odin index f95152b..2317193 100644 --- a/compiler_tests.odin +++ b/compiler_tests.odin @@ -206,7 +206,7 @@ parser_applies_bitwise_precedence_and_preserves_capture_and_deref_pipes :: proc( value i32 = 1 pointer *i32 = &value _ = pointer^ & 1 - if (none | none) |captured| { _ = captured } + if (null | null) |captured| { _ = captured } } ` source_file := source.Source{path="test.bro", text=text} @@ -346,7 +346,7 @@ bitwise_checker_rejects_invalid_operands_and_known_overshifts :: proc(t: ^testin text := `D :: distinct u8 E :: enum { one } main func() void { - p *u8 = none + p *u8 = null d D = D(1) e E = .one signed_count i8 = 1 @@ -1380,7 +1380,7 @@ main func() void { testing.expect(t, strings.contains(llvm_text, "declare i32 @exact(i32)")) testing.expect(t, strings.contains(llvm_text, "@bro.str.0 = private unnamed_addr constant [6 x i8] c\"hello\\00\"")) testing.expect(t, strings.contains(llvm_text, "getelementptr [3 x i8]")) - testing.expect(t, strings.contains(llvm_text, "attempted to unwrap none")) + testing.expect(t, strings.contains(llvm_text, "attempted to unwrap null")) testing.expect(t, strings.contains(llvm_text, "orelse_fallback")) testing.expect(t, strings.contains(llvm_text, "orelse_some")) } @@ -2109,7 +2109,7 @@ main func() void { p^ = 2 } - handle ?@mut Handle = none + handle ?@mut Handle = null use_handle(handle) } ` @@ -2147,7 +2147,7 @@ main func() void { anyopaque_by_value_and_invalid_ptrcasts_are_rejected :: proc(t: ^testing.T) { text := `Callback :: alias c_func() void main func() void { - raw ?*mut anyopaque = none + raw ?*mut anyopaque = null value anyopaque = undefined _ = ptrcast!(void, raw) _ = ptrcast!(anyopaque, raw) @@ -5685,7 +5685,7 @@ yield_compiles_and_runs :: proc(t: ^testing.T) { state := run_executable(output) // Value blocks, value if-statements (incl. `return` branches and unwrap-`if`), // `orelse`, value loops, labeled value blocks (`blk: { … yield :blk v }`, incl. - // defer-capture, `{T,none}` → optional, and `none` before a concrete yield that uses a + // defer-capture, `{T,null}` → optional, and `null` before a concrete yield that uses a // block local), outer-loop control (`yield :outer v` / `break :outer`), and labeled // block statements exited via `break :blk` together produce 42. testing.expect_value(t, state.exit_code, 42) @@ -5706,7 +5706,7 @@ value_loop_label_does_not_shadow_own_yield_target :: proc(t: ^testing.T) { text := `main func() i32 { idx :: for 0..10 |i| hit: { if (i == 3) yield :hit i - yield none + yield null } if idx |found| { if (found == 3) return 0 @@ -9247,7 +9247,7 @@ apply func($callback func() i32) i32 { return callback() } main func() i32 { box top.Box(i32) :: top.Box(i32) { value = 2 } point top.Point :: top.Point { value = 3 } - maybe facade.MaybePoint :: none + maybe facade.MaybePoint :: null scalar facade.Scalar :: 5 top.counter = 7 if box.value != 2 or point.value != 3 { return 1 } @@ -14084,15 +14084,15 @@ TokenKind :: enum(u8) { } Simple :: enum { first, second } -Names :: alias meta.EnumFieldStruct(TokenKind, ?[]u8, some!(none)) +Names :: alias meta.EnumFieldStruct(TokenKind, ?[]u8, some!(null)) Flags :: alias meta.EnumFieldStruct(Simple, bool, false) -Direct :: alias struct_type!(.auto, {"x", "name"}, {i32, []u8}, {none, "bro"}) -CPoint :: alias struct_type!(.c, {"x"}, {c_int}, {none}) +Direct :: alias struct_type!(.auto, {"x", "name"}, {i32, []u8}, {null, "bro"}) +CPoint :: alias struct_type!(.c, {"x"}, {c_int}, {null}) ArrayInput :: alias struct_type!(.auto, ["value"], [i32], [7]) Empty :: alias struct_type!(.auto, {}, {}, {}) -direct_position struct_type!(.auto, {"value"}, {i32}, {none}) = {value = 5} +direct_position struct_type!(.auto, {"value"}, {i32}, {null}) = {value = 5} -make_direct func() struct_type!(.auto, {"value"}, {i32}, {none}) { +make_direct func() struct_type!(.auto, {"value"}, {i32}, {null}) { return {value = 6} } @@ -14108,8 +14108,9 @@ Generated func($T type) type { GeneratedInt :: alias Generated(i32) ordered Names = {} -static_none ?i32 :: none +static_none ?i32 :: null static_some ?i32 :: 1 +none :: 41 Map func($E, $V type) type { match typeinfo!(E) { @@ -14121,7 +14122,7 @@ Map func($E, $V type) type { } } -init func($E, $V type, values meta.EnumFieldStruct(E, ?V, some!(none))) Map(E, V) { +init func($E, $V type, values meta.EnumFieldStruct(E, ?V, some!(null))) Map(E, V) { map Map(E, V) = undefined match typeinfo!(E) { .enum |info|: expand for info.fields |field, index| { @@ -14141,7 +14142,7 @@ get func($E, $V type, map @Map(E, V), key E) ?V { .enum |info|: expand for info.fields |field, index| { if key == field!(E, field.name) { if map.present[index] { return map.values[index] } - return none + return null } } else: compile_error!("EnumMap key must be an enum") @@ -14150,8 +14151,9 @@ get func($E, $V type, map @Map(E, V), key E) ?V { main func() i32 { _ = ordered - if !$(static_none == none) or !$(none == static_none) or - $(static_some == none) or $(none == static_some) { return 23 } + if none != 41 { return 24 } + if !$(static_none == null) or !$(null == static_none) or + $(static_some == null) or $(null == static_some) { return 23 } inferred :: {x = 40, name = "bro"} if inferred.x != 40 or inferred.name.len != 3 { return 1 } direct Direct = {x = 7} @@ -14167,7 +14169,7 @@ main func() i32 { if direct_position.value != 5 or make_direct().value != 6 { return 17 } c_point CPoint = {x = 9} if c_point.x != 9 { return 12 } - nested ??i32 = some!(none) + nested ??i32 = some!(null) if nested |inner| { if inner |_| { return 13 } } else { return 14 } @@ -14196,14 +14198,14 @@ main func() i32 { if !map.present[0] or !map.present[1] or map.present[2] { return 9 } if map.values[0].len != 10 or map.values[1].len != 7 { return 18 } ident :: get(TokenKind, []u8, &map, TokenKind.ident) - if ident == none or none == ident { return 19 } + if ident == null or null == ident { return 19 } if ident |value| { if value.len != 10 { return 19 } } else { return 20 } eof :: get(TokenKind, []u8, &map, TokenKind.eof) - if eof != none or none != eof { return 21 } + if eof != null or null != eof { return 21 } location testing.SourceLocation = {file = "test.bro", line = 1, column = 1} - testing.expect_equal(none, eof, location) catch |_| { return 24 } + testing.expect_equal(null, eof, location) catch |_| { return 24 } testing.expect_equal(ident, ident, location) catch |_| { return 25 } if eof |_| { return 22 } return 0 @@ -14275,18 +14277,18 @@ anonymous_records_and_struct_type_report_targeted_errors :: proc(t: ^testing.T) main_path := "/tmp/brolang-test-bad-struct-type/main.bro" text := `meta :: import "@std/meta" E :: enum { value } -Fields :: alias struct_type!(.auto, {"value"}, {i32}, {none}) -RequiredEnum :: alias meta.EnumFieldStruct(E, i32, none) -NotEnum :: alias meta.EnumFieldStruct(i32, i32, none) -BadField :: alias struct_type!(.auto, {"value"}, {void}, {none}) -BadComptimeField :: alias struct_type!(.auto, {"T"}, {type}, {none}) +Fields :: alias struct_type!(.auto, {"value"}, {i32}, {null}) +RequiredEnum :: alias meta.EnumFieldStruct(E, i32, null) +NotEnum :: alias meta.EnumFieldStruct(i32, i32, null) +BadField :: alias struct_type!(.auto, {"value"}, {void}, {null}) +BadComptimeField :: alias struct_type!(.auto, {"T"}, {type}, {null}) BadDefault :: alias struct_type!(.auto, {"value"}, {i32}, {"no"}) UnstableDefault :: alias struct_type!(.auto, {"value"}, {i32}, {undefined}) -BadLengths :: alias struct_type!(.auto, {"one", "two"}, {i32}, {none}) -BadNames :: alias struct_type!(.auto, {"not-valid"}, {i32}, {none}) -DuplicateNames :: alias struct_type!(.auto, {"same", "same"}, {i32, i32}, {none, none}) -BadLayout :: alias struct_type!(.packed, {"value"}, {i32}, {none}) -BadC :: alias struct_type!(.c, {"value"}, {[]u8}, {none}) +BadLengths :: alias struct_type!(.auto, {"one", "two"}, {i32}, {null}) +BadNames :: alias struct_type!(.auto, {"not-valid"}, {i32}, {null}) +DuplicateNames :: alias struct_type!(.auto, {"same", "same"}, {i32, i32}, {null, null}) +BadLayout :: alias struct_type!(.packed, {"value"}, {i32}, {null}) +BadC :: alias struct_type!(.c, {"value"}, {[]u8}, {null}) EmptyC :: alias struct_type!(.c, {}, {}, {}) unknown Fields = {missing = 1} duplicate Fields = {value = 1, value = 2} diff --git a/examples/build/raylib/source/main.bro b/examples/build/raylib/source/main.bro index f47ba35..c2ec6a1 100644 --- a/examples/build/raylib/source/main.bro +++ b/examples/build/raylib/source/main.bro @@ -40,7 +40,7 @@ Ball :: struct { } # A frame's worth of player intent, as a tagged union. Each arm carries exactly -# the data that action needs (or `void` when it needs none). +# the data that action needs (or `void` when it needs null). Command :: union(enum) { spawn rl.Vector2 # spawn a shape at this point push struct { dx f32, dy f32 } # blow every shape this way @@ -213,7 +213,7 @@ main func() i32 { sel :: for 0..(count) |i| hover: { c rl.Vector2 = rl.Vector2{ x = balls[i].x, y = balls[i].y } if rl.CheckCollisionPointCircle(mouse, c, balls[i].radius) yield :hover i - yield none + yield null } # --- draw ----------------------------------------------------------- diff --git a/examples/interop/recursive/app/main.bro b/examples/interop/recursive/app/main.bro index 9c1c7c5..4fce9ff 100644 --- a/examples/interop/recursive/app/main.bro +++ b/examples/interop/recursive/app/main.bro @@ -5,7 +5,7 @@ native :: import "../include/native.h" # self-referential `?*mut Node` field as C-layout-compatible. main func() i32 { - node native.Node = native.Node { next = none, value = 7 } + node native.Node = native.Node { next = null, value = 7 } if node.next |_| { return 1 } diff --git a/examples/programs/arraylist/main.bro b/examples/programs/arraylist/main.bro index 38aa22d..ce074d3 100644 --- a/examples/programs/arraylist/main.bro +++ b/examples/programs/arraylist/main.bro @@ -20,11 +20,11 @@ init func(allocator mem.Allocator) State { } hide fail_alloc func(_ ?@mut anyopaque, _ usize, _ usize) ?*mut u8 { - return none + return null } hide fail_realloc func(_ ?@mut anyopaque, _ ?*mut u8, _ usize, _ usize, _ usize) ?*mut u8 { - return none + return null } hide fail_free func(_ ?@mut anyopaque, _ ?*mut u8, _ usize, _ usize) void {} @@ -36,7 +36,7 @@ hide fail_vtable mem.AllocatorVTable :: mem.AllocatorVTable { } hide fail_allocator mem.Allocator :: mem.Allocator { - context = none, + context = null, vtable = &fail_vtable, } diff --git a/examples/programs/comptime_type_params/main.bro b/examples/programs/comptime_type_params/main.bro index 7567e16..4899e83 100644 --- a/examples/programs/comptime_type_params/main.bro +++ b/examples/programs/comptime_type_params/main.bro @@ -91,7 +91,7 @@ main func() i32 { _ = assigned _ = take_i32(zero()) _ = return_zero() - optional ?u32 = none + optional ?u32 = null if !same_type(?u32, optional) { return 8 } diff --git a/examples/programs/comptime_v1/main.bro b/examples/programs/comptime_v1/main.bro index 89e27d3..44ed833 100644 --- a/examples/programs/comptime_v1/main.bro +++ b/examples/programs/comptime_v1/main.bro @@ -73,7 +73,7 @@ maybe func(flag bool) ?i32 { if flag { return 9 } - return none + return null } may_fail func(flag bool) i32 ! Error { diff --git a/examples/programs/conditional_unwrap/main.bro b/examples/programs/conditional_unwrap/main.bro index 900c6fb..4ba3c78 100644 --- a/examples/programs/conditional_unwrap/main.bro +++ b/examples/programs/conditional_unwrap/main.bro @@ -16,8 +16,8 @@ main func() i32 { total = total + 99 } - # none -> else branch taken; the binding is not in scope there - b ?i32 = none + # null -> else branch taken; the binding is not in scope there + b ?i32 = null if b |v| { total = total + v } else { @@ -31,8 +31,8 @@ main func() i32 { total = total + q^ # +0 } - # optional pointer none -> skipped - z ?@i32 = none + # optional pointer null -> skipped + z ?@i32 = null if z |_| { total = total + 1000 } diff --git a/examples/programs/io/main.bro b/examples/programs/io/main.bro index c3868c9..a8b0b25 100644 --- a/examples/programs/io/main.bro +++ b/examples/programs/io/main.bro @@ -38,7 +38,7 @@ hide write_too_much func(_ ?@mut anyopaque, _ io.Handle, bytes []u8) usize ! io. ok_reader func() io.Reader { return io.Reader { - context = none, + context = null, handle = io.Handle {file_desc = 0}, read = read_ok, } @@ -46,7 +46,7 @@ ok_reader func() io.Reader { bad_reader func() io.Reader { return io.Reader { - context = none, + context = null, handle = io.Handle {file_desc = 0}, read = read_too_much, } @@ -54,7 +54,7 @@ bad_reader func() io.Reader { eof_reader func() io.Reader { return io.Reader { - context = none, + context = null, handle = io.Handle {file_desc = 0}, read = read_eof, } @@ -62,7 +62,7 @@ eof_reader func() io.Reader { short_writer func() io.Writer { return io.Writer { - context = none, + context = null, handle = io.Handle {file_desc = 0}, write = write_short, } @@ -70,7 +70,7 @@ short_writer func() io.Writer { none_writer func() io.Writer { return io.Writer { - context = none, + context = null, handle = io.Handle {file_desc = 0}, write = write_none, } @@ -78,7 +78,7 @@ none_writer func() io.Writer { bad_writer func() io.Writer { return io.Writer { - context = none, + context = null, handle = io.Handle {file_desc = 0}, write = write_too_much, } diff --git a/examples/programs/mem_allocator/raw_alloc.bro b/examples/programs/mem_allocator/raw_alloc.bro index c2d34a0..abbbcb0 100644 --- a/examples/programs/mem_allocator/raw_alloc.bro +++ b/examples/programs/mem_allocator/raw_alloc.bro @@ -1,7 +1,7 @@ mem :: import "@std/mem" raw_allocator_test func() i32 { - resized ?*mut u8 = mem.raw_realloc(mem.c_allocator, none, 0, 4, 1) + resized ?*mut u8 = mem.raw_realloc(mem.c_allocator, null, 0, 4, 1) if resized |bytes| { bytes[0] = 10 bytes[1] = 20 diff --git a/examples/programs/mem_allocator/task_list.bro b/examples/programs/mem_allocator/task_list.bro index 622e493..c63e9ed 100644 --- a/examples/programs/mem_allocator/task_list.bro +++ b/examples/programs/mem_allocator/task_list.bro @@ -11,9 +11,9 @@ TaskList :: struct { task_list_init func(allocator mem.Allocator) TaskList { return TaskList { - ids = none, - priorities = none, - durations = none, + ids = null, + priorities = null, + durations = null, len = 0, capacity = 0, allocator = allocator, @@ -27,7 +27,7 @@ alloc_i32s func(allocator mem.Allocator, count usize) ?[]mut i32 { failed = true yield (&fallback).ptr[..0] } - if (failed) return none + if (failed) return null return values } @@ -144,9 +144,9 @@ task_list_deinit func(list @mut TaskList) void { free_i32s(list.allocator, list.ids) free_i32s(list.allocator, list.priorities) free_i32s(list.allocator, list.durations) - list.ids = none - list.priorities = none - list.durations = none + list.ids = null + list.priorities = null + list.durations = null list.len = 0 list.capacity = 0 } diff --git a/examples/programs/mem_allocator/typed_alloc.bro b/examples/programs/mem_allocator/typed_alloc.bro index b5e7682..0dbd05f 100644 --- a/examples/programs/mem_allocator/typed_alloc.bro +++ b/examples/programs/mem_allocator/typed_alloc.bro @@ -9,12 +9,12 @@ hide probe_count func(context ?@mut anyopaque) void { hide probe_alloc func(context ?@mut anyopaque, _ usize, _ usize) ?*mut u8 { probe_count(context) - return none + return null } hide probe_realloc func(context ?@mut anyopaque, _ ?*mut u8, _ usize, _ usize, _ usize) ?*mut u8 { probe_count(context) - return none + return null } hide probe_free func(context ?@mut anyopaque, _ ?*mut u8, _ usize, _ usize) void { @@ -42,8 +42,8 @@ typed_allocator_test func() i32 { } _ = mem.raw_alloc(first_allocator, 1, 1) - _ = mem.raw_realloc(first_allocator, none, 0, 1, 1) - mem.raw_free(first_allocator, none, 0, 1) + _ = mem.raw_realloc(first_allocator, null, 0, 1, 1) + mem.raw_free(first_allocator, null, 0, 1) _ = mem.raw_alloc(second_allocator, 1, 1) if (first_calls[0] != 3 or second_calls[0] != 1) return 32 diff --git a/examples/programs/milestone_39/main.bro b/examples/programs/milestone_39/main.bro index 8b784e6..b5ba702 100644 --- a/examples/programs/milestone_39/main.bro +++ b/examples/programs/milestone_39/main.bro @@ -54,7 +54,7 @@ different Config :: Config { state = .idle, values = [21, 21], pair = Pair {7, false}, - maybe = none, + maybe = null, payload = .empty, } diff --git a/examples/programs/yield/main.bro b/examples/programs/yield/main.bro index 2ea2df2..eee69d6 100644 --- a/examples/programs/yield/main.bro +++ b/examples/programs/yield/main.bro @@ -93,13 +93,13 @@ vif_expression func(old_entries []u8) usize { # --- value loops (milestone 20.5) -------------------------------------------- # Labeled `for` used as a value: `yield :blk i` exits early with a value, the -# trailing `yield none` supplies the value when the loop completes. The `{i, -# none}` yields resolve the result to an optional. +# trailing `yield null` supplies the value when the loop completes. The `{i, +# null}` yields resolve the result to an optional. loop_search func() i32 { # first i in 0..10 whose square exceeds 40 (6*6=36 no, 7*7=49 yes -> 7). idx :: for 0..10 |i| blk: { if (i * i > 40) yield :blk i - yield none + yield null } if idx |found| { if (found == 7) return 0 @@ -108,11 +108,11 @@ loop_search func() i32 { return 2 } -# Same loop, but nothing matches -> the fall-through `yield none` is the result. +# Same loop, but nothing matches -> the fall-through `yield null` is the result. loop_none func() i32 { idx :: for 0..10 |i| blk: { if (i > 100) yield :blk i - yield none + yield null } if idx |found| { _ = found @@ -126,7 +126,7 @@ loop_while func() i32 { n i32 = 0 found :: while n < 100 : n += 1 blk: { if (n == 8) yield :blk n - yield none + yield null } if found |v| { if (v == 8) return 0 @@ -164,13 +164,13 @@ orelse_value func(opt ?i32) i32 { return r } -# Untyped value loop where `none` is yielded (in a labeled yield) before any +# Untyped value loop where `null` is yielded (in a labeled yield) before any # concrete value: the element type still resolves to ? from `yield :blk i`. loop_none_first func() i32 { r :: for 0..10 |i| blk: { - if (i > 100) yield :blk none + if (i > 100) yield :blk null if (i * i > 40) yield :blk i # first concrete yield: i == 7 - yield none + yield null } if r |found| { if (found == 7) return 0 @@ -207,10 +207,10 @@ lblock_defer func() i32 { return r # 5, not 999 } -# A labeled block whose `{T, none}` yields resolve the result to an optional. +# A labeled block whose `{T, null}` yields resolve the result to an optional. lblock_optional func(present i32) i32 { r :: blk: { - if (present == 0) yield :blk none + if (present == 0) yield :blk null yield :blk 8 } if r |v| { @@ -225,7 +225,7 @@ yield_outer func(target i32) i32 { for 0..3 |col| { if (row * 3 + col == target) yield :outer (row * 10 + col) } - yield none + yield null } if found |v| { return v @@ -284,11 +284,11 @@ stmt_block_nested func() i32 { return hits } -# Item B: a `none` yielded before a concrete `yield :blk` that references a block local. +# Item B: a `null` yielded before a concrete `yield :blk` that references a block local. lblock_local func() i32 { r :: blk: { val :: 9 - if (false) yield :blk none + if (false) yield :blk null yield :blk val } if r |v| { @@ -321,9 +321,9 @@ main func() i32 { if (vif_return(0) != 11) return 116 if (vif_return(1) != 55) return 117 if (vif_unwrap(21) != 42) return 118 - if (vif_unwrap(none) != 99) return 119 + if (vif_unwrap(null) != 99) return 119 if (orelse_value(5) != 5) return 120 - if (orelse_value(none) != 7) return 121 + if (orelse_value(null) != 7) return 121 if (loop_none_first() != 0) return 122 if (lblock(0) != 10) return 123 diff --git a/languages/brolang/highlights.scm b/languages/brolang/highlights.scm index bb5a4fa..8a565aa 100644 --- a/languages/brolang/highlights.scm +++ b/languages/brolang/highlights.scm @@ -16,7 +16,7 @@ (boolean) @boolean [ - (none) + (null) (undefined) ] @constant.builtin diff --git a/std/debug/debug.bro b/std/debug/debug.bro index edb7e87..fa1f863 100644 --- a/std/debug/debug.bro +++ b/std/debug/debug.bro @@ -3,7 +3,7 @@ import "@std/io" print func($format []u8, $Args type, args Args) void { writer io.Writer :: io.Writer{ - context = none, + context = null, handle = io.Handle{ file_desc = c_int(io.Stream.stderr) }, write = write, } diff --git a/std/io/file.bro b/std/io/file.bro index 9e98b05..e1a37aa 100644 --- a/std/io/file.bro +++ b/std/io/file.bro @@ -138,7 +138,7 @@ hide system_vtable IoVTable :: IoVTable { hide system func() Io { return Io { - context = none, + context = null, vtable = &system_vtable, } } diff --git a/std/mem/mem.bro b/std/mem/mem.bro index f65cc24..71e9b39 100644 --- a/std/mem/mem.bro +++ b/std/mem/mem.bro @@ -90,7 +90,7 @@ realloc func($T type, allocator Allocator, memory []mut T, new_count usize) []mu return .out_of_memory } - old_memory ?*mut u8 = none + old_memory ?*mut u8 = null old_size usize = 0 if memory.len != 0 { old_memory = ptrcast!(u8, memory.ptr) @@ -137,17 +137,17 @@ hide power_of_two func(value usize) bool { hide c_alloc func(_ ?@mut anyopaque, size usize, alignment usize) ?*mut u8 { if power_of_two(alignment) == false { - return none + return null } if alignment <= malloc_alignment { return ptrcast!(u8, c.malloc(c_ulong(size))) } - memory [1]mut ?*mut anyopaque = [none] + memory [1]mut ?*mut anyopaque = [null] status c_int = c.posix_memalign((&memory).ptr, c_ulong(alignment), c_ulong(size)) if status != 0 { - return none + return null } return ptrcast!(u8, memory[0]) @@ -155,12 +155,12 @@ hide c_alloc func(_ ?@mut anyopaque, size usize, alignment usize) ?*mut u8 { 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 + return null } if new_size == 0 { c.free(memory) - return none + return null } if memory |old_memory| { @@ -168,7 +168,7 @@ hide c_realloc func(_ ?@mut anyopaque, memory ?*mut u8, old_size usize, new_size 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(null, new_size, alignment) if new_memory |new_bytes| { copy_size usize = old_size if new_size < copy_size { @@ -180,7 +180,7 @@ hide c_realloc func(_ ?@mut anyopaque, memory ?*mut u8, old_size usize, new_size return new_memory } - return c_alloc(none, new_size, alignment) + return c_alloc(null, new_size, alignment) } hide c_free func(_ ?@mut anyopaque, memory ?*mut u8, _ usize, _ usize) void { @@ -194,6 +194,6 @@ hide c_vtable AllocatorVTable :: AllocatorVTable { } c_allocator Allocator :: Allocator { - context = none, + context = null, vtable = &c_vtable, } diff --git a/std/meta/meta.test.bro b/std/meta/meta.test.bro index 1c357a2..a0d64b2 100644 --- a/std/meta/meta.test.bro +++ b/std/meta/meta.test.bro @@ -6,7 +6,7 @@ TestTokenKind :: enum(u8) { eof = 21 } -TestNames :: alias EnumFieldStruct(TestTokenKind, ?[]u8, some!(none)) +TestNames :: alias EnumFieldStruct(TestTokenKind, ?[]u8, some!(null)) enum_field_struct_defaults test { names TestNames = { diff --git a/std/testing/testing.bro b/std/testing/testing.bro index 5a8a2e5..e5e08c0 100644 --- a/std/testing/testing.bro +++ b/std/testing/testing.bro @@ -26,11 +26,11 @@ expect_equal func($T type, expected, actual T, location SourceLocation) void ! E try expect_equal(expected_value, actual_value, location) return } - debug.print("{s}:{d}:{d}: expected an optional value, found none\n", {location.file, location.line, location.column}) + debug.print("{s}:{d}:{d}: expected an optional value, found null\n", {location.file, location.line, location.column}) return .expectation_failed } if actual |_| { - debug.print("{s}:{d}:{d}: expected none, found an optional value\n", {location.file, location.line, location.column}) + debug.print("{s}:{d}:{d}: expected null, found an optional value\n", {location.file, location.line, location.column}) return .expectation_failed } } diff --git a/testbed/game/main.bro b/testbed/game/main.bro index fb562fc..06c014d 100644 --- a/testbed/game/main.bro +++ b/testbed/game/main.bro @@ -38,7 +38,7 @@ Ball :: struct { } # A frame's worth of player intent, as a tagged union. Each arm carries exactly -# the data that action needs (or `void` when it needs none). +# the data that action needs (or `void` when it needs null). Command :: union(enum) { spawn Vector2 # spawn a shape at this point push struct { dx f32, dy f32 } # blow every shape this way @@ -211,7 +211,7 @@ main func() i32 { sel :: for 0..(count) |i| blk: { c Vector2 = Vector2{ x = balls[i].x, y = balls[i].y } if CheckCollisionPointCircle(mouse, c, balls[i].radius) yield :blk i - yield none + yield null } # --- draw ----------------------------------------------------------- diff --git a/testbed/lexer/std/io/io.bro b/testbed/lexer/std/io/io.bro index e858039..68f609c 100644 --- a/testbed/lexer/std/io/io.bro +++ b/testbed/lexer/std/io/io.bro @@ -116,7 +116,7 @@ hide system_vtable IoVTable :: IoVTable { hide system func() Io { return Io { - context = none, + context = null, vtable = &system_vtable, } } diff --git a/testbed/lexer/std/mem/mem.bro b/testbed/lexer/std/mem/mem.bro index 310486d..84bf107 100644 --- a/testbed/lexer/std/mem/mem.bro +++ b/testbed/lexer/std/mem/mem.bro @@ -90,7 +90,7 @@ realloc func($T type, allocator Allocator, memory []mut T, new_count usize) []mu return .out_of_memory } - old_memory ?*mut u8 = none + old_memory ?*mut u8 = null old_size usize = 0 if memory.len != 0 { old_memory = ptrcast!(u8, memory.ptr) @@ -137,17 +137,17 @@ hide power_of_two func(value usize) bool { hide c_alloc func(_ ?*mut anyopaque, size usize, alignment usize) ?*mut u8 { if power_of_two(alignment) == false { - return none + return null } if alignment <= malloc_alignment { return ptrcast!(u8, c.malloc(c_ulong(size))) } - memory [1]mut ?*mut anyopaque = [none] + memory [1]mut ?*mut anyopaque = [null] status c_int = c.posix_memalign((&memory).ptr, c_ulong(alignment), c_ulong(size)) if status != 0 { - return none + return null } return ptrcast!(u8, memory[0]) @@ -155,12 +155,12 @@ hide c_alloc func(_ ?*mut anyopaque, size usize, alignment usize) ?*mut u8 { 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 + return null } if new_size == 0 { c.free(memory) - return none + return null } if memory |old_memory| { @@ -168,7 +168,7 @@ hide c_realloc func(_ ?*mut anyopaque, memory ?*mut u8, old_size usize, new_size 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(null, new_size, alignment) if new_memory |new_bytes| { copy_size usize = old_size if new_size < copy_size { @@ -183,7 +183,7 @@ hide c_realloc func(_ ?*mut anyopaque, memory ?*mut u8, old_size usize, new_size return new_memory } - return c_alloc(none, new_size, alignment) + return c_alloc(null, new_size, alignment) } hide c_free func(_ ?*mut anyopaque, memory ?*mut u8, _ usize, _ usize) void { @@ -197,6 +197,6 @@ hide c_vtable AllocatorVTable :: AllocatorVTable { } c_allocator Allocator :: Allocator { - context = none, + context = null, vtable = &c_vtable, } diff --git a/testbed/main.bro b/testbed/main.bro index 2e5d207..2f38c86 100644 --- a/testbed/main.bro +++ b/testbed/main.bro @@ -42,7 +42,7 @@ apply_decay func(players []mut Player) void { } best_player func(players []mut Player) ?@mut Player { - best ?@mut Player = none + best ?@mut Player = null best_score i32 = 0 for players |@player| { diff --git a/testbed/mem_alloc/std/mem/mem.bro b/testbed/mem_alloc/std/mem/mem.bro index 7bc07b6..de3632f 100644 --- a/testbed/mem_alloc/std/mem/mem.bro +++ b/testbed/mem_alloc/std/mem/mem.bro @@ -82,17 +82,17 @@ hide power_of_two func(value usize) bool { hide c_alloc func(_ ?*mut anyopaque, size usize, alignment usize) ?*mut u8 { if power_of_two(alignment) == false { - return none + return null } if alignment <= malloc_alignment { return ptrcast!(u8, c.malloc(c_ulong(size))) } - memory [1]mut ?*mut anyopaque = [none] + memory [1]mut ?*mut anyopaque = [null] status c_int = c.posix_memalign((&memory).ptr, c_ulong(alignment), c_ulong(size)) if status != 0 { - return none + return null } return ptrcast!(u8, memory[0]) @@ -100,12 +100,12 @@ hide c_alloc func(_ ?*mut anyopaque, size usize, alignment usize) ?*mut u8 { 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 + return null } if new_size == 0 { c.free(memory) - return none + return null } if memory |old_memory| { @@ -113,7 +113,7 @@ hide c_realloc func(_ ?*mut anyopaque, memory ?*mut u8, old_size usize, new_size 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(null, new_size, alignment) if new_memory |new_bytes| { copy_size usize = old_size if new_size < copy_size { @@ -128,7 +128,7 @@ hide c_realloc func(_ ?*mut anyopaque, memory ?*mut u8, old_size usize, new_size return new_memory } - return c_alloc(none, new_size, alignment) + return c_alloc(null, new_size, alignment) } hide c_free func(_ ?*mut anyopaque, memory ?*mut u8, _ usize, _ usize) void { @@ -142,6 +142,6 @@ hide c_vtable AllocatorVTable :: AllocatorVTable { } c_allocator Allocator :: Allocator { - context = none, + context = null, vtable = &c_vtable, } diff --git a/tree-sitter-brolang/grammar.js b/tree-sitter-brolang/grammar.js index 91a5cf1..229152d 100644 --- a/tree-sitter-brolang/grammar.js +++ b/tree-sitter-brolang/grammar.js @@ -461,7 +461,7 @@ module.exports = grammar({ $.multiline_string, $.character, $.boolean, - $.none, + $.null, $.undefined, ), @@ -644,7 +644,7 @@ module.exports = grammar({ )), boolean: _ => choice('true', 'false'), - none: _ => 'none', + null: _ => 'null', undefined: _ => 'undefined', sink: _ => '_', @@ -653,7 +653,7 @@ module.exports = grammar({ alias(choice( 'test', 'func', 'c_func', 'struct', 'c_struct', 'opaque', 'union', 'enum', 'distinct', 'alias', 'import', 'hide', 'return', 'try', 'catch', 'mut', - 'none', 'undefined', 'orelse', 'and', 'or', 'xor', 'if', 'while', 'for', + 'null', 'undefined', 'orelse', 'and', 'or', 'xor', 'if', 'while', 'for', 'expand', 'break', 'continue', 'defer', 'errdefer', 'yield', 'match', 'else', 'true', 'false', 'void', 'type', 'anyopaque', 'bool', 'int', 'uint', 'float', 'range', diff --git a/tree-sitter-brolang/queries/highlights.scm b/tree-sitter-brolang/queries/highlights.scm index 0b72bf3..8943bea 100644 --- a/tree-sitter-brolang/queries/highlights.scm +++ b/tree-sitter-brolang/queries/highlights.scm @@ -16,7 +16,7 @@ (boolean) @constant.builtin [ - (none) + (null) (undefined) ] @constant.builtin diff --git a/tree-sitter-brolang/src/grammar.json b/tree-sitter-brolang/src/grammar.json index 0bf2468..39f5230 100644 --- a/tree-sitter-brolang/src/grammar.json +++ b/tree-sitter-brolang/src/grammar.json @@ -3213,7 +3213,7 @@ }, { "type": "SYMBOL", - "name": "none" + "name": "null" }, { "type": "SYMBOL", @@ -4999,9 +4999,9 @@ } ] }, - "none": { + "null": { "type": "STRING", - "value": "none" + "value": "null" }, "undefined": { "type": "STRING", @@ -5092,7 +5092,7 @@ }, { "type": "STRING", - "value": "none" + "value": "null" }, { "type": "STRING", diff --git a/tree-sitter-brolang/src/node-types.json b/tree-sitter-brolang/src/node-types.json index 071c195..eb0b89a 100644 --- a/tree-sitter-brolang/src/node-types.json +++ b/tree-sitter-brolang/src/node-types.json @@ -840,7 +840,7 @@ "named": true }, { - "type": "none", + "type": "null", "named": true }, { @@ -1654,7 +1654,7 @@ } }, { - "type": "none", + "type": "null", "named": true, "fields": {} }, @@ -2925,7 +2925,7 @@ "named": false }, { - "type": "none", + "type": "null", "named": false }, { diff --git a/tree-sitter-brolang/src/parser.c b/tree-sitter-brolang/src/parser.c index a6d4eaf..ed5c02a 100644 --- a/tree-sitter-brolang/src/parser.c +++ b/tree-sitter-brolang/src/parser.c @@ -136,7 +136,7 @@ enum ts_symbol_identifiers { anon_sym_CARET = 114, anon_sym_true = 115, anon_sym_false = 116, - anon_sym_none = 117, + anon_sym_null = 117, anon_sym_undefined = 118, sym_sink = 119, sym_integer = 120, @@ -231,7 +231,7 @@ enum ts_symbol_identifiers { sym_function_literal = 209, sym_qualified_identifier = 210, sym_boolean = 211, - sym_none = 212, + sym_null = 212, sym_undefined = 213, sym__field_name = 214, sym_string = 215, @@ -369,7 +369,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_CARET] = "^", [anon_sym_true] = "true", [anon_sym_false] = "false", - [anon_sym_none] = "none", + [anon_sym_null] = "null", [anon_sym_undefined] = "undefined", [sym_sink] = "sink", [sym_integer] = "integer", @@ -464,7 +464,7 @@ static const char * const ts_symbol_names[] = { [sym_function_literal] = "function_literal", [sym_qualified_identifier] = "qualified_identifier", [sym_boolean] = "boolean", - [sym_none] = "none", + [sym_null] = "null", [sym_undefined] = "undefined", [sym__field_name] = "_field_name", [sym_string] = "string", @@ -602,7 +602,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_CARET] = anon_sym_CARET, [anon_sym_true] = anon_sym_true, [anon_sym_false] = anon_sym_false, - [anon_sym_none] = anon_sym_none, + [anon_sym_null] = anon_sym_null, [anon_sym_undefined] = anon_sym_undefined, [sym_sink] = sym_sink, [sym_integer] = sym_integer, @@ -697,7 +697,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_function_literal] = sym_function_literal, [sym_qualified_identifier] = sym_qualified_identifier, [sym_boolean] = sym_boolean, - [sym_none] = sym_none, + [sym_null] = sym_null, [sym_undefined] = sym_undefined, [sym__field_name] = sym__field_name, [sym_string] = sym_string, @@ -1186,7 +1186,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_none] = { + [anon_sym_null] = { .visible = true, .named = false, }, @@ -1566,7 +1566,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_none] = { + [sym_null] = { .visible = true, .named = true, }, @@ -10278,7 +10278,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(49); END_STATE(); case 11: - if (lookahead == 'o') ADVANCE(50); + if (lookahead == 'u') ADVANCE(50); END_STATE(); case 12: if (lookahead == 'p') ADVANCE(51); @@ -10412,7 +10412,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(103); END_STATE(); case 50: - if (lookahead == 'n') ADVANCE(104); + if (lookahead == 'l') ADVANCE(104); END_STATE(); case 51: if (lookahead == 'a') ADVANCE(105); @@ -10583,7 +10583,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_mut); END_STATE(); case 104: - if (lookahead == 'e') ADVANCE(156); + if (lookahead == 'l') ADVANCE(156); END_STATE(); case 105: if (lookahead == 'q') ADVANCE(157); @@ -10739,7 +10739,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'h') ADVANCE(198); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_none); + ACCEPT_TOKEN(anon_sym_null); END_STATE(); case 157: if (lookahead == 'u') ADVANCE(199); @@ -16493,7 +16493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1), [anon_sym_true] = ACTIONS(1), [anon_sym_false] = ACTIONS(1), - [anon_sym_none] = ACTIONS(1), + [anon_sym_null] = ACTIONS(1), [anon_sym_undefined] = ACTIONS(1), [sym_sink] = ACTIONS(1), [sym_integer] = ACTIONS(1), @@ -16567,7 +16567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(211), @@ -16653,7 +16653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -16707,7 +16707,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(322), @@ -16793,7 +16793,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -16847,7 +16847,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(282), @@ -16933,7 +16933,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -16987,7 +16987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(287), @@ -17073,7 +17073,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -17127,7 +17127,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(335), @@ -17213,7 +17213,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -17267,7 +17267,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(203), @@ -17353,7 +17353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -17407,7 +17407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(209), @@ -17493,7 +17493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -17547,7 +17547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(250), @@ -17633,7 +17633,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -17687,7 +17687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(254), @@ -17773,7 +17773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -17827,7 +17827,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(261), @@ -17913,7 +17913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -17967,7 +17967,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(326), @@ -18053,7 +18053,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -18107,7 +18107,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(277), @@ -18193,7 +18193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -18247,7 +18247,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(391), @@ -18333,7 +18333,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -18387,7 +18387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(394), @@ -18473,7 +18473,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -18527,7 +18527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(271), @@ -18613,7 +18613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -18667,7 +18667,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(302), @@ -18753,7 +18753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -18807,7 +18807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(257), @@ -18893,7 +18893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -18947,7 +18947,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(296), @@ -19033,7 +19033,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -19085,7 +19085,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym__field_name] = STATE(5224), [sym_string] = STATE(598), @@ -19169,7 +19169,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(303), [anon_sym_false] = ACTIONS(303), - [anon_sym_none] = ACTIONS(305), + [anon_sym_null] = ACTIONS(305), [anon_sym_undefined] = ACTIONS(307), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -19221,7 +19221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym__field_name] = STATE(5224), [sym_string] = STATE(598), @@ -19305,7 +19305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(303), [anon_sym_false] = ACTIONS(303), - [anon_sym_none] = ACTIONS(305), + [anon_sym_null] = ACTIONS(305), [anon_sym_undefined] = ACTIONS(307), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -19357,7 +19357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym__field_name] = STATE(5224), [sym_string] = STATE(598), @@ -19441,7 +19441,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(303), [anon_sym_false] = ACTIONS(303), - [anon_sym_none] = ACTIONS(305), + [anon_sym_null] = ACTIONS(305), [anon_sym_undefined] = ACTIONS(307), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -19493,7 +19493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym__field_name] = STATE(5224), [sym_string] = STATE(598), @@ -19577,7 +19577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(303), [anon_sym_false] = ACTIONS(303), - [anon_sym_none] = ACTIONS(305), + [anon_sym_null] = ACTIONS(305), [anon_sym_undefined] = ACTIONS(307), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -19629,7 +19629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym__field_name] = STATE(5224), [sym_string] = STATE(598), @@ -19713,7 +19713,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(303), [anon_sym_false] = ACTIONS(303), - [anon_sym_none] = ACTIONS(305), + [anon_sym_null] = ACTIONS(305), [anon_sym_undefined] = ACTIONS(307), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -19765,7 +19765,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym__field_name] = STATE(5224), [sym_string] = STATE(598), @@ -19849,7 +19849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(303), [anon_sym_false] = ACTIONS(303), - [anon_sym_none] = ACTIONS(305), + [anon_sym_null] = ACTIONS(305), [anon_sym_undefined] = ACTIONS(307), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -19901,7 +19901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym__field_name] = STATE(5224), [sym_string] = STATE(598), @@ -19985,7 +19985,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(303), [anon_sym_false] = ACTIONS(303), - [anon_sym_none] = ACTIONS(305), + [anon_sym_null] = ACTIONS(305), [anon_sym_undefined] = ACTIONS(307), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -20037,7 +20037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym__field_name] = STATE(5224), [sym_string] = STATE(598), @@ -20121,7 +20121,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(303), [anon_sym_false] = ACTIONS(303), - [anon_sym_none] = ACTIONS(305), + [anon_sym_null] = ACTIONS(305), [anon_sym_undefined] = ACTIONS(307), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -20173,7 +20173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym__field_name] = STATE(5224), [sym_string] = STATE(598), @@ -20257,7 +20257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(303), [anon_sym_false] = ACTIONS(303), - [anon_sym_none] = ACTIONS(305), + [anon_sym_null] = ACTIONS(305), [anon_sym_undefined] = ACTIONS(307), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -20309,7 +20309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym__field_name] = STATE(5224), [sym_string] = STATE(598), @@ -20393,7 +20393,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(303), [anon_sym_false] = ACTIONS(303), - [anon_sym_none] = ACTIONS(305), + [anon_sym_null] = ACTIONS(305), [anon_sym_undefined] = ACTIONS(307), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -20521,7 +20521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(323), [anon_sym_true] = ACTIONS(328), [anon_sym_false] = ACTIONS(328), - [anon_sym_none] = ACTIONS(328), + [anon_sym_null] = ACTIONS(328), [anon_sym_undefined] = ACTIONS(328), [sym_sink] = ACTIONS(328), [sym_integer] = ACTIONS(328), @@ -20649,7 +20649,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(356), [anon_sym_true] = ACTIONS(361), [anon_sym_false] = ACTIONS(361), - [anon_sym_none] = ACTIONS(361), + [anon_sym_null] = ACTIONS(361), [anon_sym_undefined] = ACTIONS(361), [sym_sink] = ACTIONS(361), [sym_integer] = ACTIONS(361), @@ -20777,7 +20777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(383), [anon_sym_true] = ACTIONS(388), [anon_sym_false] = ACTIONS(388), - [anon_sym_none] = ACTIONS(388), + [anon_sym_null] = ACTIONS(388), [anon_sym_undefined] = ACTIONS(388), [sym_sink] = ACTIONS(388), [sym_integer] = ACTIONS(388), @@ -20905,7 +20905,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(323), [anon_sym_true] = ACTIONS(328), [anon_sym_false] = ACTIONS(328), - [anon_sym_none] = ACTIONS(328), + [anon_sym_null] = ACTIONS(328), [anon_sym_undefined] = ACTIONS(328), [sym_sink] = ACTIONS(328), [sym_integer] = ACTIONS(328), @@ -21033,7 +21033,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(356), [anon_sym_true] = ACTIONS(361), [anon_sym_false] = ACTIONS(361), - [anon_sym_none] = ACTIONS(361), + [anon_sym_null] = ACTIONS(361), [anon_sym_undefined] = ACTIONS(361), [sym_sink] = ACTIONS(361), [sym_integer] = ACTIONS(361), @@ -21161,7 +21161,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(414), [anon_sym_true] = ACTIONS(419), [anon_sym_false] = ACTIONS(419), - [anon_sym_none] = ACTIONS(419), + [anon_sym_null] = ACTIONS(419), [anon_sym_undefined] = ACTIONS(419), [sym_sink] = ACTIONS(419), [sym_integer] = ACTIONS(419), @@ -21287,7 +21287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(443), [anon_sym_true] = ACTIONS(441), [anon_sym_false] = ACTIONS(441), - [anon_sym_none] = ACTIONS(441), + [anon_sym_null] = ACTIONS(441), [anon_sym_undefined] = ACTIONS(441), [sym_sink] = ACTIONS(441), [sym_integer] = ACTIONS(441), @@ -21413,7 +21413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_true] = ACTIONS(445), [anon_sym_false] = ACTIONS(445), - [anon_sym_none] = ACTIONS(445), + [anon_sym_null] = ACTIONS(445), [anon_sym_undefined] = ACTIONS(445), [sym_sink] = ACTIONS(445), [sym_integer] = ACTIONS(445), @@ -21539,7 +21539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(451), [anon_sym_true] = ACTIONS(449), [anon_sym_false] = ACTIONS(449), - [anon_sym_none] = ACTIONS(449), + [anon_sym_null] = ACTIONS(449), [anon_sym_undefined] = ACTIONS(449), [sym_sink] = ACTIONS(449), [sym_integer] = ACTIONS(449), @@ -21665,7 +21665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(455), [anon_sym_true] = ACTIONS(453), [anon_sym_false] = ACTIONS(453), - [anon_sym_none] = ACTIONS(453), + [anon_sym_null] = ACTIONS(453), [anon_sym_undefined] = ACTIONS(453), [sym_sink] = ACTIONS(453), [sym_integer] = ACTIONS(453), @@ -21788,7 +21788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(478), [anon_sym_true] = ACTIONS(469), [anon_sym_false] = ACTIONS(469), - [anon_sym_none] = ACTIONS(469), + [anon_sym_null] = ACTIONS(469), [anon_sym_undefined] = ACTIONS(469), [sym_sink] = ACTIONS(469), [sym_integer] = ACTIONS(469), @@ -21911,7 +21911,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(478), [anon_sym_true] = ACTIONS(469), [anon_sym_false] = ACTIONS(469), - [anon_sym_none] = ACTIONS(469), + [anon_sym_null] = ACTIONS(469), [anon_sym_undefined] = ACTIONS(469), [sym_sink] = ACTIONS(469), [sym_integer] = ACTIONS(469), @@ -22033,7 +22033,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(478), [anon_sym_true] = ACTIONS(469), [anon_sym_false] = ACTIONS(469), - [anon_sym_none] = ACTIONS(469), + [anon_sym_null] = ACTIONS(469), [anon_sym_undefined] = ACTIONS(469), [sym_sink] = ACTIONS(469), [sym_integer] = ACTIONS(469), @@ -22155,7 +22155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(451), [anon_sym_true] = ACTIONS(449), [anon_sym_false] = ACTIONS(449), - [anon_sym_none] = ACTIONS(449), + [anon_sym_null] = ACTIONS(449), [anon_sym_undefined] = ACTIONS(449), [sym_sink] = ACTIONS(449), [sym_integer] = ACTIONS(449), @@ -22277,7 +22277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_true] = ACTIONS(445), [anon_sym_false] = ACTIONS(445), - [anon_sym_none] = ACTIONS(445), + [anon_sym_null] = ACTIONS(445), [anon_sym_undefined] = ACTIONS(445), [sym_sink] = ACTIONS(445), [sym_integer] = ACTIONS(445), @@ -22399,7 +22399,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(443), [anon_sym_true] = ACTIONS(441), [anon_sym_false] = ACTIONS(441), - [anon_sym_none] = ACTIONS(441), + [anon_sym_null] = ACTIONS(441), [anon_sym_undefined] = ACTIONS(441), [sym_sink] = ACTIONS(441), [sym_integer] = ACTIONS(441), @@ -22521,7 +22521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(455), [anon_sym_true] = ACTIONS(453), [anon_sym_false] = ACTIONS(453), - [anon_sym_none] = ACTIONS(453), + [anon_sym_null] = ACTIONS(453), [anon_sym_undefined] = ACTIONS(453), [sym_sink] = ACTIONS(453), [sym_integer] = ACTIONS(453), @@ -22643,7 +22643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(478), [anon_sym_true] = ACTIONS(469), [anon_sym_false] = ACTIONS(469), - [anon_sym_none] = ACTIONS(469), + [anon_sym_null] = ACTIONS(469), [anon_sym_undefined] = ACTIONS(469), [sym_sink] = ACTIONS(469), [sym_integer] = ACTIONS(469), @@ -22765,7 +22765,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(478), [anon_sym_true] = ACTIONS(469), [anon_sym_false] = ACTIONS(469), - [anon_sym_none] = ACTIONS(469), + [anon_sym_null] = ACTIONS(469), [anon_sym_undefined] = ACTIONS(469), [sym_sink] = ACTIONS(469), [sym_integer] = ACTIONS(469), @@ -22801,7 +22801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -22884,7 +22884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -22920,7 +22920,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -23003,7 +23003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -23039,7 +23039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(5224), [sym_string] = STATE(3262), @@ -23122,7 +23122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(572), [anon_sym_false] = ACTIONS(572), - [anon_sym_none] = ACTIONS(574), + [anon_sym_null] = ACTIONS(574), [anon_sym_undefined] = ACTIONS(576), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -23158,7 +23158,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(5224), [sym_string] = STATE(3262), @@ -23241,7 +23241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(572), [anon_sym_false] = ACTIONS(572), - [anon_sym_none] = ACTIONS(574), + [anon_sym_null] = ACTIONS(574), [anon_sym_undefined] = ACTIONS(576), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -23277,7 +23277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -23360,7 +23360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -23396,7 +23396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -23479,7 +23479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -23515,7 +23515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(5224), [sym_string] = STATE(3262), @@ -23598,7 +23598,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(572), [anon_sym_false] = ACTIONS(572), - [anon_sym_none] = ACTIONS(574), + [anon_sym_null] = ACTIONS(574), [anon_sym_undefined] = ACTIONS(576), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -23634,7 +23634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -23717,7 +23717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -23753,7 +23753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(5224), [sym_string] = STATE(3262), @@ -23836,7 +23836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(572), [anon_sym_false] = ACTIONS(572), - [anon_sym_none] = ACTIONS(574), + [anon_sym_null] = ACTIONS(574), [anon_sym_undefined] = ACTIONS(576), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -23872,7 +23872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -23955,7 +23955,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -23991,7 +23991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -24074,7 +24074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -24110,7 +24110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -24193,7 +24193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -24229,7 +24229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -24312,7 +24312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -24348,7 +24348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -24431,7 +24431,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -24467,7 +24467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -24550,7 +24550,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -24586,7 +24586,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -24669,7 +24669,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -24705,7 +24705,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -24788,7 +24788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -24824,7 +24824,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -24907,7 +24907,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -24943,7 +24943,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -25026,7 +25026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -25062,7 +25062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -25145,7 +25145,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -25181,7 +25181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -25264,7 +25264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -25300,7 +25300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -25383,7 +25383,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -25419,7 +25419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -25502,7 +25502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -25538,7 +25538,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -25621,7 +25621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -25657,7 +25657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(5224), [sym_string] = STATE(3262), @@ -25740,7 +25740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(572), [anon_sym_false] = ACTIONS(572), - [anon_sym_none] = ACTIONS(574), + [anon_sym_null] = ACTIONS(574), [anon_sym_undefined] = ACTIONS(576), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -25776,7 +25776,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -25859,7 +25859,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -25895,7 +25895,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(5224), [sym_string] = STATE(3262), @@ -25978,7 +25978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(572), [anon_sym_false] = ACTIONS(572), - [anon_sym_none] = ACTIONS(574), + [anon_sym_null] = ACTIONS(574), [anon_sym_undefined] = ACTIONS(576), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -26014,7 +26014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(5224), [sym_string] = STATE(3262), @@ -26097,7 +26097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(572), [anon_sym_false] = ACTIONS(572), - [anon_sym_none] = ACTIONS(574), + [anon_sym_null] = ACTIONS(574), [anon_sym_undefined] = ACTIONS(576), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -26133,7 +26133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -26216,7 +26216,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -26252,7 +26252,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -26335,7 +26335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -26371,7 +26371,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -26454,7 +26454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -26490,7 +26490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(5224), [sym_string] = STATE(3262), @@ -26573,7 +26573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(572), [anon_sym_false] = ACTIONS(572), - [anon_sym_none] = ACTIONS(574), + [anon_sym_null] = ACTIONS(574), [anon_sym_undefined] = ACTIONS(576), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -26609,7 +26609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -26692,7 +26692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -26728,7 +26728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(5224), [sym_string] = STATE(3262), @@ -26811,7 +26811,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(572), [anon_sym_false] = ACTIONS(572), - [anon_sym_none] = ACTIONS(574), + [anon_sym_null] = ACTIONS(574), [anon_sym_undefined] = ACTIONS(576), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -26847,7 +26847,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -26930,7 +26930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -26966,7 +26966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -27049,7 +27049,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -27085,7 +27085,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -27168,7 +27168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -27204,7 +27204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -27287,7 +27287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -27323,7 +27323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -27406,7 +27406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -27442,7 +27442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -27525,7 +27525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -27561,7 +27561,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -27644,7 +27644,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -27680,7 +27680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -27763,7 +27763,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -27799,7 +27799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -27882,7 +27882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -27918,7 +27918,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -28001,7 +28001,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -28037,7 +28037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -28120,7 +28120,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -28156,7 +28156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -28239,7 +28239,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -28275,7 +28275,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -28358,7 +28358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -28394,7 +28394,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(5224), [sym_string] = STATE(3262), @@ -28477,7 +28477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(572), [anon_sym_false] = ACTIONS(572), - [anon_sym_none] = ACTIONS(574), + [anon_sym_null] = ACTIONS(574), [anon_sym_undefined] = ACTIONS(576), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -28513,7 +28513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(5224), [sym_string] = STATE(3262), @@ -28596,7 +28596,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(572), [anon_sym_false] = ACTIONS(572), - [anon_sym_none] = ACTIONS(574), + [anon_sym_null] = ACTIONS(574), [anon_sym_undefined] = ACTIONS(576), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -28632,7 +28632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -28715,7 +28715,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -28751,7 +28751,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(5224), [sym_string] = STATE(3262), @@ -28834,7 +28834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(572), [anon_sym_false] = ACTIONS(572), - [anon_sym_none] = ACTIONS(574), + [anon_sym_null] = ACTIONS(574), [anon_sym_undefined] = ACTIONS(576), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -28870,7 +28870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(5224), [sym_string] = STATE(3262), @@ -28953,7 +28953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(572), [anon_sym_false] = ACTIONS(572), - [anon_sym_none] = ACTIONS(574), + [anon_sym_null] = ACTIONS(574), [anon_sym_undefined] = ACTIONS(576), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -28989,7 +28989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -29072,7 +29072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -29108,7 +29108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(5224), [sym_string] = STATE(3262), @@ -29191,7 +29191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(572), [anon_sym_false] = ACTIONS(572), - [anon_sym_none] = ACTIONS(574), + [anon_sym_null] = ACTIONS(574), [anon_sym_undefined] = ACTIONS(576), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -29227,7 +29227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -29310,7 +29310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -29346,7 +29346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -29429,7 +29429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -29465,7 +29465,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -29548,7 +29548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -29584,7 +29584,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -29667,7 +29667,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -29703,7 +29703,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -29786,7 +29786,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -29822,7 +29822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -29905,7 +29905,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -29941,7 +29941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -30024,7 +30024,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -30060,7 +30060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -30143,7 +30143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -30179,7 +30179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -30262,7 +30262,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -30298,7 +30298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -30381,7 +30381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -30417,7 +30417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -30500,7 +30500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -30536,7 +30536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -30619,7 +30619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -30655,7 +30655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -30738,7 +30738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -30774,7 +30774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(5224), [sym_string] = STATE(3262), @@ -30857,7 +30857,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(572), [anon_sym_false] = ACTIONS(572), - [anon_sym_none] = ACTIONS(574), + [anon_sym_null] = ACTIONS(574), [anon_sym_undefined] = ACTIONS(576), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -30893,7 +30893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(5224), [sym_string] = STATE(3262), @@ -30976,7 +30976,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(572), [anon_sym_false] = ACTIONS(572), - [anon_sym_none] = ACTIONS(574), + [anon_sym_null] = ACTIONS(574), [anon_sym_undefined] = ACTIONS(576), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -31012,7 +31012,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -31095,7 +31095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -31131,7 +31131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(5224), [sym_string] = STATE(3262), @@ -31214,7 +31214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(572), [anon_sym_false] = ACTIONS(572), - [anon_sym_none] = ACTIONS(574), + [anon_sym_null] = ACTIONS(574), [anon_sym_undefined] = ACTIONS(576), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -31250,7 +31250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -31333,7 +31333,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -31369,7 +31369,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(5224), [sym_string] = STATE(3262), @@ -31452,7 +31452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(572), [anon_sym_false] = ACTIONS(572), - [anon_sym_none] = ACTIONS(574), + [anon_sym_null] = ACTIONS(574), [anon_sym_undefined] = ACTIONS(576), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -31488,7 +31488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -31571,7 +31571,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -31607,7 +31607,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -31690,7 +31690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -31726,7 +31726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -31809,7 +31809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -31845,7 +31845,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -31928,7 +31928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -31964,7 +31964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -32047,7 +32047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -32083,7 +32083,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -32166,7 +32166,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -32202,7 +32202,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -32285,7 +32285,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -32321,7 +32321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -32404,7 +32404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -32440,7 +32440,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -32523,7 +32523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -32559,7 +32559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -32642,7 +32642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -32678,7 +32678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -32761,7 +32761,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -32797,7 +32797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -32880,7 +32880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -32916,7 +32916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(5224), [sym_string] = STATE(3262), @@ -32999,7 +32999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(572), [anon_sym_false] = ACTIONS(572), - [anon_sym_none] = ACTIONS(574), + [anon_sym_null] = ACTIONS(574), [anon_sym_undefined] = ACTIONS(576), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -33035,7 +33035,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(5224), [sym_string] = STATE(3262), @@ -33118,7 +33118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(572), [anon_sym_false] = ACTIONS(572), - [anon_sym_none] = ACTIONS(574), + [anon_sym_null] = ACTIONS(574), [anon_sym_undefined] = ACTIONS(576), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -33154,7 +33154,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -33237,7 +33237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -33273,7 +33273,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -33356,7 +33356,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -33392,7 +33392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(5224), [sym_string] = STATE(3262), @@ -33475,7 +33475,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(572), [anon_sym_false] = ACTIONS(572), - [anon_sym_none] = ACTIONS(574), + [anon_sym_null] = ACTIONS(574), [anon_sym_undefined] = ACTIONS(576), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -33511,7 +33511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -33594,7 +33594,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -33630,7 +33630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(5224), [sym_string] = STATE(3262), @@ -33713,7 +33713,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(572), [anon_sym_false] = ACTIONS(572), - [anon_sym_none] = ACTIONS(574), + [anon_sym_null] = ACTIONS(574), [anon_sym_undefined] = ACTIONS(576), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -33749,7 +33749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -33832,7 +33832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -33868,7 +33868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -33951,7 +33951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -33987,7 +33987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -34070,7 +34070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -34106,7 +34106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -34189,7 +34189,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -34225,7 +34225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -34308,7 +34308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -34344,7 +34344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -34427,7 +34427,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -34463,7 +34463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -34546,7 +34546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -34582,7 +34582,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -34665,7 +34665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -34701,7 +34701,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -34784,7 +34784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -34820,7 +34820,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -34903,7 +34903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -34939,7 +34939,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -35022,7 +35022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -35058,7 +35058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -35141,7 +35141,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -35177,7 +35177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(5224), [sym_string] = STATE(3262), @@ -35260,7 +35260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(572), [anon_sym_false] = ACTIONS(572), - [anon_sym_none] = ACTIONS(574), + [anon_sym_null] = ACTIONS(574), [anon_sym_undefined] = ACTIONS(576), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -35296,7 +35296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -35379,7 +35379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -35415,7 +35415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -35498,7 +35498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -35534,7 +35534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(5224), [sym_string] = STATE(3262), @@ -35617,7 +35617,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(572), [anon_sym_false] = ACTIONS(572), - [anon_sym_none] = ACTIONS(574), + [anon_sym_null] = ACTIONS(574), [anon_sym_undefined] = ACTIONS(576), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -35669,7 +35669,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(163), @@ -35735,7 +35735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -35771,7 +35771,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -35853,7 +35853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -35889,7 +35889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -35971,7 +35971,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -36007,7 +36007,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -36089,7 +36089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -36125,7 +36125,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym__field_name] = STATE(4232), [sym_string] = STATE(3262), @@ -36207,7 +36207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(546), [anon_sym_false] = ACTIONS(546), - [anon_sym_none] = ACTIONS(548), + [anon_sym_null] = ACTIONS(548), [anon_sym_undefined] = ACTIONS(550), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -36259,7 +36259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -36324,7 +36324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -36376,7 +36376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -36441,7 +36441,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -36493,7 +36493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -36558,7 +36558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -36610,7 +36610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(163), @@ -36675,7 +36675,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -36727,7 +36727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -36792,7 +36792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -36844,7 +36844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(166), @@ -36909,7 +36909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -36961,7 +36961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(169), @@ -37026,7 +37026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -37078,7 +37078,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -37143,7 +37143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -37195,7 +37195,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(171), @@ -37260,7 +37260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -37312,7 +37312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -37377,7 +37377,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -37429,7 +37429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(173), @@ -37494,7 +37494,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -37546,7 +37546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -37611,7 +37611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -37663,7 +37663,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(164), @@ -37728,7 +37728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -37780,7 +37780,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(162), @@ -37845,7 +37845,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -37897,7 +37897,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(177), @@ -37962,7 +37962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -38014,7 +38014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -38079,7 +38079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -38131,7 +38131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(179), @@ -38196,7 +38196,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -38248,7 +38248,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -38313,7 +38313,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -38365,7 +38365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -38429,7 +38429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -38481,7 +38481,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -38545,7 +38545,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -38597,7 +38597,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -38661,7 +38661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -38713,7 +38713,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(188), @@ -38777,7 +38777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -38829,7 +38829,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -38893,7 +38893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -38945,7 +38945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(189), @@ -39009,7 +39009,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -39061,7 +39061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(190), @@ -39125,7 +39125,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -39177,7 +39177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -39241,7 +39241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -39293,7 +39293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -39357,7 +39357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -39409,7 +39409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -39473,7 +39473,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -39525,7 +39525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -39589,7 +39589,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -39641,7 +39641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(192), @@ -39705,7 +39705,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -39757,7 +39757,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -39821,7 +39821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -39873,7 +39873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(220), @@ -39937,7 +39937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -39989,7 +39989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -40053,7 +40053,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -40105,7 +40105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(230), @@ -40169,7 +40169,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -40220,7 +40220,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_block_repeat1] = STATE(199), @@ -40285,7 +40285,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -40337,7 +40337,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -40401,7 +40401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -40453,7 +40453,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(231), @@ -40517,7 +40517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -40568,7 +40568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_block_repeat1] = STATE(248), @@ -40633,7 +40633,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -40685,7 +40685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(232), @@ -40749,7 +40749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -40801,7 +40801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(233), @@ -40865,7 +40865,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -40917,7 +40917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(206), @@ -40981,7 +40981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -41033,7 +41033,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -41097,7 +41097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -41149,7 +41149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -41213,7 +41213,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -41265,7 +41265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(269), @@ -41329,7 +41329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -41381,7 +41381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -41445,7 +41445,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -41497,7 +41497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(213), @@ -41561,7 +41561,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -41613,7 +41613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(215), @@ -41677,7 +41677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -41729,7 +41729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -41793,7 +41793,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -41845,7 +41845,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(274), @@ -41909,7 +41909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -41961,7 +41961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -42025,7 +42025,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -42077,7 +42077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(222), @@ -42141,7 +42141,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -42193,7 +42193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -42257,7 +42257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -42309,7 +42309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(225), @@ -42373,7 +42373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -42425,7 +42425,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -42489,7 +42489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -42541,7 +42541,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(227), @@ -42605,7 +42605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -42657,7 +42657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -42721,7 +42721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -42773,7 +42773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -42837,7 +42837,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -42889,7 +42889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(258), @@ -42953,7 +42953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -43005,7 +43005,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -43069,7 +43069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -43121,7 +43121,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(263), @@ -43185,7 +43185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -43237,7 +43237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -43301,7 +43301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -43353,7 +43353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(234), @@ -43417,7 +43417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -43469,7 +43469,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(235), @@ -43533,7 +43533,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -43585,7 +43585,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -43649,7 +43649,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -43701,7 +43701,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(237), @@ -43765,7 +43765,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -43817,7 +43817,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -43881,7 +43881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -43933,7 +43933,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(240), @@ -43997,7 +43997,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -44049,7 +44049,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(265), @@ -44113,7 +44113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -44165,7 +44165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -44229,7 +44229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -44281,7 +44281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -44345,7 +44345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -44397,7 +44397,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -44461,7 +44461,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -44513,7 +44513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -44577,7 +44577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -44629,7 +44629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -44693,7 +44693,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -44745,7 +44745,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -44809,7 +44809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -44861,7 +44861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(243), @@ -44925,7 +44925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -44977,7 +44977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -45041,7 +45041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -45093,7 +45093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(244), @@ -45157,7 +45157,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -45209,7 +45209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(245), @@ -45273,7 +45273,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -45325,7 +45325,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -45389,7 +45389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -45441,7 +45441,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(268), @@ -45505,7 +45505,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -45556,7 +45556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(478), @@ -45621,7 +45621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -45673,7 +45673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -45737,7 +45737,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -45789,7 +45789,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -45853,7 +45853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -45905,7 +45905,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -45969,7 +45969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -46021,7 +46021,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(247), @@ -46085,7 +46085,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -46137,7 +46137,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -46201,7 +46201,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -46252,7 +46252,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_block_repeat1] = STATE(248), @@ -46317,7 +46317,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1035), [anon_sym_true] = ACTIONS(1038), [anon_sym_false] = ACTIONS(1038), - [anon_sym_none] = ACTIONS(1041), + [anon_sym_null] = ACTIONS(1041), [anon_sym_undefined] = ACTIONS(1044), [sym_sink] = ACTIONS(1047), [sym_integer] = ACTIONS(1050), @@ -46369,7 +46369,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(252), @@ -46433,7 +46433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -46485,7 +46485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -46549,7 +46549,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -46601,7 +46601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(327), @@ -46665,7 +46665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -46717,7 +46717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -46781,7 +46781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -46833,7 +46833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(255), @@ -46897,7 +46897,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -46949,7 +46949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -47013,7 +47013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -47065,7 +47065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -47129,7 +47129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -47181,7 +47181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(259), @@ -47245,7 +47245,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -47297,7 +47297,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -47361,7 +47361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -47413,7 +47413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -47477,7 +47477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -47529,7 +47529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -47593,7 +47593,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -47645,7 +47645,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(262), @@ -47709,7 +47709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -47761,7 +47761,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -47825,7 +47825,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -47877,7 +47877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -47941,7 +47941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -47993,7 +47993,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -48057,7 +48057,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -48108,7 +48108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_block_repeat1] = STATE(267), @@ -48173,7 +48173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -48225,7 +48225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -48289,7 +48289,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -48341,7 +48341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(273), @@ -48405,7 +48405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -48456,7 +48456,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_block_repeat1] = STATE(248), @@ -48521,7 +48521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -48573,7 +48573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -48637,7 +48637,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -48689,7 +48689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -48753,7 +48753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -48805,7 +48805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(275), @@ -48869,7 +48869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -48921,7 +48921,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -48985,7 +48985,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -49037,7 +49037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(338), @@ -49101,7 +49101,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -49153,7 +49153,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -49217,7 +49217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -49269,7 +49269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -49333,7 +49333,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -49385,7 +49385,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -49449,7 +49449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -49501,7 +49501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(279), @@ -49565,7 +49565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -49617,7 +49617,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -49681,7 +49681,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -49733,7 +49733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(194), @@ -49797,7 +49797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -49849,7 +49849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -49913,7 +49913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -49965,7 +49965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(197), @@ -50029,7 +50029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -50081,7 +50081,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(284), @@ -50145,7 +50145,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -50197,7 +50197,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -50261,7 +50261,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -50313,7 +50313,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(204), @@ -50377,7 +50377,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -50429,7 +50429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -50493,7 +50493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -50545,7 +50545,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(290), @@ -50609,7 +50609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -50661,7 +50661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(293), @@ -50725,7 +50725,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -50777,7 +50777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -50841,7 +50841,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -50893,7 +50893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(297), @@ -50957,7 +50957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -51008,7 +51008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_block_repeat1] = STATE(292), @@ -51073,7 +51073,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -51125,7 +51125,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -51189,7 +51189,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -51241,7 +51241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(303), @@ -51305,7 +51305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -51356,7 +51356,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_block_repeat1] = STATE(248), @@ -51421,7 +51421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -51473,7 +51473,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -51537,7 +51537,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -51589,7 +51589,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(306), @@ -51653,7 +51653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -51705,7 +51705,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(300), @@ -51769,7 +51769,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -51821,7 +51821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -51885,7 +51885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -51937,7 +51937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -52001,7 +52001,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -52053,7 +52053,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(308), @@ -52117,7 +52117,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -52169,7 +52169,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(309), @@ -52233,7 +52233,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -52285,7 +52285,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -52349,7 +52349,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -52401,7 +52401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(305), @@ -52465,7 +52465,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -52517,7 +52517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -52581,7 +52581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -52633,7 +52633,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -52697,7 +52697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -52749,7 +52749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(311), @@ -52813,7 +52813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -52865,7 +52865,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -52929,7 +52929,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -52981,7 +52981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -53045,7 +53045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -53097,7 +53097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(314), @@ -53161,7 +53161,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -53213,7 +53213,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -53277,7 +53277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -53329,7 +53329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -53393,7 +53393,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -53445,7 +53445,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(315), @@ -53509,7 +53509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -53561,7 +53561,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -53625,7 +53625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -53677,7 +53677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(316), @@ -53741,7 +53741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -53793,7 +53793,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(317), @@ -53857,7 +53857,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -53909,7 +53909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -53973,7 +53973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -54025,7 +54025,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -54089,7 +54089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -54141,7 +54141,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -54205,7 +54205,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -54257,7 +54257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -54321,7 +54321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -54372,7 +54372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_block_repeat1] = STATE(321), @@ -54437,7 +54437,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -54489,7 +54489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(320), @@ -54553,7 +54553,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -54605,7 +54605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -54669,7 +54669,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -54720,7 +54720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_block_repeat1] = STATE(248), @@ -54785,7 +54785,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -54837,7 +54837,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -54901,7 +54901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -54952,7 +54952,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_block_repeat1] = STATE(248), @@ -55017,7 +55017,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -55068,7 +55068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_block_repeat1] = STATE(323), @@ -55133,7 +55133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -55185,7 +55185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(332), @@ -55249,7 +55249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -55301,7 +55301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -55365,7 +55365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -55417,7 +55417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -55481,7 +55481,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -55532,7 +55532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_block_repeat1] = STATE(329), @@ -55597,7 +55597,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -55648,7 +55648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_block_repeat1] = STATE(248), @@ -55713,7 +55713,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -55765,7 +55765,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(217), @@ -55829,7 +55829,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -55881,7 +55881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(218), @@ -55945,7 +55945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -55997,7 +55997,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -56061,7 +56061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -56113,7 +56113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(364), @@ -56177,7 +56177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -56229,7 +56229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(396), @@ -56293,7 +56293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -56345,7 +56345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -56409,7 +56409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -56460,7 +56460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_block_repeat1] = STATE(337), @@ -56525,7 +56525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -56576,7 +56576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_block_repeat1] = STATE(248), @@ -56641,7 +56641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -56693,7 +56693,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -56757,7 +56757,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -56809,7 +56809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(422), @@ -56873,7 +56873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -56925,7 +56925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(342), @@ -56989,7 +56989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -57041,7 +57041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(345), @@ -57105,7 +57105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -57157,7 +57157,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -57221,7 +57221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -57273,7 +57273,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(348), @@ -57337,7 +57337,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -57389,7 +57389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(350), @@ -57453,7 +57453,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -57505,7 +57505,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -57569,7 +57569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -57621,7 +57621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(352), @@ -57685,7 +57685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -57737,7 +57737,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(353), @@ -57801,7 +57801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -57853,7 +57853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -57917,7 +57917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -57969,7 +57969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(355), @@ -58033,7 +58033,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -58085,7 +58085,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -58149,7 +58149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -58201,7 +58201,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(358), @@ -58265,7 +58265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -58317,7 +58317,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -58381,7 +58381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -58433,7 +58433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -58497,7 +58497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -58549,7 +58549,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(359), @@ -58613,7 +58613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -58665,7 +58665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -58729,7 +58729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -58781,7 +58781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(360), @@ -58845,7 +58845,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -58897,7 +58897,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(361), @@ -58961,7 +58961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -59013,7 +59013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -59077,7 +59077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -59129,7 +59129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -59193,7 +59193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -59245,7 +59245,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -59309,7 +59309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -59361,7 +59361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -59425,7 +59425,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -59477,7 +59477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(363), @@ -59541,7 +59541,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -59593,7 +59593,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -59657,7 +59657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -59709,7 +59709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -59773,7 +59773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -59825,7 +59825,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(425), @@ -59889,7 +59889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -59941,7 +59941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(368), @@ -60005,7 +60005,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -60057,7 +60057,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(371), @@ -60121,7 +60121,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -60173,7 +60173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -60237,7 +60237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -60289,7 +60289,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(374), @@ -60353,7 +60353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -60405,7 +60405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(376), @@ -60469,7 +60469,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -60521,7 +60521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -60585,7 +60585,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -60637,7 +60637,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(378), @@ -60701,7 +60701,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -60753,7 +60753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(379), @@ -60817,7 +60817,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -60869,7 +60869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -60933,7 +60933,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -60985,7 +60985,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(381), @@ -61049,7 +61049,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -61101,7 +61101,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -61165,7 +61165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -61217,7 +61217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(384), @@ -61281,7 +61281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -61333,7 +61333,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -61397,7 +61397,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -61449,7 +61449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -61513,7 +61513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -61565,7 +61565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(385), @@ -61629,7 +61629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -61681,7 +61681,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -61745,7 +61745,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -61797,7 +61797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(386), @@ -61861,7 +61861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -61913,7 +61913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(387), @@ -61977,7 +61977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -62029,7 +62029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -62093,7 +62093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -62145,7 +62145,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -62209,7 +62209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -62261,7 +62261,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -62325,7 +62325,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -62377,7 +62377,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -62441,7 +62441,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -62493,7 +62493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(389), @@ -62557,7 +62557,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -62609,7 +62609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -62673,7 +62673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -62725,7 +62725,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(392), @@ -62789,7 +62789,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -62841,7 +62841,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -62905,7 +62905,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -62957,7 +62957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -63021,7 +63021,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -63073,7 +63073,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(395), @@ -63137,7 +63137,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -63189,7 +63189,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -63253,7 +63253,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -63305,7 +63305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -63369,7 +63369,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -63421,7 +63421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -63485,7 +63485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -63537,7 +63537,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(451), @@ -63601,7 +63601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -63653,7 +63653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(400), @@ -63717,7 +63717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -63769,7 +63769,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(403), @@ -63833,7 +63833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -63885,7 +63885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -63949,7 +63949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -64001,7 +64001,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(406), @@ -64065,7 +64065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -64117,7 +64117,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(408), @@ -64181,7 +64181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -64233,7 +64233,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -64297,7 +64297,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -64349,7 +64349,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(410), @@ -64413,7 +64413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -64465,7 +64465,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(411), @@ -64529,7 +64529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -64581,7 +64581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -64645,7 +64645,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -64697,7 +64697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(413), @@ -64761,7 +64761,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -64813,7 +64813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -64877,7 +64877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -64929,7 +64929,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(416), @@ -64993,7 +64993,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -65045,7 +65045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -65109,7 +65109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -65161,7 +65161,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -65225,7 +65225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -65277,7 +65277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(417), @@ -65341,7 +65341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -65393,7 +65393,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -65457,7 +65457,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -65509,7 +65509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(418), @@ -65573,7 +65573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -65625,7 +65625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(419), @@ -65689,7 +65689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -65741,7 +65741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -65805,7 +65805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -65857,7 +65857,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -65921,7 +65921,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -65973,7 +65973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -66037,7 +66037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -66089,7 +66089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -66153,7 +66153,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -66205,7 +66205,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(421), @@ -66269,7 +66269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -66321,7 +66321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -66385,7 +66385,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -66437,7 +66437,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -66501,7 +66501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -66553,7 +66553,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(181), @@ -66617,7 +66617,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -66669,7 +66669,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(182), @@ -66733,7 +66733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -66785,7 +66785,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -66849,7 +66849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -66901,7 +66901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(428), @@ -66965,7 +66965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -67017,7 +67017,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(431), @@ -67081,7 +67081,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -67133,7 +67133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -67197,7 +67197,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -67249,7 +67249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(434), @@ -67313,7 +67313,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -67365,7 +67365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(436), @@ -67429,7 +67429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -67481,7 +67481,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -67545,7 +67545,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -67597,7 +67597,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(438), @@ -67661,7 +67661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -67713,7 +67713,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(439), @@ -67777,7 +67777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -67829,7 +67829,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -67893,7 +67893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -67945,7 +67945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(441), @@ -68009,7 +68009,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -68061,7 +68061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -68125,7 +68125,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -68177,7 +68177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(444), @@ -68241,7 +68241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -68293,7 +68293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -68357,7 +68357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -68409,7 +68409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -68473,7 +68473,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -68525,7 +68525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(180), @@ -68589,7 +68589,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -68641,7 +68641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -68705,7 +68705,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -68757,7 +68757,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(446), @@ -68821,7 +68821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -68873,7 +68873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(447), @@ -68937,7 +68937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -68989,7 +68989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -69053,7 +69053,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -69105,7 +69105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -69169,7 +69169,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -69221,7 +69221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -69285,7 +69285,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -69337,7 +69337,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -69401,7 +69401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -69453,7 +69453,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(449), @@ -69517,7 +69517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -69569,7 +69569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -69633,7 +69633,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -69685,7 +69685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(184), @@ -69749,7 +69749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -69801,7 +69801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -69865,7 +69865,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -69917,7 +69917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(454), @@ -69981,7 +69981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -70033,7 +70033,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(457), @@ -70097,7 +70097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -70149,7 +70149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -70213,7 +70213,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -70265,7 +70265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(460), @@ -70329,7 +70329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -70381,7 +70381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(462), @@ -70445,7 +70445,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -70497,7 +70497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -70561,7 +70561,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -70613,7 +70613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(464), @@ -70677,7 +70677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -70729,7 +70729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(465), @@ -70793,7 +70793,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -70845,7 +70845,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -70909,7 +70909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -70961,7 +70961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(467), @@ -71025,7 +71025,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -71077,7 +71077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -71141,7 +71141,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -71193,7 +71193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(470), @@ -71257,7 +71257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -71309,7 +71309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -71373,7 +71373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -71425,7 +71425,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -71489,7 +71489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -71541,7 +71541,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(471), @@ -71605,7 +71605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -71657,7 +71657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -71721,7 +71721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -71773,7 +71773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(472), @@ -71837,7 +71837,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -71889,7 +71889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(473), @@ -71953,7 +71953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -72005,7 +72005,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -72069,7 +72069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -72121,7 +72121,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -72185,7 +72185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -72237,7 +72237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -72301,7 +72301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -72353,7 +72353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -72417,7 +72417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -72469,7 +72469,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(445), @@ -72533,7 +72533,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -72585,7 +72585,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(187), @@ -72649,7 +72649,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -72700,7 +72700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -72764,7 +72764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -72815,7 +72815,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -72879,7 +72879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -72930,7 +72930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -72994,7 +72994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -73045,7 +73045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(480), @@ -73109,7 +73109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -73160,7 +73160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -73224,7 +73224,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -73275,7 +73275,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(483), @@ -73339,7 +73339,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -73390,7 +73390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(484), @@ -73454,7 +73454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -73505,7 +73505,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -73569,7 +73569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -73620,7 +73620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -73684,7 +73684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -73735,7 +73735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(487), @@ -73799,7 +73799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -73850,7 +73850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(490), @@ -73914,7 +73914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -73965,7 +73965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -74029,7 +74029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -74080,7 +74080,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(489), @@ -74144,7 +74144,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -74195,7 +74195,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -74259,7 +74259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(882), [sym_integer] = ACTIONS(103), @@ -74310,7 +74310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -74374,7 +74374,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(860), [sym_integer] = ACTIONS(103), @@ -74425,7 +74425,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -74489,7 +74489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -74540,7 +74540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(498), @@ -74604,7 +74604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -74655,7 +74655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(495), @@ -74719,7 +74719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -74770,7 +74770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(477), @@ -74834,7 +74834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -74885,7 +74885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -74949,7 +74949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -75000,7 +75000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(515), @@ -75064,7 +75064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -75115,7 +75115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -75179,7 +75179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -75230,7 +75230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -75294,7 +75294,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -75345,7 +75345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(502), @@ -75409,7 +75409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -75460,7 +75460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -75524,7 +75524,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -75575,7 +75575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(503), @@ -75639,7 +75639,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -75690,7 +75690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -75754,7 +75754,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -75805,7 +75805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -75869,7 +75869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -75920,7 +75920,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(506), @@ -75984,7 +75984,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -76035,7 +76035,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(510), @@ -76099,7 +76099,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -76150,7 +76150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -76214,7 +76214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -76265,7 +76265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(508), @@ -76329,7 +76329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -76380,7 +76380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -76444,7 +76444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(898), [sym_integer] = ACTIONS(223), @@ -76495,7 +76495,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(528), @@ -76559,7 +76559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -76610,7 +76610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -76674,7 +76674,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -76725,7 +76725,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(513), @@ -76789,7 +76789,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -76840,7 +76840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(497), @@ -76904,7 +76904,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -76955,7 +76955,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -77019,7 +77019,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(137), [sym_integer] = ACTIONS(103), @@ -77070,7 +77070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(516), @@ -77134,7 +77134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -77185,7 +77185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -77249,7 +77249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -77300,7 +77300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -77364,7 +77364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -77415,7 +77415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(518), @@ -77479,7 +77479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -77530,7 +77530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -77594,7 +77594,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -77645,7 +77645,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(520), @@ -77709,7 +77709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -77760,7 +77760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -77824,7 +77824,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(247), [sym_integer] = ACTIONS(103), @@ -77875,7 +77875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(500), @@ -77939,7 +77939,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(101), [sym_integer] = ACTIONS(103), @@ -77990,7 +77990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(524), @@ -78054,7 +78054,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -78105,7 +78105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(478), @@ -78169,7 +78169,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -78220,7 +78220,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -78284,7 +78284,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -78335,7 +78335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(491), @@ -78399,7 +78399,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(165), [sym_integer] = ACTIONS(103), @@ -78450,7 +78450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -78514,7 +78514,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -78565,7 +78565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(476), @@ -78629,7 +78629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -78680,7 +78680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -78744,7 +78744,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(309), [sym_integer] = ACTIONS(103), @@ -78795,7 +78795,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(526), @@ -78859,7 +78859,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(221), [sym_integer] = ACTIONS(223), @@ -78973,7 +78973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1356), [anon_sym_false] = ACTIONS(1356), - [anon_sym_none] = ACTIONS(1356), + [anon_sym_null] = ACTIONS(1356), [anon_sym_undefined] = ACTIONS(1356), [sym_sink] = ACTIONS(1356), [sym_integer] = ACTIONS(1356), @@ -79087,7 +79087,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1356), [anon_sym_false] = ACTIONS(1356), - [anon_sym_none] = ACTIONS(1356), + [anon_sym_null] = ACTIONS(1356), [anon_sym_undefined] = ACTIONS(1356), [sym_sink] = ACTIONS(1356), [sym_integer] = ACTIONS(1356), @@ -79201,7 +79201,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1356), [anon_sym_false] = ACTIONS(1356), - [anon_sym_none] = ACTIONS(1356), + [anon_sym_null] = ACTIONS(1356), [anon_sym_undefined] = ACTIONS(1356), [sym_sink] = ACTIONS(1356), [sym_integer] = ACTIONS(1356), @@ -79315,7 +79315,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1356), [anon_sym_false] = ACTIONS(1356), - [anon_sym_none] = ACTIONS(1356), + [anon_sym_null] = ACTIONS(1356), [anon_sym_undefined] = ACTIONS(1356), [sym_sink] = ACTIONS(1356), [sym_integer] = ACTIONS(1356), @@ -79429,7 +79429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1356), [anon_sym_false] = ACTIONS(1356), - [anon_sym_none] = ACTIONS(1356), + [anon_sym_null] = ACTIONS(1356), [anon_sym_undefined] = ACTIONS(1356), [sym_sink] = ACTIONS(1356), [sym_integer] = ACTIONS(1356), @@ -79543,7 +79543,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1356), [anon_sym_false] = ACTIONS(1356), - [anon_sym_none] = ACTIONS(1356), + [anon_sym_null] = ACTIONS(1356), [anon_sym_undefined] = ACTIONS(1356), [sym_sink] = ACTIONS(1356), [sym_integer] = ACTIONS(1356), @@ -79657,7 +79657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1388), [anon_sym_false] = ACTIONS(1388), - [anon_sym_none] = ACTIONS(1388), + [anon_sym_null] = ACTIONS(1388), [anon_sym_undefined] = ACTIONS(1388), [sym_sink] = ACTIONS(1388), [sym_integer] = ACTIONS(1388), @@ -79771,7 +79771,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1388), [anon_sym_false] = ACTIONS(1388), - [anon_sym_none] = ACTIONS(1388), + [anon_sym_null] = ACTIONS(1388), [anon_sym_undefined] = ACTIONS(1388), [sym_sink] = ACTIONS(1388), [sym_integer] = ACTIONS(1388), @@ -79885,7 +79885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1392), [anon_sym_false] = ACTIONS(1392), - [anon_sym_none] = ACTIONS(1392), + [anon_sym_null] = ACTIONS(1392), [anon_sym_undefined] = ACTIONS(1392), [sym_sink] = ACTIONS(1392), [sym_integer] = ACTIONS(1392), @@ -79999,7 +79999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1392), [anon_sym_false] = ACTIONS(1392), - [anon_sym_none] = ACTIONS(1392), + [anon_sym_null] = ACTIONS(1392), [anon_sym_undefined] = ACTIONS(1392), [sym_sink] = ACTIONS(1392), [sym_integer] = ACTIONS(1392), @@ -80113,7 +80113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1356), [anon_sym_false] = ACTIONS(1356), - [anon_sym_none] = ACTIONS(1356), + [anon_sym_null] = ACTIONS(1356), [anon_sym_undefined] = ACTIONS(1356), [sym_sink] = ACTIONS(1356), [sym_integer] = ACTIONS(1356), @@ -80227,7 +80227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1396), [anon_sym_false] = ACTIONS(1396), - [anon_sym_none] = ACTIONS(1396), + [anon_sym_null] = ACTIONS(1396), [anon_sym_undefined] = ACTIONS(1396), [sym_sink] = ACTIONS(1396), [sym_integer] = ACTIONS(1396), @@ -80341,7 +80341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1398), [anon_sym_true] = ACTIONS(1400), [anon_sym_false] = ACTIONS(1400), - [anon_sym_none] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1400), [anon_sym_undefined] = ACTIONS(1400), [sym_sink] = ACTIONS(1400), [sym_integer] = ACTIONS(1400), @@ -80455,7 +80455,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1392), [anon_sym_false] = ACTIONS(1392), - [anon_sym_none] = ACTIONS(1392), + [anon_sym_null] = ACTIONS(1392), [anon_sym_undefined] = ACTIONS(1392), [sym_sink] = ACTIONS(1392), [sym_integer] = ACTIONS(1392), @@ -80569,7 +80569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1392), [anon_sym_false] = ACTIONS(1392), - [anon_sym_none] = ACTIONS(1392), + [anon_sym_null] = ACTIONS(1392), [anon_sym_undefined] = ACTIONS(1392), [sym_sink] = ACTIONS(1392), [sym_integer] = ACTIONS(1392), @@ -80683,7 +80683,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1404), [anon_sym_false] = ACTIONS(1404), - [anon_sym_none] = ACTIONS(1404), + [anon_sym_null] = ACTIONS(1404), [anon_sym_undefined] = ACTIONS(1404), [sym_sink] = ACTIONS(1404), [sym_integer] = ACTIONS(1404), @@ -80797,7 +80797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1406), [anon_sym_true] = ACTIONS(1408), [anon_sym_false] = ACTIONS(1408), - [anon_sym_none] = ACTIONS(1408), + [anon_sym_null] = ACTIONS(1408), [anon_sym_undefined] = ACTIONS(1408), [sym_sink] = ACTIONS(1408), [sym_integer] = ACTIONS(1408), @@ -80911,7 +80911,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1392), [anon_sym_false] = ACTIONS(1392), - [anon_sym_none] = ACTIONS(1392), + [anon_sym_null] = ACTIONS(1392), [anon_sym_undefined] = ACTIONS(1392), [sym_sink] = ACTIONS(1392), [sym_integer] = ACTIONS(1392), @@ -81025,7 +81025,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1413), [anon_sym_true] = ACTIONS(1415), [anon_sym_false] = ACTIONS(1415), - [anon_sym_none] = ACTIONS(1415), + [anon_sym_null] = ACTIONS(1415), [anon_sym_undefined] = ACTIONS(1415), [sym_sink] = ACTIONS(1415), [sym_integer] = ACTIONS(1415), @@ -81139,7 +81139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1422), [anon_sym_false] = ACTIONS(1422), - [anon_sym_none] = ACTIONS(1422), + [anon_sym_null] = ACTIONS(1422), [anon_sym_undefined] = ACTIONS(1422), [sym_sink] = ACTIONS(1422), [sym_integer] = ACTIONS(1422), @@ -81253,7 +81253,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1424), [anon_sym_true] = ACTIONS(1426), [anon_sym_false] = ACTIONS(1426), - [anon_sym_none] = ACTIONS(1426), + [anon_sym_null] = ACTIONS(1426), [anon_sym_undefined] = ACTIONS(1426), [sym_sink] = ACTIONS(1426), [sym_integer] = ACTIONS(1426), @@ -81367,7 +81367,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1392), [anon_sym_false] = ACTIONS(1392), - [anon_sym_none] = ACTIONS(1392), + [anon_sym_null] = ACTIONS(1392), [anon_sym_undefined] = ACTIONS(1392), [sym_sink] = ACTIONS(1392), [sym_integer] = ACTIONS(1392), @@ -81481,7 +81481,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1404), [anon_sym_false] = ACTIONS(1404), - [anon_sym_none] = ACTIONS(1404), + [anon_sym_null] = ACTIONS(1404), [anon_sym_undefined] = ACTIONS(1404), [sym_sink] = ACTIONS(1404), [sym_integer] = ACTIONS(1404), @@ -81595,7 +81595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1428), [anon_sym_true] = ACTIONS(1430), [anon_sym_false] = ACTIONS(1430), - [anon_sym_none] = ACTIONS(1430), + [anon_sym_null] = ACTIONS(1430), [anon_sym_undefined] = ACTIONS(1430), [sym_sink] = ACTIONS(1430), [sym_integer] = ACTIONS(1430), @@ -81709,7 +81709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1392), [anon_sym_false] = ACTIONS(1392), - [anon_sym_none] = ACTIONS(1392), + [anon_sym_null] = ACTIONS(1392), [anon_sym_undefined] = ACTIONS(1392), [sym_sink] = ACTIONS(1392), [sym_integer] = ACTIONS(1392), @@ -81822,7 +81822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1432), [anon_sym_true] = ACTIONS(1434), [anon_sym_false] = ACTIONS(1434), - [anon_sym_none] = ACTIONS(1434), + [anon_sym_null] = ACTIONS(1434), [anon_sym_undefined] = ACTIONS(1434), [sym_sink] = ACTIONS(1434), [sym_integer] = ACTIONS(1434), @@ -81935,7 +81935,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(478), [anon_sym_true] = ACTIONS(469), [anon_sym_false] = ACTIONS(469), - [anon_sym_none] = ACTIONS(469), + [anon_sym_null] = ACTIONS(469), [anon_sym_undefined] = ACTIONS(469), [sym_sink] = ACTIONS(469), [sym_integer] = ACTIONS(469), @@ -82048,7 +82048,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1438), [anon_sym_true] = ACTIONS(1440), [anon_sym_false] = ACTIONS(1440), - [anon_sym_none] = ACTIONS(1440), + [anon_sym_null] = ACTIONS(1440), [anon_sym_undefined] = ACTIONS(1440), [sym_sink] = ACTIONS(1440), [sym_integer] = ACTIONS(1440), @@ -82161,7 +82161,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1442), [anon_sym_true] = ACTIONS(1444), [anon_sym_false] = ACTIONS(1444), - [anon_sym_none] = ACTIONS(1444), + [anon_sym_null] = ACTIONS(1444), [anon_sym_undefined] = ACTIONS(1444), [sym_sink] = ACTIONS(1444), [sym_integer] = ACTIONS(1444), @@ -82274,7 +82274,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1446), [anon_sym_true] = ACTIONS(1448), [anon_sym_false] = ACTIONS(1448), - [anon_sym_none] = ACTIONS(1448), + [anon_sym_null] = ACTIONS(1448), [anon_sym_undefined] = ACTIONS(1448), [sym_sink] = ACTIONS(1448), [sym_integer] = ACTIONS(1448), @@ -82387,7 +82387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1450), [anon_sym_true] = ACTIONS(1452), [anon_sym_false] = ACTIONS(1452), - [anon_sym_none] = ACTIONS(1452), + [anon_sym_null] = ACTIONS(1452), [anon_sym_undefined] = ACTIONS(1452), [sym_sink] = ACTIONS(1452), [sym_integer] = ACTIONS(1452), @@ -82500,7 +82500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1454), [anon_sym_true] = ACTIONS(1456), [anon_sym_false] = ACTIONS(1456), - [anon_sym_none] = ACTIONS(1456), + [anon_sym_null] = ACTIONS(1456), [anon_sym_undefined] = ACTIONS(1456), [sym_sink] = ACTIONS(1456), [sym_integer] = ACTIONS(1456), @@ -82613,7 +82613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1458), [anon_sym_true] = ACTIONS(1460), [anon_sym_false] = ACTIONS(1460), - [anon_sym_none] = ACTIONS(1460), + [anon_sym_null] = ACTIONS(1460), [anon_sym_undefined] = ACTIONS(1460), [sym_sink] = ACTIONS(1460), [sym_integer] = ACTIONS(1460), @@ -82726,7 +82726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1462), [anon_sym_true] = ACTIONS(1464), [anon_sym_false] = ACTIONS(1464), - [anon_sym_none] = ACTIONS(1464), + [anon_sym_null] = ACTIONS(1464), [anon_sym_undefined] = ACTIONS(1464), [sym_sink] = ACTIONS(1464), [sym_integer] = ACTIONS(1464), @@ -82839,7 +82839,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1466), [anon_sym_true] = ACTIONS(1468), [anon_sym_false] = ACTIONS(1468), - [anon_sym_none] = ACTIONS(1468), + [anon_sym_null] = ACTIONS(1468), [anon_sym_undefined] = ACTIONS(1468), [sym_sink] = ACTIONS(1468), [sym_integer] = ACTIONS(1468), @@ -82952,7 +82952,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1470), [anon_sym_true] = ACTIONS(1472), [anon_sym_false] = ACTIONS(1472), - [anon_sym_none] = ACTIONS(1472), + [anon_sym_null] = ACTIONS(1472), [anon_sym_undefined] = ACTIONS(1472), [sym_sink] = ACTIONS(1472), [sym_integer] = ACTIONS(1472), @@ -83065,7 +83065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1474), [anon_sym_true] = ACTIONS(1476), [anon_sym_false] = ACTIONS(1476), - [anon_sym_none] = ACTIONS(1476), + [anon_sym_null] = ACTIONS(1476), [anon_sym_undefined] = ACTIONS(1476), [sym_sink] = ACTIONS(1476), [sym_integer] = ACTIONS(1476), @@ -83178,7 +83178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1478), [anon_sym_true] = ACTIONS(1480), [anon_sym_false] = ACTIONS(1480), - [anon_sym_none] = ACTIONS(1480), + [anon_sym_null] = ACTIONS(1480), [anon_sym_undefined] = ACTIONS(1480), [sym_sink] = ACTIONS(1480), [sym_integer] = ACTIONS(1480), @@ -83291,7 +83291,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1482), [anon_sym_true] = ACTIONS(1484), [anon_sym_false] = ACTIONS(1484), - [anon_sym_none] = ACTIONS(1484), + [anon_sym_null] = ACTIONS(1484), [anon_sym_undefined] = ACTIONS(1484), [sym_sink] = ACTIONS(1484), [sym_integer] = ACTIONS(1484), @@ -83404,7 +83404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1486), [anon_sym_true] = ACTIONS(1488), [anon_sym_false] = ACTIONS(1488), - [anon_sym_none] = ACTIONS(1488), + [anon_sym_null] = ACTIONS(1488), [anon_sym_undefined] = ACTIONS(1488), [sym_sink] = ACTIONS(1488), [sym_integer] = ACTIONS(1488), @@ -83517,7 +83517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1490), [anon_sym_true] = ACTIONS(1492), [anon_sym_false] = ACTIONS(1492), - [anon_sym_none] = ACTIONS(1492), + [anon_sym_null] = ACTIONS(1492), [anon_sym_undefined] = ACTIONS(1492), [sym_sink] = ACTIONS(1492), [sym_integer] = ACTIONS(1492), @@ -83630,7 +83630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1494), [anon_sym_true] = ACTIONS(1496), [anon_sym_false] = ACTIONS(1496), - [anon_sym_none] = ACTIONS(1496), + [anon_sym_null] = ACTIONS(1496), [anon_sym_undefined] = ACTIONS(1496), [sym_sink] = ACTIONS(1496), [sym_integer] = ACTIONS(1496), @@ -83743,7 +83743,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1498), [anon_sym_true] = ACTIONS(1500), [anon_sym_false] = ACTIONS(1500), - [anon_sym_none] = ACTIONS(1500), + [anon_sym_null] = ACTIONS(1500), [anon_sym_undefined] = ACTIONS(1500), [sym_sink] = ACTIONS(1500), [sym_integer] = ACTIONS(1500), @@ -83856,7 +83856,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1502), [anon_sym_true] = ACTIONS(1504), [anon_sym_false] = ACTIONS(1504), - [anon_sym_none] = ACTIONS(1504), + [anon_sym_null] = ACTIONS(1504), [anon_sym_undefined] = ACTIONS(1504), [sym_sink] = ACTIONS(1504), [sym_integer] = ACTIONS(1504), @@ -83969,7 +83969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1506), [anon_sym_true] = ACTIONS(1508), [anon_sym_false] = ACTIONS(1508), - [anon_sym_none] = ACTIONS(1508), + [anon_sym_null] = ACTIONS(1508), [anon_sym_undefined] = ACTIONS(1508), [sym_sink] = ACTIONS(1508), [sym_integer] = ACTIONS(1508), @@ -84082,7 +84082,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1510), [anon_sym_true] = ACTIONS(1512), [anon_sym_false] = ACTIONS(1512), - [anon_sym_none] = ACTIONS(1512), + [anon_sym_null] = ACTIONS(1512), [anon_sym_undefined] = ACTIONS(1512), [sym_sink] = ACTIONS(1512), [sym_integer] = ACTIONS(1512), @@ -84195,7 +84195,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1514), [anon_sym_true] = ACTIONS(1516), [anon_sym_false] = ACTIONS(1516), - [anon_sym_none] = ACTIONS(1516), + [anon_sym_null] = ACTIONS(1516), [anon_sym_undefined] = ACTIONS(1516), [sym_sink] = ACTIONS(1516), [sym_integer] = ACTIONS(1516), @@ -84308,7 +84308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1518), [anon_sym_true] = ACTIONS(1520), [anon_sym_false] = ACTIONS(1520), - [anon_sym_none] = ACTIONS(1520), + [anon_sym_null] = ACTIONS(1520), [anon_sym_undefined] = ACTIONS(1520), [sym_sink] = ACTIONS(1520), [sym_integer] = ACTIONS(1520), @@ -84421,7 +84421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1522), [anon_sym_true] = ACTIONS(1524), [anon_sym_false] = ACTIONS(1524), - [anon_sym_none] = ACTIONS(1524), + [anon_sym_null] = ACTIONS(1524), [anon_sym_undefined] = ACTIONS(1524), [sym_sink] = ACTIONS(1524), [sym_integer] = ACTIONS(1524), @@ -84534,7 +84534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1526), [anon_sym_true] = ACTIONS(1528), [anon_sym_false] = ACTIONS(1528), - [anon_sym_none] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1528), [anon_sym_undefined] = ACTIONS(1528), [sym_sink] = ACTIONS(1528), [sym_integer] = ACTIONS(1528), @@ -84647,7 +84647,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1530), [anon_sym_true] = ACTIONS(1532), [anon_sym_false] = ACTIONS(1532), - [anon_sym_none] = ACTIONS(1532), + [anon_sym_null] = ACTIONS(1532), [anon_sym_undefined] = ACTIONS(1532), [sym_sink] = ACTIONS(1532), [sym_integer] = ACTIONS(1532), @@ -84760,7 +84760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1534), [anon_sym_true] = ACTIONS(1536), [anon_sym_false] = ACTIONS(1536), - [anon_sym_none] = ACTIONS(1536), + [anon_sym_null] = ACTIONS(1536), [anon_sym_undefined] = ACTIONS(1536), [sym_sink] = ACTIONS(1536), [sym_integer] = ACTIONS(1536), @@ -84808,7 +84808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(604), @@ -84873,7 +84873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -84986,7 +84986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1590), [anon_sym_true] = ACTIONS(1592), [anon_sym_false] = ACTIONS(1592), - [anon_sym_none] = ACTIONS(1592), + [anon_sym_null] = ACTIONS(1592), [anon_sym_undefined] = ACTIONS(1592), [sym_sink] = ACTIONS(1592), [sym_integer] = ACTIONS(1592), @@ -85099,7 +85099,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1594), [anon_sym_true] = ACTIONS(1596), [anon_sym_false] = ACTIONS(1596), - [anon_sym_none] = ACTIONS(1596), + [anon_sym_null] = ACTIONS(1596), [anon_sym_undefined] = ACTIONS(1596), [sym_sink] = ACTIONS(1596), [sym_integer] = ACTIONS(1596), @@ -85212,7 +85212,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(478), [anon_sym_true] = ACTIONS(469), [anon_sym_false] = ACTIONS(469), - [anon_sym_none] = ACTIONS(469), + [anon_sym_null] = ACTIONS(469), [anon_sym_undefined] = ACTIONS(469), [sym_sink] = ACTIONS(469), [sym_integer] = ACTIONS(469), @@ -85325,7 +85325,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1598), [anon_sym_true] = ACTIONS(1600), [anon_sym_false] = ACTIONS(1600), - [anon_sym_none] = ACTIONS(1600), + [anon_sym_null] = ACTIONS(1600), [anon_sym_undefined] = ACTIONS(1600), [sym_sink] = ACTIONS(1600), [sym_integer] = ACTIONS(1600), @@ -85438,7 +85438,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1602), [anon_sym_true] = ACTIONS(1604), [anon_sym_false] = ACTIONS(1604), - [anon_sym_none] = ACTIONS(1604), + [anon_sym_null] = ACTIONS(1604), [anon_sym_undefined] = ACTIONS(1604), [sym_sink] = ACTIONS(1604), [sym_integer] = ACTIONS(1604), @@ -85551,7 +85551,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1606), [anon_sym_true] = ACTIONS(1608), [anon_sym_false] = ACTIONS(1608), - [anon_sym_none] = ACTIONS(1608), + [anon_sym_null] = ACTIONS(1608), [anon_sym_undefined] = ACTIONS(1608), [sym_sink] = ACTIONS(1608), [sym_integer] = ACTIONS(1608), @@ -85664,7 +85664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1610), [anon_sym_true] = ACTIONS(1612), [anon_sym_false] = ACTIONS(1612), - [anon_sym_none] = ACTIONS(1612), + [anon_sym_null] = ACTIONS(1612), [anon_sym_undefined] = ACTIONS(1612), [sym_sink] = ACTIONS(1612), [sym_integer] = ACTIONS(1612), @@ -85777,7 +85777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1413), [anon_sym_true] = ACTIONS(1415), [anon_sym_false] = ACTIONS(1415), - [anon_sym_none] = ACTIONS(1415), + [anon_sym_null] = ACTIONS(1415), [anon_sym_undefined] = ACTIONS(1415), [sym_sink] = ACTIONS(1415), [sym_integer] = ACTIONS(1415), @@ -85890,7 +85890,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1614), [anon_sym_true] = ACTIONS(1616), [anon_sym_false] = ACTIONS(1616), - [anon_sym_none] = ACTIONS(1616), + [anon_sym_null] = ACTIONS(1616), [anon_sym_undefined] = ACTIONS(1616), [sym_sink] = ACTIONS(1616), [sym_integer] = ACTIONS(1616), @@ -86003,7 +86003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1620), [anon_sym_true] = ACTIONS(1622), [anon_sym_false] = ACTIONS(1622), - [anon_sym_none] = ACTIONS(1622), + [anon_sym_null] = ACTIONS(1622), [anon_sym_undefined] = ACTIONS(1622), [sym_sink] = ACTIONS(1622), [sym_integer] = ACTIONS(1622), @@ -86116,7 +86116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1624), [anon_sym_true] = ACTIONS(1626), [anon_sym_false] = ACTIONS(1626), - [anon_sym_none] = ACTIONS(1626), + [anon_sym_null] = ACTIONS(1626), [anon_sym_undefined] = ACTIONS(1626), [sym_sink] = ACTIONS(1626), [sym_integer] = ACTIONS(1626), @@ -86229,7 +86229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1630), [anon_sym_true] = ACTIONS(1632), [anon_sym_false] = ACTIONS(1632), - [anon_sym_none] = ACTIONS(1632), + [anon_sym_null] = ACTIONS(1632), [anon_sym_undefined] = ACTIONS(1632), [sym_sink] = ACTIONS(1632), [sym_integer] = ACTIONS(1632), @@ -86342,7 +86342,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1634), [anon_sym_true] = ACTIONS(1636), [anon_sym_false] = ACTIONS(1636), - [anon_sym_none] = ACTIONS(1636), + [anon_sym_null] = ACTIONS(1636), [anon_sym_undefined] = ACTIONS(1636), [sym_sink] = ACTIONS(1636), [sym_integer] = ACTIONS(1636), @@ -86455,7 +86455,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1638), [anon_sym_true] = ACTIONS(1640), [anon_sym_false] = ACTIONS(1640), - [anon_sym_none] = ACTIONS(1640), + [anon_sym_null] = ACTIONS(1640), [anon_sym_undefined] = ACTIONS(1640), [sym_sink] = ACTIONS(1640), [sym_integer] = ACTIONS(1640), @@ -86568,7 +86568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1642), [anon_sym_true] = ACTIONS(1644), [anon_sym_false] = ACTIONS(1644), - [anon_sym_none] = ACTIONS(1644), + [anon_sym_null] = ACTIONS(1644), [anon_sym_undefined] = ACTIONS(1644), [sym_sink] = ACTIONS(1644), [sym_integer] = ACTIONS(1644), @@ -86681,7 +86681,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(478), [anon_sym_true] = ACTIONS(469), [anon_sym_false] = ACTIONS(469), - [anon_sym_none] = ACTIONS(469), + [anon_sym_null] = ACTIONS(469), [anon_sym_undefined] = ACTIONS(469), [sym_sink] = ACTIONS(469), [sym_integer] = ACTIONS(469), @@ -86794,7 +86794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1646), [anon_sym_true] = ACTIONS(1648), [anon_sym_false] = ACTIONS(1648), - [anon_sym_none] = ACTIONS(1648), + [anon_sym_null] = ACTIONS(1648), [anon_sym_undefined] = ACTIONS(1648), [sym_sink] = ACTIONS(1648), [sym_integer] = ACTIONS(1648), @@ -86907,7 +86907,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1650), [anon_sym_true] = ACTIONS(1652), [anon_sym_false] = ACTIONS(1652), - [anon_sym_none] = ACTIONS(1652), + [anon_sym_null] = ACTIONS(1652), [anon_sym_undefined] = ACTIONS(1652), [sym_sink] = ACTIONS(1652), [sym_integer] = ACTIONS(1652), @@ -87020,7 +87020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1654), [anon_sym_true] = ACTIONS(1656), [anon_sym_false] = ACTIONS(1656), - [anon_sym_none] = ACTIONS(1656), + [anon_sym_null] = ACTIONS(1656), [anon_sym_undefined] = ACTIONS(1656), [sym_sink] = ACTIONS(1656), [sym_integer] = ACTIONS(1656), @@ -87133,7 +87133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1658), [anon_sym_true] = ACTIONS(1660), [anon_sym_false] = ACTIONS(1660), - [anon_sym_none] = ACTIONS(1660), + [anon_sym_null] = ACTIONS(1660), [anon_sym_undefined] = ACTIONS(1660), [sym_sink] = ACTIONS(1660), [sym_integer] = ACTIONS(1660), @@ -87246,7 +87246,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1662), [anon_sym_true] = ACTIONS(1664), [anon_sym_false] = ACTIONS(1664), - [anon_sym_none] = ACTIONS(1664), + [anon_sym_null] = ACTIONS(1664), [anon_sym_undefined] = ACTIONS(1664), [sym_sink] = ACTIONS(1664), [sym_integer] = ACTIONS(1664), @@ -87294,7 +87294,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -87359,7 +87359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -87472,7 +87472,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1668), [anon_sym_true] = ACTIONS(1670), [anon_sym_false] = ACTIONS(1670), - [anon_sym_none] = ACTIONS(1670), + [anon_sym_null] = ACTIONS(1670), [anon_sym_undefined] = ACTIONS(1670), [sym_sink] = ACTIONS(1670), [sym_integer] = ACTIONS(1670), @@ -87585,7 +87585,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1672), [anon_sym_true] = ACTIONS(1674), [anon_sym_false] = ACTIONS(1674), - [anon_sym_none] = ACTIONS(1674), + [anon_sym_null] = ACTIONS(1674), [anon_sym_undefined] = ACTIONS(1674), [sym_sink] = ACTIONS(1674), [sym_integer] = ACTIONS(1674), @@ -87698,7 +87698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1676), [anon_sym_true] = ACTIONS(1678), [anon_sym_false] = ACTIONS(1678), - [anon_sym_none] = ACTIONS(1678), + [anon_sym_null] = ACTIONS(1678), [anon_sym_undefined] = ACTIONS(1678), [sym_sink] = ACTIONS(1678), [sym_integer] = ACTIONS(1678), @@ -87811,7 +87811,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1680), [anon_sym_true] = ACTIONS(1682), [anon_sym_false] = ACTIONS(1682), - [anon_sym_none] = ACTIONS(1682), + [anon_sym_null] = ACTIONS(1682), [anon_sym_undefined] = ACTIONS(1682), [sym_sink] = ACTIONS(1682), [sym_integer] = ACTIONS(1682), @@ -87924,7 +87924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1684), [anon_sym_true] = ACTIONS(1686), [anon_sym_false] = ACTIONS(1686), - [anon_sym_none] = ACTIONS(1686), + [anon_sym_null] = ACTIONS(1686), [anon_sym_undefined] = ACTIONS(1686), [sym_sink] = ACTIONS(1686), [sym_integer] = ACTIONS(1686), @@ -88037,7 +88037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1688), [anon_sym_true] = ACTIONS(1690), [anon_sym_false] = ACTIONS(1690), - [anon_sym_none] = ACTIONS(1690), + [anon_sym_null] = ACTIONS(1690), [anon_sym_undefined] = ACTIONS(1690), [sym_sink] = ACTIONS(1690), [sym_integer] = ACTIONS(1690), @@ -88150,7 +88150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1692), [anon_sym_true] = ACTIONS(1694), [anon_sym_false] = ACTIONS(1694), - [anon_sym_none] = ACTIONS(1694), + [anon_sym_null] = ACTIONS(1694), [anon_sym_undefined] = ACTIONS(1694), [sym_sink] = ACTIONS(1694), [sym_integer] = ACTIONS(1694), @@ -88263,7 +88263,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1696), [anon_sym_true] = ACTIONS(1698), [anon_sym_false] = ACTIONS(1698), - [anon_sym_none] = ACTIONS(1698), + [anon_sym_null] = ACTIONS(1698), [anon_sym_undefined] = ACTIONS(1698), [sym_sink] = ACTIONS(1698), [sym_integer] = ACTIONS(1698), @@ -88376,7 +88376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1700), [anon_sym_true] = ACTIONS(1702), [anon_sym_false] = ACTIONS(1702), - [anon_sym_none] = ACTIONS(1702), + [anon_sym_null] = ACTIONS(1702), [anon_sym_undefined] = ACTIONS(1702), [sym_sink] = ACTIONS(1702), [sym_integer] = ACTIONS(1702), @@ -88489,7 +88489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1704), [anon_sym_true] = ACTIONS(1706), [anon_sym_false] = ACTIONS(1706), - [anon_sym_none] = ACTIONS(1706), + [anon_sym_null] = ACTIONS(1706), [anon_sym_undefined] = ACTIONS(1706), [sym_sink] = ACTIONS(1706), [sym_integer] = ACTIONS(1706), @@ -88602,7 +88602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1708), [anon_sym_true] = ACTIONS(1710), [anon_sym_false] = ACTIONS(1710), - [anon_sym_none] = ACTIONS(1710), + [anon_sym_null] = ACTIONS(1710), [anon_sym_undefined] = ACTIONS(1710), [sym_sink] = ACTIONS(1710), [sym_integer] = ACTIONS(1710), @@ -88715,7 +88715,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1712), [anon_sym_true] = ACTIONS(1714), [anon_sym_false] = ACTIONS(1714), - [anon_sym_none] = ACTIONS(1714), + [anon_sym_null] = ACTIONS(1714), [anon_sym_undefined] = ACTIONS(1714), [sym_sink] = ACTIONS(1714), [sym_integer] = ACTIONS(1714), @@ -88828,7 +88828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1716), [anon_sym_true] = ACTIONS(1718), [anon_sym_false] = ACTIONS(1718), - [anon_sym_none] = ACTIONS(1718), + [anon_sym_null] = ACTIONS(1718), [anon_sym_undefined] = ACTIONS(1718), [sym_sink] = ACTIONS(1718), [sym_integer] = ACTIONS(1718), @@ -88941,7 +88941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1720), [anon_sym_true] = ACTIONS(1722), [anon_sym_false] = ACTIONS(1722), - [anon_sym_none] = ACTIONS(1722), + [anon_sym_null] = ACTIONS(1722), [anon_sym_undefined] = ACTIONS(1722), [sym_sink] = ACTIONS(1722), [sym_integer] = ACTIONS(1722), @@ -89054,7 +89054,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(356), [anon_sym_true] = ACTIONS(361), [anon_sym_false] = ACTIONS(361), - [anon_sym_none] = ACTIONS(361), + [anon_sym_null] = ACTIONS(361), [anon_sym_undefined] = ACTIONS(361), [sym_sink] = ACTIONS(361), [sym_integer] = ACTIONS(361), @@ -89167,7 +89167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1724), [anon_sym_true] = ACTIONS(1726), [anon_sym_false] = ACTIONS(1726), - [anon_sym_none] = ACTIONS(1726), + [anon_sym_null] = ACTIONS(1726), [anon_sym_undefined] = ACTIONS(1726), [sym_sink] = ACTIONS(1726), [sym_integer] = ACTIONS(1726), @@ -89280,7 +89280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1728), [anon_sym_true] = ACTIONS(1730), [anon_sym_false] = ACTIONS(1730), - [anon_sym_none] = ACTIONS(1730), + [anon_sym_null] = ACTIONS(1730), [anon_sym_undefined] = ACTIONS(1730), [sym_sink] = ACTIONS(1730), [sym_integer] = ACTIONS(1730), @@ -89393,7 +89393,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(451), [anon_sym_true] = ACTIONS(449), [anon_sym_false] = ACTIONS(449), - [anon_sym_none] = ACTIONS(449), + [anon_sym_null] = ACTIONS(449), [anon_sym_undefined] = ACTIONS(449), [sym_sink] = ACTIONS(449), [sym_integer] = ACTIONS(449), @@ -89506,7 +89506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1732), [anon_sym_true] = ACTIONS(1734), [anon_sym_false] = ACTIONS(1734), - [anon_sym_none] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1734), [anon_sym_undefined] = ACTIONS(1734), [sym_sink] = ACTIONS(1734), [sym_integer] = ACTIONS(1734), @@ -89619,7 +89619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1736), [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), - [anon_sym_none] = ACTIONS(1738), + [anon_sym_null] = ACTIONS(1738), [anon_sym_undefined] = ACTIONS(1738), [sym_sink] = ACTIONS(1738), [sym_integer] = ACTIONS(1738), @@ -89732,7 +89732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1740), [anon_sym_true] = ACTIONS(1742), [anon_sym_false] = ACTIONS(1742), - [anon_sym_none] = ACTIONS(1742), + [anon_sym_null] = ACTIONS(1742), [anon_sym_undefined] = ACTIONS(1742), [sym_sink] = ACTIONS(1742), [sym_integer] = ACTIONS(1742), @@ -89845,7 +89845,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1744), [anon_sym_true] = ACTIONS(1746), [anon_sym_false] = ACTIONS(1746), - [anon_sym_none] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1746), [anon_sym_undefined] = ACTIONS(1746), [sym_sink] = ACTIONS(1746), [sym_integer] = ACTIONS(1746), @@ -89958,7 +89958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1748), [anon_sym_true] = ACTIONS(1750), [anon_sym_false] = ACTIONS(1750), - [anon_sym_none] = ACTIONS(1750), + [anon_sym_null] = ACTIONS(1750), [anon_sym_undefined] = ACTIONS(1750), [sym_sink] = ACTIONS(1750), [sym_integer] = ACTIONS(1750), @@ -90071,7 +90071,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1752), [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), - [anon_sym_none] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1754), [anon_sym_undefined] = ACTIONS(1754), [sym_sink] = ACTIONS(1754), [sym_integer] = ACTIONS(1754), @@ -90184,7 +90184,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(414), [anon_sym_true] = ACTIONS(419), [anon_sym_false] = ACTIONS(419), - [anon_sym_none] = ACTIONS(419), + [anon_sym_null] = ACTIONS(419), [anon_sym_undefined] = ACTIONS(419), [sym_sink] = ACTIONS(419), [sym_integer] = ACTIONS(419), @@ -90297,7 +90297,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1756), [anon_sym_true] = ACTIONS(1758), [anon_sym_false] = ACTIONS(1758), - [anon_sym_none] = ACTIONS(1758), + [anon_sym_null] = ACTIONS(1758), [anon_sym_undefined] = ACTIONS(1758), [sym_sink] = ACTIONS(1758), [sym_integer] = ACTIONS(1758), @@ -90410,7 +90410,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1760), [anon_sym_true] = ACTIONS(1762), [anon_sym_false] = ACTIONS(1762), - [anon_sym_none] = ACTIONS(1762), + [anon_sym_null] = ACTIONS(1762), [anon_sym_undefined] = ACTIONS(1762), [sym_sink] = ACTIONS(1762), [sym_integer] = ACTIONS(1762), @@ -90523,7 +90523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1764), [anon_sym_true] = ACTIONS(1766), [anon_sym_false] = ACTIONS(1766), - [anon_sym_none] = ACTIONS(1766), + [anon_sym_null] = ACTIONS(1766), [anon_sym_undefined] = ACTIONS(1766), [sym_sink] = ACTIONS(1766), [sym_integer] = ACTIONS(1766), @@ -90636,7 +90636,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1768), [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), - [anon_sym_none] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), [anon_sym_undefined] = ACTIONS(1770), [sym_sink] = ACTIONS(1770), [sym_integer] = ACTIONS(1770), @@ -90749,7 +90749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_true] = ACTIONS(445), [anon_sym_false] = ACTIONS(445), - [anon_sym_none] = ACTIONS(445), + [anon_sym_null] = ACTIONS(445), [anon_sym_undefined] = ACTIONS(445), [sym_sink] = ACTIONS(445), [sym_integer] = ACTIONS(445), @@ -90862,7 +90862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(443), [anon_sym_true] = ACTIONS(441), [anon_sym_false] = ACTIONS(441), - [anon_sym_none] = ACTIONS(441), + [anon_sym_null] = ACTIONS(441), [anon_sym_undefined] = ACTIONS(441), [sym_sink] = ACTIONS(441), [sym_integer] = ACTIONS(441), @@ -90975,7 +90975,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1772), [anon_sym_true] = ACTIONS(1774), [anon_sym_false] = ACTIONS(1774), - [anon_sym_none] = ACTIONS(1774), + [anon_sym_null] = ACTIONS(1774), [anon_sym_undefined] = ACTIONS(1774), [sym_sink] = ACTIONS(1774), [sym_integer] = ACTIONS(1774), @@ -91088,7 +91088,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1776), [anon_sym_true] = ACTIONS(1778), [anon_sym_false] = ACTIONS(1778), - [anon_sym_none] = ACTIONS(1778), + [anon_sym_null] = ACTIONS(1778), [anon_sym_undefined] = ACTIONS(1778), [sym_sink] = ACTIONS(1778), [sym_integer] = ACTIONS(1778), @@ -91201,7 +91201,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1780), [anon_sym_true] = ACTIONS(1782), [anon_sym_false] = ACTIONS(1782), - [anon_sym_none] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1782), [anon_sym_undefined] = ACTIONS(1782), [sym_sink] = ACTIONS(1782), [sym_integer] = ACTIONS(1782), @@ -91314,7 +91314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1784), [anon_sym_true] = ACTIONS(1786), [anon_sym_false] = ACTIONS(1786), - [anon_sym_none] = ACTIONS(1786), + [anon_sym_null] = ACTIONS(1786), [anon_sym_undefined] = ACTIONS(1786), [sym_sink] = ACTIONS(1786), [sym_integer] = ACTIONS(1786), @@ -91427,7 +91427,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1788), [anon_sym_true] = ACTIONS(1790), [anon_sym_false] = ACTIONS(1790), - [anon_sym_none] = ACTIONS(1790), + [anon_sym_null] = ACTIONS(1790), [anon_sym_undefined] = ACTIONS(1790), [sym_sink] = ACTIONS(1790), [sym_integer] = ACTIONS(1790), @@ -91540,7 +91540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1792), [anon_sym_true] = ACTIONS(1794), [anon_sym_false] = ACTIONS(1794), - [anon_sym_none] = ACTIONS(1794), + [anon_sym_null] = ACTIONS(1794), [anon_sym_undefined] = ACTIONS(1794), [sym_sink] = ACTIONS(1794), [sym_integer] = ACTIONS(1794), @@ -91653,7 +91653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1796), [anon_sym_true] = ACTIONS(1798), [anon_sym_false] = ACTIONS(1798), - [anon_sym_none] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1798), [anon_sym_undefined] = ACTIONS(1798), [sym_sink] = ACTIONS(1798), [sym_integer] = ACTIONS(1798), @@ -91766,7 +91766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1800), [anon_sym_true] = ACTIONS(1802), [anon_sym_false] = ACTIONS(1802), - [anon_sym_none] = ACTIONS(1802), + [anon_sym_null] = ACTIONS(1802), [anon_sym_undefined] = ACTIONS(1802), [sym_sink] = ACTIONS(1802), [sym_integer] = ACTIONS(1802), @@ -91879,7 +91879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1804), [anon_sym_true] = ACTIONS(1806), [anon_sym_false] = ACTIONS(1806), - [anon_sym_none] = ACTIONS(1806), + [anon_sym_null] = ACTIONS(1806), [anon_sym_undefined] = ACTIONS(1806), [sym_sink] = ACTIONS(1806), [sym_integer] = ACTIONS(1806), @@ -91992,7 +91992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1808), [anon_sym_true] = ACTIONS(1810), [anon_sym_false] = ACTIONS(1810), - [anon_sym_none] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1810), [anon_sym_undefined] = ACTIONS(1810), [sym_sink] = ACTIONS(1810), [sym_integer] = ACTIONS(1810), @@ -92105,7 +92105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1812), [anon_sym_true] = ACTIONS(1814), [anon_sym_false] = ACTIONS(1814), - [anon_sym_none] = ACTIONS(1814), + [anon_sym_null] = ACTIONS(1814), [anon_sym_undefined] = ACTIONS(1814), [sym_sink] = ACTIONS(1814), [sym_integer] = ACTIONS(1814), @@ -92218,7 +92218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1816), [anon_sym_true] = ACTIONS(1818), [anon_sym_false] = ACTIONS(1818), - [anon_sym_none] = ACTIONS(1818), + [anon_sym_null] = ACTIONS(1818), [anon_sym_undefined] = ACTIONS(1818), [sym_sink] = ACTIONS(1818), [sym_integer] = ACTIONS(1818), @@ -92331,7 +92331,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1820), [anon_sym_true] = ACTIONS(1822), [anon_sym_false] = ACTIONS(1822), - [anon_sym_none] = ACTIONS(1822), + [anon_sym_null] = ACTIONS(1822), [anon_sym_undefined] = ACTIONS(1822), [sym_sink] = ACTIONS(1822), [sym_integer] = ACTIONS(1822), @@ -92444,7 +92444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(455), [anon_sym_true] = ACTIONS(453), [anon_sym_false] = ACTIONS(453), - [anon_sym_none] = ACTIONS(453), + [anon_sym_null] = ACTIONS(453), [anon_sym_undefined] = ACTIONS(453), [sym_sink] = ACTIONS(453), [sym_integer] = ACTIONS(453), @@ -92557,7 +92557,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1824), [anon_sym_true] = ACTIONS(1826), [anon_sym_false] = ACTIONS(1826), - [anon_sym_none] = ACTIONS(1826), + [anon_sym_null] = ACTIONS(1826), [anon_sym_undefined] = ACTIONS(1826), [sym_sink] = ACTIONS(1826), [sym_integer] = ACTIONS(1826), @@ -92670,7 +92670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1828), [anon_sym_true] = ACTIONS(1830), [anon_sym_false] = ACTIONS(1830), - [anon_sym_none] = ACTIONS(1830), + [anon_sym_null] = ACTIONS(1830), [anon_sym_undefined] = ACTIONS(1830), [sym_sink] = ACTIONS(1830), [sym_integer] = ACTIONS(1830), @@ -92783,7 +92783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1832), [anon_sym_true] = ACTIONS(1834), [anon_sym_false] = ACTIONS(1834), - [anon_sym_none] = ACTIONS(1834), + [anon_sym_null] = ACTIONS(1834), [anon_sym_undefined] = ACTIONS(1834), [sym_sink] = ACTIONS(1834), [sym_integer] = ACTIONS(1834), @@ -92896,7 +92896,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1836), [anon_sym_true] = ACTIONS(1838), [anon_sym_false] = ACTIONS(1838), - [anon_sym_none] = ACTIONS(1838), + [anon_sym_null] = ACTIONS(1838), [anon_sym_undefined] = ACTIONS(1838), [sym_sink] = ACTIONS(1838), [sym_integer] = ACTIONS(1838), @@ -93009,7 +93009,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1840), [anon_sym_true] = ACTIONS(1842), [anon_sym_false] = ACTIONS(1842), - [anon_sym_none] = ACTIONS(1842), + [anon_sym_null] = ACTIONS(1842), [anon_sym_undefined] = ACTIONS(1842), [sym_sink] = ACTIONS(1842), [sym_integer] = ACTIONS(1842), @@ -93122,7 +93122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1844), [anon_sym_true] = ACTIONS(1846), [anon_sym_false] = ACTIONS(1846), - [anon_sym_none] = ACTIONS(1846), + [anon_sym_null] = ACTIONS(1846), [anon_sym_undefined] = ACTIONS(1846), [sym_sink] = ACTIONS(1846), [sym_integer] = ACTIONS(1846), @@ -93235,7 +93235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1848), [anon_sym_true] = ACTIONS(1850), [anon_sym_false] = ACTIONS(1850), - [anon_sym_none] = ACTIONS(1850), + [anon_sym_null] = ACTIONS(1850), [anon_sym_undefined] = ACTIONS(1850), [sym_sink] = ACTIONS(1850), [sym_integer] = ACTIONS(1850), @@ -93348,7 +93348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1852), [anon_sym_true] = ACTIONS(1854), [anon_sym_false] = ACTIONS(1854), - [anon_sym_none] = ACTIONS(1854), + [anon_sym_null] = ACTIONS(1854), [anon_sym_undefined] = ACTIONS(1854), [sym_sink] = ACTIONS(1854), [sym_integer] = ACTIONS(1854), @@ -93461,7 +93461,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1856), [anon_sym_true] = ACTIONS(1858), [anon_sym_false] = ACTIONS(1858), - [anon_sym_none] = ACTIONS(1858), + [anon_sym_null] = ACTIONS(1858), [anon_sym_undefined] = ACTIONS(1858), [sym_sink] = ACTIONS(1858), [sym_integer] = ACTIONS(1858), @@ -93574,7 +93574,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1860), [anon_sym_true] = ACTIONS(1862), [anon_sym_false] = ACTIONS(1862), - [anon_sym_none] = ACTIONS(1862), + [anon_sym_null] = ACTIONS(1862), [anon_sym_undefined] = ACTIONS(1862), [sym_sink] = ACTIONS(1862), [sym_integer] = ACTIONS(1862), @@ -93687,7 +93687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1864), [anon_sym_true] = ACTIONS(1866), [anon_sym_false] = ACTIONS(1866), - [anon_sym_none] = ACTIONS(1866), + [anon_sym_null] = ACTIONS(1866), [anon_sym_undefined] = ACTIONS(1866), [sym_sink] = ACTIONS(1866), [sym_integer] = ACTIONS(1866), @@ -93800,7 +93800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1868), [anon_sym_true] = ACTIONS(1870), [anon_sym_false] = ACTIONS(1870), - [anon_sym_none] = ACTIONS(1870), + [anon_sym_null] = ACTIONS(1870), [anon_sym_undefined] = ACTIONS(1870), [sym_sink] = ACTIONS(1870), [sym_integer] = ACTIONS(1870), @@ -93913,7 +93913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1872), [anon_sym_true] = ACTIONS(1874), [anon_sym_false] = ACTIONS(1874), - [anon_sym_none] = ACTIONS(1874), + [anon_sym_null] = ACTIONS(1874), [anon_sym_undefined] = ACTIONS(1874), [sym_sink] = ACTIONS(1874), [sym_integer] = ACTIONS(1874), @@ -94026,7 +94026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1876), [anon_sym_true] = ACTIONS(1878), [anon_sym_false] = ACTIONS(1878), - [anon_sym_none] = ACTIONS(1878), + [anon_sym_null] = ACTIONS(1878), [anon_sym_undefined] = ACTIONS(1878), [sym_sink] = ACTIONS(1878), [sym_integer] = ACTIONS(1878), @@ -94139,7 +94139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1880), [anon_sym_true] = ACTIONS(1882), [anon_sym_false] = ACTIONS(1882), - [anon_sym_none] = ACTIONS(1882), + [anon_sym_null] = ACTIONS(1882), [anon_sym_undefined] = ACTIONS(1882), [sym_sink] = ACTIONS(1882), [sym_integer] = ACTIONS(1882), @@ -94252,7 +94252,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1884), [anon_sym_true] = ACTIONS(1886), [anon_sym_false] = ACTIONS(1886), - [anon_sym_none] = ACTIONS(1886), + [anon_sym_null] = ACTIONS(1886), [anon_sym_undefined] = ACTIONS(1886), [sym_sink] = ACTIONS(1886), [sym_integer] = ACTIONS(1886), @@ -94365,7 +94365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1888), [anon_sym_true] = ACTIONS(1890), [anon_sym_false] = ACTIONS(1890), - [anon_sym_none] = ACTIONS(1890), + [anon_sym_null] = ACTIONS(1890), [anon_sym_undefined] = ACTIONS(1890), [sym_sink] = ACTIONS(1890), [sym_integer] = ACTIONS(1890), @@ -94478,7 +94478,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1892), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), - [anon_sym_none] = ACTIONS(1894), + [anon_sym_null] = ACTIONS(1894), [anon_sym_undefined] = ACTIONS(1894), [sym_sink] = ACTIONS(1894), [sym_integer] = ACTIONS(1894), @@ -94591,7 +94591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1896), [anon_sym_true] = ACTIONS(1898), [anon_sym_false] = ACTIONS(1898), - [anon_sym_none] = ACTIONS(1898), + [anon_sym_null] = ACTIONS(1898), [anon_sym_undefined] = ACTIONS(1898), [sym_sink] = ACTIONS(1898), [sym_integer] = ACTIONS(1898), @@ -94704,7 +94704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1900), [anon_sym_true] = ACTIONS(1902), [anon_sym_false] = ACTIONS(1902), - [anon_sym_none] = ACTIONS(1902), + [anon_sym_null] = ACTIONS(1902), [anon_sym_undefined] = ACTIONS(1902), [sym_sink] = ACTIONS(1902), [sym_integer] = ACTIONS(1902), @@ -94817,7 +94817,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1904), [anon_sym_true] = ACTIONS(1906), [anon_sym_false] = ACTIONS(1906), - [anon_sym_none] = ACTIONS(1906), + [anon_sym_null] = ACTIONS(1906), [anon_sym_undefined] = ACTIONS(1906), [sym_sink] = ACTIONS(1906), [sym_integer] = ACTIONS(1906), @@ -94930,7 +94930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1908), [anon_sym_true] = ACTIONS(1910), [anon_sym_false] = ACTIONS(1910), - [anon_sym_none] = ACTIONS(1910), + [anon_sym_null] = ACTIONS(1910), [anon_sym_undefined] = ACTIONS(1910), [sym_sink] = ACTIONS(1910), [sym_integer] = ACTIONS(1910), @@ -95043,7 +95043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1912), [anon_sym_true] = ACTIONS(1914), [anon_sym_false] = ACTIONS(1914), - [anon_sym_none] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1914), [anon_sym_undefined] = ACTIONS(1914), [sym_sink] = ACTIONS(1914), [sym_integer] = ACTIONS(1914), @@ -95156,7 +95156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1916), [anon_sym_true] = ACTIONS(1918), [anon_sym_false] = ACTIONS(1918), - [anon_sym_none] = ACTIONS(1918), + [anon_sym_null] = ACTIONS(1918), [anon_sym_undefined] = ACTIONS(1918), [sym_sink] = ACTIONS(1918), [sym_integer] = ACTIONS(1918), @@ -95269,7 +95269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1920), [anon_sym_true] = ACTIONS(1922), [anon_sym_false] = ACTIONS(1922), - [anon_sym_none] = ACTIONS(1922), + [anon_sym_null] = ACTIONS(1922), [anon_sym_undefined] = ACTIONS(1922), [sym_sink] = ACTIONS(1922), [sym_integer] = ACTIONS(1922), @@ -95382,7 +95382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1924), [anon_sym_true] = ACTIONS(1926), [anon_sym_false] = ACTIONS(1926), - [anon_sym_none] = ACTIONS(1926), + [anon_sym_null] = ACTIONS(1926), [anon_sym_undefined] = ACTIONS(1926), [sym_sink] = ACTIONS(1926), [sym_integer] = ACTIONS(1926), @@ -95495,7 +95495,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1928), [anon_sym_true] = ACTIONS(1930), [anon_sym_false] = ACTIONS(1930), - [anon_sym_none] = ACTIONS(1930), + [anon_sym_null] = ACTIONS(1930), [anon_sym_undefined] = ACTIONS(1930), [sym_sink] = ACTIONS(1930), [sym_integer] = ACTIONS(1930), @@ -95608,7 +95608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1932), [anon_sym_true] = ACTIONS(1934), [anon_sym_false] = ACTIONS(1934), - [anon_sym_none] = ACTIONS(1934), + [anon_sym_null] = ACTIONS(1934), [anon_sym_undefined] = ACTIONS(1934), [sym_sink] = ACTIONS(1934), [sym_integer] = ACTIONS(1934), @@ -95721,7 +95721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1936), [anon_sym_true] = ACTIONS(1938), [anon_sym_false] = ACTIONS(1938), - [anon_sym_none] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1938), [anon_sym_undefined] = ACTIONS(1938), [sym_sink] = ACTIONS(1938), [sym_integer] = ACTIONS(1938), @@ -95834,7 +95834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1940), [anon_sym_true] = ACTIONS(1942), [anon_sym_false] = ACTIONS(1942), - [anon_sym_none] = ACTIONS(1942), + [anon_sym_null] = ACTIONS(1942), [anon_sym_undefined] = ACTIONS(1942), [sym_sink] = ACTIONS(1942), [sym_integer] = ACTIONS(1942), @@ -95947,7 +95947,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1642), [anon_sym_true] = ACTIONS(1644), [anon_sym_false] = ACTIONS(1644), - [anon_sym_none] = ACTIONS(1644), + [anon_sym_null] = ACTIONS(1644), [anon_sym_undefined] = ACTIONS(1644), [sym_sink] = ACTIONS(1644), [sym_integer] = ACTIONS(1644), @@ -96060,7 +96060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1944), [anon_sym_true] = ACTIONS(1946), [anon_sym_false] = ACTIONS(1946), - [anon_sym_none] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(1946), [anon_sym_undefined] = ACTIONS(1946), [sym_sink] = ACTIONS(1946), [sym_integer] = ACTIONS(1946), @@ -96173,7 +96173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1948), [anon_sym_true] = ACTIONS(1950), [anon_sym_false] = ACTIONS(1950), - [anon_sym_none] = ACTIONS(1950), + [anon_sym_null] = ACTIONS(1950), [anon_sym_undefined] = ACTIONS(1950), [sym_sink] = ACTIONS(1950), [sym_integer] = ACTIONS(1950), @@ -96286,7 +96286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1952), [anon_sym_true] = ACTIONS(1954), [anon_sym_false] = ACTIONS(1954), - [anon_sym_none] = ACTIONS(1954), + [anon_sym_null] = ACTIONS(1954), [anon_sym_undefined] = ACTIONS(1954), [sym_sink] = ACTIONS(1954), [sym_integer] = ACTIONS(1954), @@ -96399,7 +96399,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1956), [anon_sym_true] = ACTIONS(1958), [anon_sym_false] = ACTIONS(1958), - [anon_sym_none] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1958), [anon_sym_undefined] = ACTIONS(1958), [sym_sink] = ACTIONS(1958), [sym_integer] = ACTIONS(1958), @@ -96512,7 +96512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1960), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), - [anon_sym_none] = ACTIONS(1962), + [anon_sym_null] = ACTIONS(1962), [anon_sym_undefined] = ACTIONS(1962), [sym_sink] = ACTIONS(1962), [sym_integer] = ACTIONS(1962), @@ -96625,7 +96625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1964), [anon_sym_true] = ACTIONS(1966), [anon_sym_false] = ACTIONS(1966), - [anon_sym_none] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1966), [anon_sym_undefined] = ACTIONS(1966), [sym_sink] = ACTIONS(1966), [sym_integer] = ACTIONS(1966), @@ -96738,7 +96738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1968), [anon_sym_true] = ACTIONS(1970), [anon_sym_false] = ACTIONS(1970), - [anon_sym_none] = ACTIONS(1970), + [anon_sym_null] = ACTIONS(1970), [anon_sym_undefined] = ACTIONS(1970), [sym_sink] = ACTIONS(1970), [sym_integer] = ACTIONS(1970), @@ -96851,7 +96851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1972), [anon_sym_true] = ACTIONS(1974), [anon_sym_false] = ACTIONS(1974), - [anon_sym_none] = ACTIONS(1974), + [anon_sym_null] = ACTIONS(1974), [anon_sym_undefined] = ACTIONS(1974), [sym_sink] = ACTIONS(1974), [sym_integer] = ACTIONS(1974), @@ -96964,7 +96964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1976), [anon_sym_true] = ACTIONS(1978), [anon_sym_false] = ACTIONS(1978), - [anon_sym_none] = ACTIONS(1978), + [anon_sym_null] = ACTIONS(1978), [anon_sym_undefined] = ACTIONS(1978), [sym_sink] = ACTIONS(1978), [sym_integer] = ACTIONS(1978), @@ -97077,7 +97077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1980), [anon_sym_true] = ACTIONS(1982), [anon_sym_false] = ACTIONS(1982), - [anon_sym_none] = ACTIONS(1982), + [anon_sym_null] = ACTIONS(1982), [anon_sym_undefined] = ACTIONS(1982), [sym_sink] = ACTIONS(1982), [sym_integer] = ACTIONS(1982), @@ -97190,7 +97190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1984), [anon_sym_true] = ACTIONS(1986), [anon_sym_false] = ACTIONS(1986), - [anon_sym_none] = ACTIONS(1986), + [anon_sym_null] = ACTIONS(1986), [anon_sym_undefined] = ACTIONS(1986), [sym_sink] = ACTIONS(1986), [sym_integer] = ACTIONS(1986), @@ -97303,7 +97303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1988), [anon_sym_true] = ACTIONS(1990), [anon_sym_false] = ACTIONS(1990), - [anon_sym_none] = ACTIONS(1990), + [anon_sym_null] = ACTIONS(1990), [anon_sym_undefined] = ACTIONS(1990), [sym_sink] = ACTIONS(1990), [sym_integer] = ACTIONS(1990), @@ -97416,7 +97416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1992), [anon_sym_true] = ACTIONS(1994), [anon_sym_false] = ACTIONS(1994), - [anon_sym_none] = ACTIONS(1994), + [anon_sym_null] = ACTIONS(1994), [anon_sym_undefined] = ACTIONS(1994), [sym_sink] = ACTIONS(1994), [sym_integer] = ACTIONS(1994), @@ -97529,7 +97529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1996), [anon_sym_true] = ACTIONS(1998), [anon_sym_false] = ACTIONS(1998), - [anon_sym_none] = ACTIONS(1998), + [anon_sym_null] = ACTIONS(1998), [anon_sym_undefined] = ACTIONS(1998), [sym_sink] = ACTIONS(1998), [sym_integer] = ACTIONS(1998), @@ -97642,7 +97642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2002), [anon_sym_false] = ACTIONS(2002), - [anon_sym_none] = ACTIONS(2002), + [anon_sym_null] = ACTIONS(2002), [anon_sym_undefined] = ACTIONS(2002), [sym_sink] = ACTIONS(2002), [sym_integer] = ACTIONS(2002), @@ -97755,7 +97755,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2004), [anon_sym_true] = ACTIONS(2006), [anon_sym_false] = ACTIONS(2006), - [anon_sym_none] = ACTIONS(2006), + [anon_sym_null] = ACTIONS(2006), [anon_sym_undefined] = ACTIONS(2006), [sym_sink] = ACTIONS(2006), [sym_integer] = ACTIONS(2006), @@ -97868,7 +97868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2008), [anon_sym_true] = ACTIONS(2010), [anon_sym_false] = ACTIONS(2010), - [anon_sym_none] = ACTIONS(2010), + [anon_sym_null] = ACTIONS(2010), [anon_sym_undefined] = ACTIONS(2010), [sym_sink] = ACTIONS(2010), [sym_integer] = ACTIONS(2010), @@ -97981,7 +97981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2012), [anon_sym_true] = ACTIONS(2014), [anon_sym_false] = ACTIONS(2014), - [anon_sym_none] = ACTIONS(2014), + [anon_sym_null] = ACTIONS(2014), [anon_sym_undefined] = ACTIONS(2014), [sym_sink] = ACTIONS(2014), [sym_integer] = ACTIONS(2014), @@ -98094,7 +98094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2016), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), - [anon_sym_none] = ACTIONS(2018), + [anon_sym_null] = ACTIONS(2018), [anon_sym_undefined] = ACTIONS(2018), [sym_sink] = ACTIONS(2018), [sym_integer] = ACTIONS(2018), @@ -98207,7 +98207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2020), [anon_sym_true] = ACTIONS(2022), [anon_sym_false] = ACTIONS(2022), - [anon_sym_none] = ACTIONS(2022), + [anon_sym_null] = ACTIONS(2022), [anon_sym_undefined] = ACTIONS(2022), [sym_sink] = ACTIONS(2022), [sym_integer] = ACTIONS(2022), @@ -98320,7 +98320,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2024), [anon_sym_true] = ACTIONS(2026), [anon_sym_false] = ACTIONS(2026), - [anon_sym_none] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2026), [anon_sym_undefined] = ACTIONS(2026), [sym_sink] = ACTIONS(2026), [sym_integer] = ACTIONS(2026), @@ -98433,7 +98433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2028), [anon_sym_true] = ACTIONS(2030), [anon_sym_false] = ACTIONS(2030), - [anon_sym_none] = ACTIONS(2030), + [anon_sym_null] = ACTIONS(2030), [anon_sym_undefined] = ACTIONS(2030), [sym_sink] = ACTIONS(2030), [sym_integer] = ACTIONS(2030), @@ -98545,7 +98545,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1984), [anon_sym_true] = ACTIONS(1986), [anon_sym_false] = ACTIONS(1986), - [anon_sym_none] = ACTIONS(1986), + [anon_sym_null] = ACTIONS(1986), [anon_sym_undefined] = ACTIONS(1986), [sym_sink] = ACTIONS(1986), [sym_integer] = ACTIONS(1986), @@ -98593,7 +98593,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(708), @@ -98657,7 +98657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -98769,7 +98769,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1696), [anon_sym_true] = ACTIONS(1698), [anon_sym_false] = ACTIONS(1698), - [anon_sym_none] = ACTIONS(1698), + [anon_sym_null] = ACTIONS(1698), [anon_sym_undefined] = ACTIONS(1698), [sym_sink] = ACTIONS(1698), [sym_integer] = ACTIONS(1698), @@ -98881,7 +98881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(478), [anon_sym_true] = ACTIONS(469), [anon_sym_false] = ACTIONS(469), - [anon_sym_none] = ACTIONS(469), + [anon_sym_null] = ACTIONS(469), [anon_sym_undefined] = ACTIONS(469), [sym_sink] = ACTIONS(469), [sym_integer] = ACTIONS(469), @@ -98993,7 +98993,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2002), [anon_sym_false] = ACTIONS(2002), - [anon_sym_none] = ACTIONS(2002), + [anon_sym_null] = ACTIONS(2002), [anon_sym_undefined] = ACTIONS(2002), [sym_sink] = ACTIONS(2002), [sym_integer] = ACTIONS(2002), @@ -99041,7 +99041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -99105,7 +99105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -99217,7 +99217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1438), [anon_sym_true] = ACTIONS(1440), [anon_sym_false] = ACTIONS(1440), - [anon_sym_none] = ACTIONS(1440), + [anon_sym_null] = ACTIONS(1440), [anon_sym_undefined] = ACTIONS(1440), [sym_sink] = ACTIONS(1440), [sym_integer] = ACTIONS(1440), @@ -99328,7 +99328,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1392), [anon_sym_false] = ACTIONS(1392), - [anon_sym_none] = ACTIONS(1392), + [anon_sym_null] = ACTIONS(1392), [anon_sym_undefined] = ACTIONS(1392), [sym_sink] = ACTIONS(1392), [sym_integer] = ACTIONS(1392), @@ -99439,7 +99439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1392), [anon_sym_false] = ACTIONS(1392), - [anon_sym_none] = ACTIONS(1392), + [anon_sym_null] = ACTIONS(1392), [anon_sym_undefined] = ACTIONS(1392), [sym_sink] = ACTIONS(1392), [sym_integer] = ACTIONS(1392), @@ -99550,7 +99550,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1356), [anon_sym_false] = ACTIONS(1356), - [anon_sym_none] = ACTIONS(1356), + [anon_sym_null] = ACTIONS(1356), [anon_sym_undefined] = ACTIONS(1356), [sym_sink] = ACTIONS(1356), [sym_integer] = ACTIONS(1356), @@ -99661,7 +99661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1356), [anon_sym_false] = ACTIONS(1356), - [anon_sym_none] = ACTIONS(1356), + [anon_sym_null] = ACTIONS(1356), [anon_sym_undefined] = ACTIONS(1356), [sym_sink] = ACTIONS(1356), [sym_integer] = ACTIONS(1356), @@ -99772,7 +99772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(383), [anon_sym_true] = ACTIONS(388), [anon_sym_false] = ACTIONS(388), - [anon_sym_none] = ACTIONS(388), + [anon_sym_null] = ACTIONS(388), [anon_sym_undefined] = ACTIONS(388), [sym_sink] = ACTIONS(388), [sym_integer] = ACTIONS(388), @@ -99883,7 +99883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(323), [anon_sym_true] = ACTIONS(328), [anon_sym_false] = ACTIONS(328), - [anon_sym_none] = ACTIONS(328), + [anon_sym_null] = ACTIONS(328), [anon_sym_undefined] = ACTIONS(328), [sym_sink] = ACTIONS(328), [sym_integer] = ACTIONS(328), @@ -99994,7 +99994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(323), [anon_sym_true] = ACTIONS(328), [anon_sym_false] = ACTIONS(328), - [anon_sym_none] = ACTIONS(328), + [anon_sym_null] = ACTIONS(328), [anon_sym_undefined] = ACTIONS(328), [sym_sink] = ACTIONS(328), [sym_integer] = ACTIONS(328), @@ -100105,7 +100105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(356), [anon_sym_true] = ACTIONS(361), [anon_sym_false] = ACTIONS(361), - [anon_sym_none] = ACTIONS(361), + [anon_sym_null] = ACTIONS(361), [anon_sym_undefined] = ACTIONS(361), [sym_sink] = ACTIONS(361), [sym_integer] = ACTIONS(361), @@ -100216,7 +100216,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(356), [anon_sym_true] = ACTIONS(361), [anon_sym_false] = ACTIONS(361), - [anon_sym_none] = ACTIONS(361), + [anon_sym_null] = ACTIONS(361), [anon_sym_undefined] = ACTIONS(361), [sym_sink] = ACTIONS(361), [sym_integer] = ACTIONS(361), @@ -100327,7 +100327,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(414), [anon_sym_true] = ACTIONS(419), [anon_sym_false] = ACTIONS(419), - [anon_sym_none] = ACTIONS(419), + [anon_sym_null] = ACTIONS(419), [anon_sym_undefined] = ACTIONS(419), [sym_sink] = ACTIONS(419), [sym_integer] = ACTIONS(419), @@ -100437,7 +100437,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(2136), [anon_sym_false] = ACTIONS(2136), - [anon_sym_none] = ACTIONS(2136), + [anon_sym_null] = ACTIONS(2136), [anon_sym_undefined] = ACTIONS(2136), [sym_sink] = ACTIONS(2136), [sym_integer] = ACTIONS(2136), @@ -100547,7 +100547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(2136), [anon_sym_false] = ACTIONS(2136), - [anon_sym_none] = ACTIONS(2136), + [anon_sym_null] = ACTIONS(2136), [anon_sym_undefined] = ACTIONS(2136), [sym_sink] = ACTIONS(2136), [sym_integer] = ACTIONS(2136), @@ -100657,7 +100657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(2136), [anon_sym_false] = ACTIONS(2136), - [anon_sym_none] = ACTIONS(2136), + [anon_sym_null] = ACTIONS(2136), [anon_sym_undefined] = ACTIONS(2136), [sym_sink] = ACTIONS(2136), [sym_integer] = ACTIONS(2136), @@ -100767,7 +100767,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(2136), [anon_sym_false] = ACTIONS(2136), - [anon_sym_none] = ACTIONS(2136), + [anon_sym_null] = ACTIONS(2136), [anon_sym_undefined] = ACTIONS(2136), [sym_sink] = ACTIONS(2136), [sym_integer] = ACTIONS(2136), @@ -100877,7 +100877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(2136), [anon_sym_false] = ACTIONS(2136), - [anon_sym_none] = ACTIONS(2136), + [anon_sym_null] = ACTIONS(2136), [anon_sym_undefined] = ACTIONS(2136), [sym_sink] = ACTIONS(2136), [sym_integer] = ACTIONS(2136), @@ -100987,7 +100987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(2136), [anon_sym_false] = ACTIONS(2136), - [anon_sym_none] = ACTIONS(2136), + [anon_sym_null] = ACTIONS(2136), [anon_sym_undefined] = ACTIONS(2136), [sym_sink] = ACTIONS(2136), [sym_integer] = ACTIONS(2136), @@ -101095,7 +101095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1396), [anon_sym_false] = ACTIONS(1396), - [anon_sym_none] = ACTIONS(1396), + [anon_sym_null] = ACTIONS(1396), [anon_sym_undefined] = ACTIONS(1396), [sym_sink] = ACTIONS(1396), [sym_integer] = ACTIONS(1396), @@ -101203,7 +101203,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1396), [anon_sym_false] = ACTIONS(1396), - [anon_sym_none] = ACTIONS(1396), + [anon_sym_null] = ACTIONS(1396), [anon_sym_undefined] = ACTIONS(1396), [sym_sink] = ACTIONS(1396), [sym_integer] = ACTIONS(1396), @@ -101311,7 +101311,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1422), [anon_sym_false] = ACTIONS(1422), - [anon_sym_none] = ACTIONS(1422), + [anon_sym_null] = ACTIONS(1422), [anon_sym_undefined] = ACTIONS(1422), [sym_sink] = ACTIONS(1422), [sym_integer] = ACTIONS(1422), @@ -101419,7 +101419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1356), [anon_sym_false] = ACTIONS(1356), - [anon_sym_none] = ACTIONS(1356), + [anon_sym_null] = ACTIONS(1356), [anon_sym_undefined] = ACTIONS(1356), [sym_sink] = ACTIONS(1356), [sym_integer] = ACTIONS(1356), @@ -101527,7 +101527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1696), [anon_sym_true] = ACTIONS(1698), [anon_sym_false] = ACTIONS(1698), - [anon_sym_none] = ACTIONS(1698), + [anon_sym_null] = ACTIONS(1698), [anon_sym_undefined] = ACTIONS(1698), [sym_sink] = ACTIONS(1698), [sym_integer] = ACTIONS(1698), @@ -101635,7 +101635,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1396), [anon_sym_false] = ACTIONS(1396), - [anon_sym_none] = ACTIONS(1396), + [anon_sym_null] = ACTIONS(1396), [anon_sym_undefined] = ACTIONS(1396), [sym_sink] = ACTIONS(1396), [sym_integer] = ACTIONS(1396), @@ -101743,7 +101743,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(2136), [anon_sym_false] = ACTIONS(2136), - [anon_sym_none] = ACTIONS(2136), + [anon_sym_null] = ACTIONS(2136), [anon_sym_undefined] = ACTIONS(2136), [sym_sink] = ACTIONS(2136), [sym_integer] = ACTIONS(2136), @@ -101851,7 +101851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1422), [anon_sym_false] = ACTIONS(1422), - [anon_sym_none] = ACTIONS(1422), + [anon_sym_null] = ACTIONS(1422), [anon_sym_undefined] = ACTIONS(1422), [sym_sink] = ACTIONS(1422), [sym_integer] = ACTIONS(1422), @@ -101959,7 +101959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1396), [anon_sym_false] = ACTIONS(1396), - [anon_sym_none] = ACTIONS(1396), + [anon_sym_null] = ACTIONS(1396), [anon_sym_undefined] = ACTIONS(1396), [sym_sink] = ACTIONS(1396), [sym_integer] = ACTIONS(1396), @@ -102067,7 +102067,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1422), [anon_sym_false] = ACTIONS(1422), - [anon_sym_none] = ACTIONS(1422), + [anon_sym_null] = ACTIONS(1422), [anon_sym_undefined] = ACTIONS(1422), [sym_sink] = ACTIONS(1422), [sym_integer] = ACTIONS(1422), @@ -102175,7 +102175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1422), [anon_sym_false] = ACTIONS(1422), - [anon_sym_none] = ACTIONS(1422), + [anon_sym_null] = ACTIONS(1422), [anon_sym_undefined] = ACTIONS(1422), [sym_sink] = ACTIONS(1422), [sym_integer] = ACTIONS(1422), @@ -102283,7 +102283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1392), [anon_sym_false] = ACTIONS(1392), - [anon_sym_none] = ACTIONS(1392), + [anon_sym_null] = ACTIONS(1392), [anon_sym_undefined] = ACTIONS(1392), [sym_sink] = ACTIONS(1392), [sym_integer] = ACTIONS(1392), @@ -102391,7 +102391,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1392), [anon_sym_false] = ACTIONS(1392), - [anon_sym_none] = ACTIONS(1392), + [anon_sym_null] = ACTIONS(1392), [anon_sym_undefined] = ACTIONS(1392), [sym_sink] = ACTIONS(1392), [sym_integer] = ACTIONS(1392), @@ -102499,7 +102499,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1356), [anon_sym_false] = ACTIONS(1356), - [anon_sym_none] = ACTIONS(1356), + [anon_sym_null] = ACTIONS(1356), [anon_sym_undefined] = ACTIONS(1356), [sym_sink] = ACTIONS(1356), [sym_integer] = ACTIONS(1356), @@ -102606,7 +102606,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1928), [anon_sym_true] = ACTIONS(1930), [anon_sym_false] = ACTIONS(1930), - [anon_sym_none] = ACTIONS(1930), + [anon_sym_null] = ACTIONS(1930), [anon_sym_undefined] = ACTIONS(1930), [sym_sink] = ACTIONS(1930), [sym_integer] = ACTIONS(1930), @@ -102713,7 +102713,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1924), [anon_sym_true] = ACTIONS(1926), [anon_sym_false] = ACTIONS(1926), - [anon_sym_none] = ACTIONS(1926), + [anon_sym_null] = ACTIONS(1926), [anon_sym_undefined] = ACTIONS(1926), [sym_sink] = ACTIONS(1926), [sym_integer] = ACTIONS(1926), @@ -102820,7 +102820,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1392), [anon_sym_false] = ACTIONS(1392), - [anon_sym_none] = ACTIONS(1392), + [anon_sym_null] = ACTIONS(1392), [anon_sym_undefined] = ACTIONS(1392), [sym_sink] = ACTIONS(1392), [sym_integer] = ACTIONS(1392), @@ -102862,7 +102862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [sym_identifier] = ACTIONS(2178), @@ -102927,7 +102927,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -103034,7 +103034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1392), [anon_sym_false] = ACTIONS(1392), - [anon_sym_none] = ACTIONS(1392), + [anon_sym_null] = ACTIONS(1392), [anon_sym_undefined] = ACTIONS(1392), [sym_sink] = ACTIONS(1392), [sym_integer] = ACTIONS(1392), @@ -103141,7 +103141,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(2136), [anon_sym_false] = ACTIONS(2136), - [anon_sym_none] = ACTIONS(2136), + [anon_sym_null] = ACTIONS(2136), [anon_sym_undefined] = ACTIONS(2136), [sym_sink] = ACTIONS(2136), [sym_integer] = ACTIONS(2136), @@ -103248,7 +103248,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1356), [anon_sym_false] = ACTIONS(1356), - [anon_sym_none] = ACTIONS(1356), + [anon_sym_null] = ACTIONS(1356), [anon_sym_undefined] = ACTIONS(1356), [sym_sink] = ACTIONS(1356), [sym_integer] = ACTIONS(1356), @@ -103355,7 +103355,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1956), [anon_sym_true] = ACTIONS(1958), [anon_sym_false] = ACTIONS(1958), - [anon_sym_none] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1958), [anon_sym_undefined] = ACTIONS(1958), [sym_sink] = ACTIONS(1958), [sym_integer] = ACTIONS(1958), @@ -103397,7 +103397,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [sym_identifier] = ACTIONS(2178), @@ -103462,7 +103462,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -103569,7 +103569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1932), [anon_sym_true] = ACTIONS(1934), [anon_sym_false] = ACTIONS(1934), - [anon_sym_none] = ACTIONS(1934), + [anon_sym_null] = ACTIONS(1934), [anon_sym_undefined] = ACTIONS(1934), [sym_sink] = ACTIONS(1934), [sym_integer] = ACTIONS(1934), @@ -103676,7 +103676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(1356), [anon_sym_false] = ACTIONS(1356), - [anon_sym_none] = ACTIONS(1356), + [anon_sym_null] = ACTIONS(1356), [anon_sym_undefined] = ACTIONS(1356), [sym_sink] = ACTIONS(1356), [sym_integer] = ACTIONS(1356), @@ -103718,7 +103718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [sym_identifier] = ACTIONS(2178), @@ -103782,7 +103782,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -103887,7 +103887,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2012), [anon_sym_true] = ACTIONS(2014), [anon_sym_false] = ACTIONS(2014), - [anon_sym_none] = ACTIONS(2014), + [anon_sym_null] = ACTIONS(2014), [anon_sym_undefined] = ACTIONS(2014), [sym_sink] = ACTIONS(2014), [sym_integer] = ACTIONS(2014), @@ -103992,7 +103992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1462), [anon_sym_true] = ACTIONS(1464), [anon_sym_false] = ACTIONS(1464), - [anon_sym_none] = ACTIONS(1464), + [anon_sym_null] = ACTIONS(1464), [anon_sym_undefined] = ACTIONS(1464), [sym_sink] = ACTIONS(1464), [sym_integer] = ACTIONS(1464), @@ -104097,7 +104097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1438), [anon_sym_true] = ACTIONS(1440), [anon_sym_false] = ACTIONS(1440), - [anon_sym_none] = ACTIONS(1440), + [anon_sym_null] = ACTIONS(1440), [anon_sym_undefined] = ACTIONS(1440), [sym_sink] = ACTIONS(1440), [sym_integer] = ACTIONS(1440), @@ -104202,7 +104202,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1474), [anon_sym_true] = ACTIONS(1476), [anon_sym_false] = ACTIONS(1476), - [anon_sym_none] = ACTIONS(1476), + [anon_sym_null] = ACTIONS(1476), [anon_sym_undefined] = ACTIONS(1476), [sym_sink] = ACTIONS(1476), [sym_integer] = ACTIONS(1476), @@ -104307,7 +104307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1478), [anon_sym_true] = ACTIONS(1480), [anon_sym_false] = ACTIONS(1480), - [anon_sym_none] = ACTIONS(1480), + [anon_sym_null] = ACTIONS(1480), [anon_sym_undefined] = ACTIONS(1480), [sym_sink] = ACTIONS(1480), [sym_integer] = ACTIONS(1480), @@ -104412,7 +104412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1984), [anon_sym_true] = ACTIONS(1986), [anon_sym_false] = ACTIONS(1986), - [anon_sym_none] = ACTIONS(1986), + [anon_sym_null] = ACTIONS(1986), [anon_sym_undefined] = ACTIONS(1986), [sym_sink] = ACTIONS(1986), [sym_integer] = ACTIONS(1986), @@ -104517,7 +104517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1988), [anon_sym_true] = ACTIONS(1990), [anon_sym_false] = ACTIONS(1990), - [anon_sym_none] = ACTIONS(1990), + [anon_sym_null] = ACTIONS(1990), [anon_sym_undefined] = ACTIONS(1990), [sym_sink] = ACTIONS(1990), [sym_integer] = ACTIONS(1990), @@ -104622,7 +104622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1502), [anon_sym_true] = ACTIONS(1504), [anon_sym_false] = ACTIONS(1504), - [anon_sym_none] = ACTIONS(1504), + [anon_sym_null] = ACTIONS(1504), [anon_sym_undefined] = ACTIONS(1504), [sym_sink] = ACTIONS(1504), [sym_integer] = ACTIONS(1504), @@ -104727,7 +104727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1506), [anon_sym_true] = ACTIONS(1508), [anon_sym_false] = ACTIONS(1508), - [anon_sym_none] = ACTIONS(1508), + [anon_sym_null] = ACTIONS(1508), [anon_sym_undefined] = ACTIONS(1508), [sym_sink] = ACTIONS(1508), [sym_integer] = ACTIONS(1508), @@ -104832,7 +104832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1510), [anon_sym_true] = ACTIONS(1512), [anon_sym_false] = ACTIONS(1512), - [anon_sym_none] = ACTIONS(1512), + [anon_sym_null] = ACTIONS(1512), [anon_sym_undefined] = ACTIONS(1512), [sym_sink] = ACTIONS(1512), [sym_integer] = ACTIONS(1512), @@ -104937,7 +104937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1514), [anon_sym_true] = ACTIONS(1516), [anon_sym_false] = ACTIONS(1516), - [anon_sym_none] = ACTIONS(1516), + [anon_sym_null] = ACTIONS(1516), [anon_sym_undefined] = ACTIONS(1516), [sym_sink] = ACTIONS(1516), [sym_integer] = ACTIONS(1516), @@ -105042,7 +105042,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1518), [anon_sym_true] = ACTIONS(1520), [anon_sym_false] = ACTIONS(1520), - [anon_sym_none] = ACTIONS(1520), + [anon_sym_null] = ACTIONS(1520), [anon_sym_undefined] = ACTIONS(1520), [sym_sink] = ACTIONS(1520), [sym_integer] = ACTIONS(1520), @@ -105147,7 +105147,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1482), [anon_sym_true] = ACTIONS(1484), [anon_sym_false] = ACTIONS(1484), - [anon_sym_none] = ACTIONS(1484), + [anon_sym_null] = ACTIONS(1484), [anon_sym_undefined] = ACTIONS(1484), [sym_sink] = ACTIONS(1484), [sym_integer] = ACTIONS(1484), @@ -105252,7 +105252,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1486), [anon_sym_true] = ACTIONS(1488), [anon_sym_false] = ACTIONS(1488), - [anon_sym_none] = ACTIONS(1488), + [anon_sym_null] = ACTIONS(1488), [anon_sym_undefined] = ACTIONS(1488), [sym_sink] = ACTIONS(1488), [sym_integer] = ACTIONS(1488), @@ -105357,7 +105357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1490), [anon_sym_true] = ACTIONS(1492), [anon_sym_false] = ACTIONS(1492), - [anon_sym_none] = ACTIONS(1492), + [anon_sym_null] = ACTIONS(1492), [anon_sym_undefined] = ACTIONS(1492), [sym_sink] = ACTIONS(1492), [sym_integer] = ACTIONS(1492), @@ -105462,7 +105462,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1494), [anon_sym_true] = ACTIONS(1496), [anon_sym_false] = ACTIONS(1496), - [anon_sym_none] = ACTIONS(1496), + [anon_sym_null] = ACTIONS(1496), [anon_sym_undefined] = ACTIONS(1496), [sym_sink] = ACTIONS(1496), [sym_integer] = ACTIONS(1496), @@ -105567,7 +105567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1498), [anon_sym_true] = ACTIONS(1500), [anon_sym_false] = ACTIONS(1500), - [anon_sym_none] = ACTIONS(1500), + [anon_sym_null] = ACTIONS(1500), [anon_sym_undefined] = ACTIONS(1500), [sym_sink] = ACTIONS(1500), [sym_integer] = ACTIONS(1500), @@ -105672,7 +105672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1992), [anon_sym_true] = ACTIONS(1994), [anon_sym_false] = ACTIONS(1994), - [anon_sym_none] = ACTIONS(1994), + [anon_sym_null] = ACTIONS(1994), [anon_sym_undefined] = ACTIONS(1994), [sym_sink] = ACTIONS(1994), [sym_integer] = ACTIONS(1994), @@ -105777,7 +105777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1442), [anon_sym_true] = ACTIONS(1444), [anon_sym_false] = ACTIONS(1444), - [anon_sym_none] = ACTIONS(1444), + [anon_sym_null] = ACTIONS(1444), [anon_sym_undefined] = ACTIONS(1444), [sym_sink] = ACTIONS(1444), [sym_integer] = ACTIONS(1444), @@ -105882,7 +105882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1446), [anon_sym_true] = ACTIONS(1448), [anon_sym_false] = ACTIONS(1448), - [anon_sym_none] = ACTIONS(1448), + [anon_sym_null] = ACTIONS(1448), [anon_sym_undefined] = ACTIONS(1448), [sym_sink] = ACTIONS(1448), [sym_integer] = ACTIONS(1448), @@ -105987,7 +105987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1956), [anon_sym_true] = ACTIONS(1958), [anon_sym_false] = ACTIONS(1958), - [anon_sym_none] = ACTIONS(1958), + [anon_sym_null] = ACTIONS(1958), [anon_sym_undefined] = ACTIONS(1958), [sym_sink] = ACTIONS(1958), [sym_integer] = ACTIONS(1958), @@ -106092,7 +106092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1522), [anon_sym_true] = ACTIONS(1524), [anon_sym_false] = ACTIONS(1524), - [anon_sym_none] = ACTIONS(1524), + [anon_sym_null] = ACTIONS(1524), [anon_sym_undefined] = ACTIONS(1524), [sym_sink] = ACTIONS(1524), [sym_integer] = ACTIONS(1524), @@ -106197,7 +106197,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2000), [anon_sym_true] = ACTIONS(2002), [anon_sym_false] = ACTIONS(2002), - [anon_sym_none] = ACTIONS(2002), + [anon_sym_null] = ACTIONS(2002), [anon_sym_undefined] = ACTIONS(2002), [sym_sink] = ACTIONS(2002), [sym_integer] = ACTIONS(2002), @@ -106302,7 +106302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1526), [anon_sym_true] = ACTIONS(1528), [anon_sym_false] = ACTIONS(1528), - [anon_sym_none] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1528), [anon_sym_undefined] = ACTIONS(1528), [sym_sink] = ACTIONS(1528), [sym_integer] = ACTIONS(1528), @@ -106407,7 +106407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2004), [anon_sym_true] = ACTIONS(2006), [anon_sym_false] = ACTIONS(2006), - [anon_sym_none] = ACTIONS(2006), + [anon_sym_null] = ACTIONS(2006), [anon_sym_undefined] = ACTIONS(2006), [sym_sink] = ACTIONS(2006), [sym_integer] = ACTIONS(2006), @@ -106512,7 +106512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2008), [anon_sym_true] = ACTIONS(2010), [anon_sym_false] = ACTIONS(2010), - [anon_sym_none] = ACTIONS(2010), + [anon_sym_null] = ACTIONS(2010), [anon_sym_undefined] = ACTIONS(2010), [sym_sink] = ACTIONS(2010), [sym_integer] = ACTIONS(2010), @@ -106617,7 +106617,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1450), [anon_sym_true] = ACTIONS(1452), [anon_sym_false] = ACTIONS(1452), - [anon_sym_none] = ACTIONS(1452), + [anon_sym_null] = ACTIONS(1452), [anon_sym_undefined] = ACTIONS(1452), [sym_sink] = ACTIONS(1452), [sym_integer] = ACTIONS(1452), @@ -106722,7 +106722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1454), [anon_sym_true] = ACTIONS(1456), [anon_sym_false] = ACTIONS(1456), - [anon_sym_none] = ACTIONS(1456), + [anon_sym_null] = ACTIONS(1456), [anon_sym_undefined] = ACTIONS(1456), [sym_sink] = ACTIONS(1456), [sym_integer] = ACTIONS(1456), @@ -106827,7 +106827,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2016), [anon_sym_true] = ACTIONS(2018), [anon_sym_false] = ACTIONS(2018), - [anon_sym_none] = ACTIONS(2018), + [anon_sym_null] = ACTIONS(2018), [anon_sym_undefined] = ACTIONS(2018), [sym_sink] = ACTIONS(2018), [sym_integer] = ACTIONS(2018), @@ -106932,7 +106932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1968), [anon_sym_true] = ACTIONS(1970), [anon_sym_false] = ACTIONS(1970), - [anon_sym_none] = ACTIONS(1970), + [anon_sym_null] = ACTIONS(1970), [anon_sym_undefined] = ACTIONS(1970), [sym_sink] = ACTIONS(1970), [sym_integer] = ACTIONS(1970), @@ -107037,7 +107037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1972), [anon_sym_true] = ACTIONS(1974), [anon_sym_false] = ACTIONS(1974), - [anon_sym_none] = ACTIONS(1974), + [anon_sym_null] = ACTIONS(1974), [anon_sym_undefined] = ACTIONS(1974), [sym_sink] = ACTIONS(1974), [sym_integer] = ACTIONS(1974), @@ -107142,7 +107142,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1530), [anon_sym_true] = ACTIONS(1532), [anon_sym_false] = ACTIONS(1532), - [anon_sym_none] = ACTIONS(1532), + [anon_sym_null] = ACTIONS(1532), [anon_sym_undefined] = ACTIONS(1532), [sym_sink] = ACTIONS(1532), [sym_integer] = ACTIONS(1532), @@ -107247,7 +107247,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1944), [anon_sym_true] = ACTIONS(1946), [anon_sym_false] = ACTIONS(1946), - [anon_sym_none] = ACTIONS(1946), + [anon_sym_null] = ACTIONS(1946), [anon_sym_undefined] = ACTIONS(1946), [sym_sink] = ACTIONS(1946), [sym_integer] = ACTIONS(1946), @@ -107352,7 +107352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1458), [anon_sym_true] = ACTIONS(1460), [anon_sym_false] = ACTIONS(1460), - [anon_sym_none] = ACTIONS(1460), + [anon_sym_null] = ACTIONS(1460), [anon_sym_undefined] = ACTIONS(1460), [sym_sink] = ACTIONS(1460), [sym_integer] = ACTIONS(1460), @@ -107457,7 +107457,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1952), [anon_sym_true] = ACTIONS(1954), [anon_sym_false] = ACTIONS(1954), - [anon_sym_none] = ACTIONS(1954), + [anon_sym_null] = ACTIONS(1954), [anon_sym_undefined] = ACTIONS(1954), [sym_sink] = ACTIONS(1954), [sym_integer] = ACTIONS(1954), @@ -107499,7 +107499,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [ts_builtin_sym_end] = ACTIONS(2182), @@ -107561,7 +107561,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -107603,7 +107603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [ts_builtin_sym_end] = ACTIONS(2182), @@ -107664,7 +107664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -107766,7 +107766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1413), [anon_sym_true] = ACTIONS(1415), [anon_sym_false] = ACTIONS(1415), - [anon_sym_none] = ACTIONS(1415), + [anon_sym_null] = ACTIONS(1415), [anon_sym_undefined] = ACTIONS(1415), [sym_sink] = ACTIONS(1415), [sym_integer] = ACTIONS(1415), @@ -107868,7 +107868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(1392), [anon_sym_false] = ACTIONS(1392), - [anon_sym_none] = ACTIONS(1392), + [anon_sym_null] = ACTIONS(1392), [anon_sym_undefined] = ACTIONS(1392), [sym_sink] = ACTIONS(1392), [sym_integer] = ACTIONS(1392), @@ -107970,7 +107970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1428), [anon_sym_true] = ACTIONS(1430), [anon_sym_false] = ACTIONS(1430), - [anon_sym_none] = ACTIONS(1430), + [anon_sym_null] = ACTIONS(1430), [anon_sym_undefined] = ACTIONS(1430), [sym_sink] = ACTIONS(1430), [sym_integer] = ACTIONS(1430), @@ -108072,7 +108072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(1422), [anon_sym_false] = ACTIONS(1422), - [anon_sym_none] = ACTIONS(1422), + [anon_sym_null] = ACTIONS(1422), [anon_sym_undefined] = ACTIONS(1422), [sym_sink] = ACTIONS(1422), [sym_integer] = ACTIONS(1422), @@ -108174,7 +108174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(1356), [anon_sym_false] = ACTIONS(1356), - [anon_sym_none] = ACTIONS(1356), + [anon_sym_null] = ACTIONS(1356), [anon_sym_undefined] = ACTIONS(1356), [sym_sink] = ACTIONS(1356), [sym_integer] = ACTIONS(1356), @@ -108276,7 +108276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(1396), [anon_sym_false] = ACTIONS(1396), - [anon_sym_none] = ACTIONS(1396), + [anon_sym_null] = ACTIONS(1396), [anon_sym_undefined] = ACTIONS(1396), [sym_sink] = ACTIONS(1396), [sym_integer] = ACTIONS(1396), @@ -108378,7 +108378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1424), [anon_sym_true] = ACTIONS(1426), [anon_sym_false] = ACTIONS(1426), - [anon_sym_none] = ACTIONS(1426), + [anon_sym_null] = ACTIONS(1426), [anon_sym_undefined] = ACTIONS(1426), [sym_sink] = ACTIONS(1426), [sym_integer] = ACTIONS(1426), @@ -108480,7 +108480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1398), [anon_sym_true] = ACTIONS(1400), [anon_sym_false] = ACTIONS(1400), - [anon_sym_none] = ACTIONS(1400), + [anon_sym_null] = ACTIONS(1400), [anon_sym_undefined] = ACTIONS(1400), [sym_sink] = ACTIONS(1400), [sym_integer] = ACTIONS(1400), @@ -108581,7 +108581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1680), [anon_sym_true] = ACTIONS(1682), [anon_sym_false] = ACTIONS(1682), - [anon_sym_none] = ACTIONS(1682), + [anon_sym_null] = ACTIONS(1682), [anon_sym_undefined] = ACTIONS(1682), [sym_sink] = ACTIONS(1682), [sym_integer] = ACTIONS(1682), @@ -108682,7 +108682,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1856), [anon_sym_true] = ACTIONS(1858), [anon_sym_false] = ACTIONS(1858), - [anon_sym_none] = ACTIONS(1858), + [anon_sym_null] = ACTIONS(1858), [anon_sym_undefined] = ACTIONS(1858), [sym_sink] = ACTIONS(1858), [sym_integer] = ACTIONS(1858), @@ -108783,7 +108783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1860), [anon_sym_true] = ACTIONS(1862), [anon_sym_false] = ACTIONS(1862), - [anon_sym_none] = ACTIONS(1862), + [anon_sym_null] = ACTIONS(1862), [anon_sym_undefined] = ACTIONS(1862), [sym_sink] = ACTIONS(1862), [sym_integer] = ACTIONS(1862), @@ -108884,7 +108884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1864), [anon_sym_true] = ACTIONS(1866), [anon_sym_false] = ACTIONS(1866), - [anon_sym_none] = ACTIONS(1866), + [anon_sym_null] = ACTIONS(1866), [anon_sym_undefined] = ACTIONS(1866), [sym_sink] = ACTIONS(1866), [sym_integer] = ACTIONS(1866), @@ -108985,7 +108985,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1980), [anon_sym_true] = ACTIONS(1982), [anon_sym_false] = ACTIONS(1982), - [anon_sym_none] = ACTIONS(1982), + [anon_sym_null] = ACTIONS(1982), [anon_sym_undefined] = ACTIONS(1982), [sym_sink] = ACTIONS(1982), [sym_integer] = ACTIONS(1982), @@ -109086,7 +109086,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1432), [anon_sym_true] = ACTIONS(1434), [anon_sym_false] = ACTIONS(1434), - [anon_sym_none] = ACTIONS(1434), + [anon_sym_null] = ACTIONS(1434), [anon_sym_undefined] = ACTIONS(1434), [sym_sink] = ACTIONS(1434), [sym_integer] = ACTIONS(1434), @@ -109187,7 +109187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1924), [anon_sym_true] = ACTIONS(1926), [anon_sym_false] = ACTIONS(1926), - [anon_sym_none] = ACTIONS(1926), + [anon_sym_null] = ACTIONS(1926), [anon_sym_undefined] = ACTIONS(1926), [sym_sink] = ACTIONS(1926), [sym_integer] = ACTIONS(1926), @@ -109288,7 +109288,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1668), [anon_sym_true] = ACTIONS(1670), [anon_sym_false] = ACTIONS(1670), - [anon_sym_none] = ACTIONS(1670), + [anon_sym_null] = ACTIONS(1670), [anon_sym_undefined] = ACTIONS(1670), [sym_sink] = ACTIONS(1670), [sym_integer] = ACTIONS(1670), @@ -109389,7 +109389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1672), [anon_sym_true] = ACTIONS(1674), [anon_sym_false] = ACTIONS(1674), - [anon_sym_none] = ACTIONS(1674), + [anon_sym_null] = ACTIONS(1674), [anon_sym_undefined] = ACTIONS(1674), [sym_sink] = ACTIONS(1674), [sym_integer] = ACTIONS(1674), @@ -109490,7 +109490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1796), [anon_sym_true] = ACTIONS(1798), [anon_sym_false] = ACTIONS(1798), - [anon_sym_none] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1798), [anon_sym_undefined] = ACTIONS(1798), [sym_sink] = ACTIONS(1798), [sym_integer] = ACTIONS(1798), @@ -109591,7 +109591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1800), [anon_sym_true] = ACTIONS(1802), [anon_sym_false] = ACTIONS(1802), - [anon_sym_none] = ACTIONS(1802), + [anon_sym_null] = ACTIONS(1802), [anon_sym_undefined] = ACTIONS(1802), [sym_sink] = ACTIONS(1802), [sym_integer] = ACTIONS(1802), @@ -109692,7 +109692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1736), [anon_sym_true] = ACTIONS(1738), [anon_sym_false] = ACTIONS(1738), - [anon_sym_none] = ACTIONS(1738), + [anon_sym_null] = ACTIONS(1738), [anon_sym_undefined] = ACTIONS(1738), [sym_sink] = ACTIONS(1738), [sym_integer] = ACTIONS(1738), @@ -109793,7 +109793,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1804), [anon_sym_true] = ACTIONS(1806), [anon_sym_false] = ACTIONS(1806), - [anon_sym_none] = ACTIONS(1806), + [anon_sym_null] = ACTIONS(1806), [anon_sym_undefined] = ACTIONS(1806), [sym_sink] = ACTIONS(1806), [sym_integer] = ACTIONS(1806), @@ -109894,7 +109894,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1868), [anon_sym_true] = ACTIONS(1870), [anon_sym_false] = ACTIONS(1870), - [anon_sym_none] = ACTIONS(1870), + [anon_sym_null] = ACTIONS(1870), [anon_sym_undefined] = ACTIONS(1870), [sym_sink] = ACTIONS(1870), [sym_integer] = ACTIONS(1870), @@ -109995,7 +109995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1466), [anon_sym_true] = ACTIONS(1468), [anon_sym_false] = ACTIONS(1468), - [anon_sym_none] = ACTIONS(1468), + [anon_sym_null] = ACTIONS(1468), [anon_sym_undefined] = ACTIONS(1468), [sym_sink] = ACTIONS(1468), [sym_integer] = ACTIONS(1468), @@ -110096,7 +110096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1470), [anon_sym_true] = ACTIONS(1472), [anon_sym_false] = ACTIONS(1472), - [anon_sym_none] = ACTIONS(1472), + [anon_sym_null] = ACTIONS(1472), [anon_sym_undefined] = ACTIONS(1472), [sym_sink] = ACTIONS(1472), [sym_integer] = ACTIONS(1472), @@ -110197,7 +110197,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1808), [anon_sym_true] = ACTIONS(1810), [anon_sym_false] = ACTIONS(1810), - [anon_sym_none] = ACTIONS(1810), + [anon_sym_null] = ACTIONS(1810), [anon_sym_undefined] = ACTIONS(1810), [sym_sink] = ACTIONS(1810), [sym_integer] = ACTIONS(1810), @@ -110298,7 +110298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1812), [anon_sym_true] = ACTIONS(1814), [anon_sym_false] = ACTIONS(1814), - [anon_sym_none] = ACTIONS(1814), + [anon_sym_null] = ACTIONS(1814), [anon_sym_undefined] = ACTIONS(1814), [sym_sink] = ACTIONS(1814), [sym_integer] = ACTIONS(1814), @@ -110399,7 +110399,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1816), [anon_sym_true] = ACTIONS(1818), [anon_sym_false] = ACTIONS(1818), - [anon_sym_none] = ACTIONS(1818), + [anon_sym_null] = ACTIONS(1818), [anon_sym_undefined] = ACTIONS(1818), [sym_sink] = ACTIONS(1818), [sym_integer] = ACTIONS(1818), @@ -110500,7 +110500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1820), [anon_sym_true] = ACTIONS(1822), [anon_sym_false] = ACTIONS(1822), - [anon_sym_none] = ACTIONS(1822), + [anon_sym_null] = ACTIONS(1822), [anon_sym_undefined] = ACTIONS(1822), [sym_sink] = ACTIONS(1822), [sym_integer] = ACTIONS(1822), @@ -110601,7 +110601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(455), [anon_sym_true] = ACTIONS(453), [anon_sym_false] = ACTIONS(453), - [anon_sym_none] = ACTIONS(453), + [anon_sym_null] = ACTIONS(453), [anon_sym_undefined] = ACTIONS(453), [sym_sink] = ACTIONS(453), [sym_integer] = ACTIONS(453), @@ -110702,7 +110702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1824), [anon_sym_true] = ACTIONS(1826), [anon_sym_false] = ACTIONS(1826), - [anon_sym_none] = ACTIONS(1826), + [anon_sym_null] = ACTIONS(1826), [anon_sym_undefined] = ACTIONS(1826), [sym_sink] = ACTIONS(1826), [sym_integer] = ACTIONS(1826), @@ -110803,7 +110803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1828), [anon_sym_true] = ACTIONS(1830), [anon_sym_false] = ACTIONS(1830), - [anon_sym_none] = ACTIONS(1830), + [anon_sym_null] = ACTIONS(1830), [anon_sym_undefined] = ACTIONS(1830), [sym_sink] = ACTIONS(1830), [sym_integer] = ACTIONS(1830), @@ -110904,7 +110904,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1662), [anon_sym_true] = ACTIONS(1664), [anon_sym_false] = ACTIONS(1664), - [anon_sym_none] = ACTIONS(1664), + [anon_sym_null] = ACTIONS(1664), [anon_sym_undefined] = ACTIONS(1664), [sym_sink] = ACTIONS(1664), [sym_integer] = ACTIONS(1664), @@ -111005,7 +111005,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1872), [anon_sym_true] = ACTIONS(1874), [anon_sym_false] = ACTIONS(1874), - [anon_sym_none] = ACTIONS(1874), + [anon_sym_null] = ACTIONS(1874), [anon_sym_undefined] = ACTIONS(1874), [sym_sink] = ACTIONS(1874), [sym_integer] = ACTIONS(1874), @@ -111106,7 +111106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1876), [anon_sym_true] = ACTIONS(1878), [anon_sym_false] = ACTIONS(1878), - [anon_sym_none] = ACTIONS(1878), + [anon_sym_null] = ACTIONS(1878), [anon_sym_undefined] = ACTIONS(1878), [sym_sink] = ACTIONS(1878), [sym_integer] = ACTIONS(1878), @@ -111207,7 +111207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1700), [anon_sym_true] = ACTIONS(1702), [anon_sym_false] = ACTIONS(1702), - [anon_sym_none] = ACTIONS(1702), + [anon_sym_null] = ACTIONS(1702), [anon_sym_undefined] = ACTIONS(1702), [sym_sink] = ACTIONS(1702), [sym_integer] = ACTIONS(1702), @@ -111308,7 +111308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1756), [anon_sym_true] = ACTIONS(1758), [anon_sym_false] = ACTIONS(1758), - [anon_sym_none] = ACTIONS(1758), + [anon_sym_null] = ACTIONS(1758), [anon_sym_undefined] = ACTIONS(1758), [sym_sink] = ACTIONS(1758), [sym_integer] = ACTIONS(1758), @@ -111409,7 +111409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1704), [anon_sym_true] = ACTIONS(1706), [anon_sym_false] = ACTIONS(1706), - [anon_sym_none] = ACTIONS(1706), + [anon_sym_null] = ACTIONS(1706), [anon_sym_undefined] = ACTIONS(1706), [sym_sink] = ACTIONS(1706), [sym_integer] = ACTIONS(1706), @@ -111451,7 +111451,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [sym_identifier] = ACTIONS(2178), @@ -111510,7 +111510,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -111611,7 +111611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1760), [anon_sym_true] = ACTIONS(1762), [anon_sym_false] = ACTIONS(1762), - [anon_sym_none] = ACTIONS(1762), + [anon_sym_null] = ACTIONS(1762), [anon_sym_undefined] = ACTIONS(1762), [sym_sink] = ACTIONS(1762), [sym_integer] = ACTIONS(1762), @@ -111712,7 +111712,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1764), [anon_sym_true] = ACTIONS(1766), [anon_sym_false] = ACTIONS(1766), - [anon_sym_none] = ACTIONS(1766), + [anon_sym_null] = ACTIONS(1766), [anon_sym_undefined] = ACTIONS(1766), [sym_sink] = ACTIONS(1766), [sym_integer] = ACTIONS(1766), @@ -111813,7 +111813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1768), [anon_sym_true] = ACTIONS(1770), [anon_sym_false] = ACTIONS(1770), - [anon_sym_none] = ACTIONS(1770), + [anon_sym_null] = ACTIONS(1770), [anon_sym_undefined] = ACTIONS(1770), [sym_sink] = ACTIONS(1770), [sym_integer] = ACTIONS(1770), @@ -111914,7 +111914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(447), [anon_sym_true] = ACTIONS(445), [anon_sym_false] = ACTIONS(445), - [anon_sym_none] = ACTIONS(445), + [anon_sym_null] = ACTIONS(445), [anon_sym_undefined] = ACTIONS(445), [sym_sink] = ACTIONS(445), [sym_integer] = ACTIONS(445), @@ -112015,7 +112015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(443), [anon_sym_true] = ACTIONS(441), [anon_sym_false] = ACTIONS(441), - [anon_sym_none] = ACTIONS(441), + [anon_sym_null] = ACTIONS(441), [anon_sym_undefined] = ACTIONS(441), [sym_sink] = ACTIONS(441), [sym_integer] = ACTIONS(441), @@ -112116,7 +112116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1772), [anon_sym_true] = ACTIONS(1774), [anon_sym_false] = ACTIONS(1774), - [anon_sym_none] = ACTIONS(1774), + [anon_sym_null] = ACTIONS(1774), [anon_sym_undefined] = ACTIONS(1774), [sym_sink] = ACTIONS(1774), [sym_integer] = ACTIONS(1774), @@ -112217,7 +112217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1740), [anon_sym_true] = ACTIONS(1742), [anon_sym_false] = ACTIONS(1742), - [anon_sym_none] = ACTIONS(1742), + [anon_sym_null] = ACTIONS(1742), [anon_sym_undefined] = ACTIONS(1742), [sym_sink] = ACTIONS(1742), [sym_integer] = ACTIONS(1742), @@ -112318,7 +112318,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1744), [anon_sym_true] = ACTIONS(1746), [anon_sym_false] = ACTIONS(1746), - [anon_sym_none] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1746), [anon_sym_undefined] = ACTIONS(1746), [sym_sink] = ACTIONS(1746), [sym_integer] = ACTIONS(1746), @@ -112419,7 +112419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1732), [anon_sym_true] = ACTIONS(1734), [anon_sym_false] = ACTIONS(1734), - [anon_sym_none] = ACTIONS(1734), + [anon_sym_null] = ACTIONS(1734), [anon_sym_undefined] = ACTIONS(1734), [sym_sink] = ACTIONS(1734), [sym_integer] = ACTIONS(1734), @@ -112520,7 +112520,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1748), [anon_sym_true] = ACTIONS(1750), [anon_sym_false] = ACTIONS(1750), - [anon_sym_none] = ACTIONS(1750), + [anon_sym_null] = ACTIONS(1750), [anon_sym_undefined] = ACTIONS(1750), [sym_sink] = ACTIONS(1750), [sym_integer] = ACTIONS(1750), @@ -112621,7 +112621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1880), [anon_sym_true] = ACTIONS(1882), [anon_sym_false] = ACTIONS(1882), - [anon_sym_none] = ACTIONS(1882), + [anon_sym_null] = ACTIONS(1882), [anon_sym_undefined] = ACTIONS(1882), [sym_sink] = ACTIONS(1882), [sym_integer] = ACTIONS(1882), @@ -112722,7 +112722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1752), [anon_sym_true] = ACTIONS(1754), [anon_sym_false] = ACTIONS(1754), - [anon_sym_none] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1754), [anon_sym_undefined] = ACTIONS(1754), [sym_sink] = ACTIONS(1754), [sym_integer] = ACTIONS(1754), @@ -112823,7 +112823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1948), [anon_sym_true] = ACTIONS(1950), [anon_sym_false] = ACTIONS(1950), - [anon_sym_none] = ACTIONS(1950), + [anon_sym_null] = ACTIONS(1950), [anon_sym_undefined] = ACTIONS(1950), [sym_sink] = ACTIONS(1950), [sym_integer] = ACTIONS(1950), @@ -112924,7 +112924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(414), [anon_sym_true] = ACTIONS(419), [anon_sym_false] = ACTIONS(419), - [anon_sym_none] = ACTIONS(419), + [anon_sym_null] = ACTIONS(419), [anon_sym_undefined] = ACTIONS(419), [sym_sink] = ACTIONS(419), [sym_integer] = ACTIONS(419), @@ -113025,7 +113025,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1684), [anon_sym_true] = ACTIONS(1686), [anon_sym_false] = ACTIONS(1686), - [anon_sym_none] = ACTIONS(1686), + [anon_sym_null] = ACTIONS(1686), [anon_sym_undefined] = ACTIONS(1686), [sym_sink] = ACTIONS(1686), [sym_integer] = ACTIONS(1686), @@ -113126,7 +113126,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1884), [anon_sym_true] = ACTIONS(1886), [anon_sym_false] = ACTIONS(1886), - [anon_sym_none] = ACTIONS(1886), + [anon_sym_null] = ACTIONS(1886), [anon_sym_undefined] = ACTIONS(1886), [sym_sink] = ACTIONS(1886), [sym_integer] = ACTIONS(1886), @@ -113227,7 +113227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1888), [anon_sym_true] = ACTIONS(1890), [anon_sym_false] = ACTIONS(1890), - [anon_sym_none] = ACTIONS(1890), + [anon_sym_null] = ACTIONS(1890), [anon_sym_undefined] = ACTIONS(1890), [sym_sink] = ACTIONS(1890), [sym_integer] = ACTIONS(1890), @@ -113328,7 +113328,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1892), [anon_sym_true] = ACTIONS(1894), [anon_sym_false] = ACTIONS(1894), - [anon_sym_none] = ACTIONS(1894), + [anon_sym_null] = ACTIONS(1894), [anon_sym_undefined] = ACTIONS(1894), [sym_sink] = ACTIONS(1894), [sym_integer] = ACTIONS(1894), @@ -113429,7 +113429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1724), [anon_sym_true] = ACTIONS(1726), [anon_sym_false] = ACTIONS(1726), - [anon_sym_none] = ACTIONS(1726), + [anon_sym_null] = ACTIONS(1726), [anon_sym_undefined] = ACTIONS(1726), [sym_sink] = ACTIONS(1726), [sym_integer] = ACTIONS(1726), @@ -113530,7 +113530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1646), [anon_sym_true] = ACTIONS(1648), [anon_sym_false] = ACTIONS(1648), - [anon_sym_none] = ACTIONS(1648), + [anon_sym_null] = ACTIONS(1648), [anon_sym_undefined] = ACTIONS(1648), [sym_sink] = ACTIONS(1648), [sym_integer] = ACTIONS(1648), @@ -113631,7 +113631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1708), [anon_sym_true] = ACTIONS(1710), [anon_sym_false] = ACTIONS(1710), - [anon_sym_none] = ACTIONS(1710), + [anon_sym_null] = ACTIONS(1710), [anon_sym_undefined] = ACTIONS(1710), [sym_sink] = ACTIONS(1710), [sym_integer] = ACTIONS(1710), @@ -113732,7 +113732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1642), [anon_sym_true] = ACTIONS(1644), [anon_sym_false] = ACTIONS(1644), - [anon_sym_none] = ACTIONS(1644), + [anon_sym_null] = ACTIONS(1644), [anon_sym_undefined] = ACTIONS(1644), [sym_sink] = ACTIONS(1644), [sym_integer] = ACTIONS(1644), @@ -113833,7 +113833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1996), [anon_sym_true] = ACTIONS(1998), [anon_sym_false] = ACTIONS(1998), - [anon_sym_none] = ACTIONS(1998), + [anon_sym_null] = ACTIONS(1998), [anon_sym_undefined] = ACTIONS(1998), [sym_sink] = ACTIONS(1998), [sym_integer] = ACTIONS(1998), @@ -113934,7 +113934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1712), [anon_sym_true] = ACTIONS(1714), [anon_sym_false] = ACTIONS(1714), - [anon_sym_none] = ACTIONS(1714), + [anon_sym_null] = ACTIONS(1714), [anon_sym_undefined] = ACTIONS(1714), [sym_sink] = ACTIONS(1714), [sym_integer] = ACTIONS(1714), @@ -114035,7 +114035,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1896), [anon_sym_true] = ACTIONS(1898), [anon_sym_false] = ACTIONS(1898), - [anon_sym_none] = ACTIONS(1898), + [anon_sym_null] = ACTIONS(1898), [anon_sym_undefined] = ACTIONS(1898), [sym_sink] = ACTIONS(1898), [sym_integer] = ACTIONS(1898), @@ -114136,7 +114136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2028), [anon_sym_true] = ACTIONS(2030), [anon_sym_false] = ACTIONS(2030), - [anon_sym_none] = ACTIONS(2030), + [anon_sym_null] = ACTIONS(2030), [anon_sym_undefined] = ACTIONS(2030), [sym_sink] = ACTIONS(2030), [sym_integer] = ACTIONS(2030), @@ -114237,7 +114237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(356), [anon_sym_true] = ACTIONS(361), [anon_sym_false] = ACTIONS(361), - [anon_sym_none] = ACTIONS(361), + [anon_sym_null] = ACTIONS(361), [anon_sym_undefined] = ACTIONS(361), [sym_sink] = ACTIONS(361), [sym_integer] = ACTIONS(361), @@ -114338,7 +114338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1590), [anon_sym_true] = ACTIONS(1592), [anon_sym_false] = ACTIONS(1592), - [anon_sym_none] = ACTIONS(1592), + [anon_sym_null] = ACTIONS(1592), [anon_sym_undefined] = ACTIONS(1592), [sym_sink] = ACTIONS(1592), [sym_integer] = ACTIONS(1592), @@ -114439,7 +114439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1594), [anon_sym_true] = ACTIONS(1596), [anon_sym_false] = ACTIONS(1596), - [anon_sym_none] = ACTIONS(1596), + [anon_sym_null] = ACTIONS(1596), [anon_sym_undefined] = ACTIONS(1596), [sym_sink] = ACTIONS(1596), [sym_integer] = ACTIONS(1596), @@ -114540,7 +114540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1598), [anon_sym_true] = ACTIONS(1600), [anon_sym_false] = ACTIONS(1600), - [anon_sym_none] = ACTIONS(1600), + [anon_sym_null] = ACTIONS(1600), [anon_sym_undefined] = ACTIONS(1600), [sym_sink] = ACTIONS(1600), [sym_integer] = ACTIONS(1600), @@ -114641,7 +114641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1900), [anon_sym_true] = ACTIONS(1902), [anon_sym_false] = ACTIONS(1902), - [anon_sym_none] = ACTIONS(1902), + [anon_sym_null] = ACTIONS(1902), [anon_sym_undefined] = ACTIONS(1902), [sym_sink] = ACTIONS(1902), [sym_integer] = ACTIONS(1902), @@ -114742,7 +114742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1932), [anon_sym_true] = ACTIONS(1934), [anon_sym_false] = ACTIONS(1934), - [anon_sym_none] = ACTIONS(1934), + [anon_sym_null] = ACTIONS(1934), [anon_sym_undefined] = ACTIONS(1934), [sym_sink] = ACTIONS(1934), [sym_integer] = ACTIONS(1934), @@ -114843,7 +114843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1904), [anon_sym_true] = ACTIONS(1906), [anon_sym_false] = ACTIONS(1906), - [anon_sym_none] = ACTIONS(1906), + [anon_sym_null] = ACTIONS(1906), [anon_sym_undefined] = ACTIONS(1906), [sym_sink] = ACTIONS(1906), [sym_integer] = ACTIONS(1906), @@ -114944,7 +114944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1832), [anon_sym_true] = ACTIONS(1834), [anon_sym_false] = ACTIONS(1834), - [anon_sym_none] = ACTIONS(1834), + [anon_sym_null] = ACTIONS(1834), [anon_sym_undefined] = ACTIONS(1834), [sym_sink] = ACTIONS(1834), [sym_integer] = ACTIONS(1834), @@ -115045,7 +115045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1836), [anon_sym_true] = ACTIONS(1838), [anon_sym_false] = ACTIONS(1838), - [anon_sym_none] = ACTIONS(1838), + [anon_sym_null] = ACTIONS(1838), [anon_sym_undefined] = ACTIONS(1838), [sym_sink] = ACTIONS(1838), [sym_integer] = ACTIONS(1838), @@ -115146,7 +115146,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1602), [anon_sym_true] = ACTIONS(1604), [anon_sym_false] = ACTIONS(1604), - [anon_sym_none] = ACTIONS(1604), + [anon_sym_null] = ACTIONS(1604), [anon_sym_undefined] = ACTIONS(1604), [sym_sink] = ACTIONS(1604), [sym_integer] = ACTIONS(1604), @@ -115247,7 +115247,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1606), [anon_sym_true] = ACTIONS(1608), [anon_sym_false] = ACTIONS(1608), - [anon_sym_none] = ACTIONS(1608), + [anon_sym_null] = ACTIONS(1608), [anon_sym_undefined] = ACTIONS(1608), [sym_sink] = ACTIONS(1608), [sym_integer] = ACTIONS(1608), @@ -115348,7 +115348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1534), [anon_sym_true] = ACTIONS(1536), [anon_sym_false] = ACTIONS(1536), - [anon_sym_none] = ACTIONS(1536), + [anon_sym_null] = ACTIONS(1536), [anon_sym_undefined] = ACTIONS(1536), [sym_sink] = ACTIONS(1536), [sym_integer] = ACTIONS(1536), @@ -115449,7 +115449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1610), [anon_sym_true] = ACTIONS(1612), [anon_sym_false] = ACTIONS(1612), - [anon_sym_none] = ACTIONS(1612), + [anon_sym_null] = ACTIONS(1612), [anon_sym_undefined] = ACTIONS(1612), [sym_sink] = ACTIONS(1612), [sym_integer] = ACTIONS(1612), @@ -115550,7 +115550,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1413), [anon_sym_true] = ACTIONS(1415), [anon_sym_false] = ACTIONS(1415), - [anon_sym_none] = ACTIONS(1415), + [anon_sym_null] = ACTIONS(1415), [anon_sym_undefined] = ACTIONS(1415), [sym_sink] = ACTIONS(1415), [sym_integer] = ACTIONS(1415), @@ -115651,7 +115651,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1688), [anon_sym_true] = ACTIONS(1690), [anon_sym_false] = ACTIONS(1690), - [anon_sym_none] = ACTIONS(1690), + [anon_sym_null] = ACTIONS(1690), [anon_sym_undefined] = ACTIONS(1690), [sym_sink] = ACTIONS(1690), [sym_integer] = ACTIONS(1690), @@ -115752,7 +115752,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1840), [anon_sym_true] = ACTIONS(1842), [anon_sym_false] = ACTIONS(1842), - [anon_sym_none] = ACTIONS(1842), + [anon_sym_null] = ACTIONS(1842), [anon_sym_undefined] = ACTIONS(1842), [sym_sink] = ACTIONS(1842), [sym_integer] = ACTIONS(1842), @@ -115853,7 +115853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1844), [anon_sym_true] = ACTIONS(1846), [anon_sym_false] = ACTIONS(1846), - [anon_sym_none] = ACTIONS(1846), + [anon_sym_null] = ACTIONS(1846), [anon_sym_undefined] = ACTIONS(1846), [sym_sink] = ACTIONS(1846), [sym_integer] = ACTIONS(1846), @@ -115954,7 +115954,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1848), [anon_sym_true] = ACTIONS(1850), [anon_sym_false] = ACTIONS(1850), - [anon_sym_none] = ACTIONS(1850), + [anon_sym_null] = ACTIONS(1850), [anon_sym_undefined] = ACTIONS(1850), [sym_sink] = ACTIONS(1850), [sym_integer] = ACTIONS(1850), @@ -116055,7 +116055,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1692), [anon_sym_true] = ACTIONS(1694), [anon_sym_false] = ACTIONS(1694), - [anon_sym_none] = ACTIONS(1694), + [anon_sym_null] = ACTIONS(1694), [anon_sym_undefined] = ACTIONS(1694), [sym_sink] = ACTIONS(1694), [sym_integer] = ACTIONS(1694), @@ -116156,7 +116156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1776), [anon_sym_true] = ACTIONS(1778), [anon_sym_false] = ACTIONS(1778), - [anon_sym_none] = ACTIONS(1778), + [anon_sym_null] = ACTIONS(1778), [anon_sym_undefined] = ACTIONS(1778), [sym_sink] = ACTIONS(1778), [sym_integer] = ACTIONS(1778), @@ -116257,7 +116257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1780), [anon_sym_true] = ACTIONS(1782), [anon_sym_false] = ACTIONS(1782), - [anon_sym_none] = ACTIONS(1782), + [anon_sym_null] = ACTIONS(1782), [anon_sym_undefined] = ACTIONS(1782), [sym_sink] = ACTIONS(1782), [sym_integer] = ACTIONS(1782), @@ -116358,7 +116358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1614), [anon_sym_true] = ACTIONS(1616), [anon_sym_false] = ACTIONS(1616), - [anon_sym_none] = ACTIONS(1616), + [anon_sym_null] = ACTIONS(1616), [anon_sym_undefined] = ACTIONS(1616), [sym_sink] = ACTIONS(1616), [sym_integer] = ACTIONS(1616), @@ -116459,7 +116459,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1620), [anon_sym_true] = ACTIONS(1622), [anon_sym_false] = ACTIONS(1622), - [anon_sym_none] = ACTIONS(1622), + [anon_sym_null] = ACTIONS(1622), [anon_sym_undefined] = ACTIONS(1622), [sym_sink] = ACTIONS(1622), [sym_integer] = ACTIONS(1622), @@ -116560,7 +116560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1928), [anon_sym_true] = ACTIONS(1930), [anon_sym_false] = ACTIONS(1930), - [anon_sym_none] = ACTIONS(1930), + [anon_sym_null] = ACTIONS(1930), [anon_sym_undefined] = ACTIONS(1930), [sym_sink] = ACTIONS(1930), [sym_integer] = ACTIONS(1930), @@ -116661,7 +116661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1960), [anon_sym_true] = ACTIONS(1962), [anon_sym_false] = ACTIONS(1962), - [anon_sym_none] = ACTIONS(1962), + [anon_sym_null] = ACTIONS(1962), [anon_sym_undefined] = ACTIONS(1962), [sym_sink] = ACTIONS(1962), [sym_integer] = ACTIONS(1962), @@ -116762,7 +116762,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1784), [anon_sym_true] = ACTIONS(1786), [anon_sym_false] = ACTIONS(1786), - [anon_sym_none] = ACTIONS(1786), + [anon_sym_null] = ACTIONS(1786), [anon_sym_undefined] = ACTIONS(1786), [sym_sink] = ACTIONS(1786), [sym_integer] = ACTIONS(1786), @@ -116863,7 +116863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1788), [anon_sym_true] = ACTIONS(1790), [anon_sym_false] = ACTIONS(1790), - [anon_sym_none] = ACTIONS(1790), + [anon_sym_null] = ACTIONS(1790), [anon_sym_undefined] = ACTIONS(1790), [sym_sink] = ACTIONS(1790), [sym_integer] = ACTIONS(1790), @@ -116964,7 +116964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1792), [anon_sym_true] = ACTIONS(1794), [anon_sym_false] = ACTIONS(1794), - [anon_sym_none] = ACTIONS(1794), + [anon_sym_null] = ACTIONS(1794), [anon_sym_undefined] = ACTIONS(1794), [sym_sink] = ACTIONS(1794), [sym_integer] = ACTIONS(1794), @@ -117065,7 +117065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1964), [anon_sym_true] = ACTIONS(1966), [anon_sym_false] = ACTIONS(1966), - [anon_sym_none] = ACTIONS(1966), + [anon_sym_null] = ACTIONS(1966), [anon_sym_undefined] = ACTIONS(1966), [sym_sink] = ACTIONS(1966), [sym_integer] = ACTIONS(1966), @@ -117166,7 +117166,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1624), [anon_sym_true] = ACTIONS(1626), [anon_sym_false] = ACTIONS(1626), - [anon_sym_none] = ACTIONS(1626), + [anon_sym_null] = ACTIONS(1626), [anon_sym_undefined] = ACTIONS(1626), [sym_sink] = ACTIONS(1626), [sym_integer] = ACTIONS(1626), @@ -117267,7 +117267,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1630), [anon_sym_true] = ACTIONS(1632), [anon_sym_false] = ACTIONS(1632), - [anon_sym_none] = ACTIONS(1632), + [anon_sym_null] = ACTIONS(1632), [anon_sym_undefined] = ACTIONS(1632), [sym_sink] = ACTIONS(1632), [sym_integer] = ACTIONS(1632), @@ -117368,7 +117368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1676), [anon_sym_true] = ACTIONS(1678), [anon_sym_false] = ACTIONS(1678), - [anon_sym_none] = ACTIONS(1678), + [anon_sym_null] = ACTIONS(1678), [anon_sym_undefined] = ACTIONS(1678), [sym_sink] = ACTIONS(1678), [sym_integer] = ACTIONS(1678), @@ -117469,7 +117469,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(478), [anon_sym_true] = ACTIONS(469), [anon_sym_false] = ACTIONS(469), - [anon_sym_none] = ACTIONS(469), + [anon_sym_null] = ACTIONS(469), [anon_sym_undefined] = ACTIONS(469), [sym_sink] = ACTIONS(469), [sym_integer] = ACTIONS(469), @@ -117570,7 +117570,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1650), [anon_sym_true] = ACTIONS(1652), [anon_sym_false] = ACTIONS(1652), - [anon_sym_none] = ACTIONS(1652), + [anon_sym_null] = ACTIONS(1652), [anon_sym_undefined] = ACTIONS(1652), [sym_sink] = ACTIONS(1652), [sym_integer] = ACTIONS(1652), @@ -117671,7 +117671,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(451), [anon_sym_true] = ACTIONS(449), [anon_sym_false] = ACTIONS(449), - [anon_sym_none] = ACTIONS(449), + [anon_sym_null] = ACTIONS(449), [anon_sym_undefined] = ACTIONS(449), [sym_sink] = ACTIONS(449), [sym_integer] = ACTIONS(449), @@ -117772,7 +117772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1634), [anon_sym_true] = ACTIONS(1636), [anon_sym_false] = ACTIONS(1636), - [anon_sym_none] = ACTIONS(1636), + [anon_sym_null] = ACTIONS(1636), [anon_sym_undefined] = ACTIONS(1636), [sym_sink] = ACTIONS(1636), [sym_integer] = ACTIONS(1636), @@ -117873,7 +117873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1638), [anon_sym_true] = ACTIONS(1640), [anon_sym_false] = ACTIONS(1640), - [anon_sym_none] = ACTIONS(1640), + [anon_sym_null] = ACTIONS(1640), [anon_sym_undefined] = ACTIONS(1640), [sym_sink] = ACTIONS(1640), [sym_integer] = ACTIONS(1640), @@ -117915,7 +117915,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [sym_identifier] = ACTIONS(2209), @@ -117974,7 +117974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -118075,7 +118075,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1696), [anon_sym_true] = ACTIONS(1698), [anon_sym_false] = ACTIONS(1698), - [anon_sym_none] = ACTIONS(1698), + [anon_sym_null] = ACTIONS(1698), [anon_sym_undefined] = ACTIONS(1698), [sym_sink] = ACTIONS(1698), [sym_integer] = ACTIONS(1698), @@ -118176,7 +118176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1654), [anon_sym_true] = ACTIONS(1656), [anon_sym_false] = ACTIONS(1656), - [anon_sym_none] = ACTIONS(1656), + [anon_sym_null] = ACTIONS(1656), [anon_sym_undefined] = ACTIONS(1656), [sym_sink] = ACTIONS(1656), [sym_integer] = ACTIONS(1656), @@ -118277,7 +118277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1908), [anon_sym_true] = ACTIONS(1910), [anon_sym_false] = ACTIONS(1910), - [anon_sym_none] = ACTIONS(1910), + [anon_sym_null] = ACTIONS(1910), [anon_sym_undefined] = ACTIONS(1910), [sym_sink] = ACTIONS(1910), [sym_integer] = ACTIONS(1910), @@ -118378,7 +118378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1912), [anon_sym_true] = ACTIONS(1914), [anon_sym_false] = ACTIONS(1914), - [anon_sym_none] = ACTIONS(1914), + [anon_sym_null] = ACTIONS(1914), [anon_sym_undefined] = ACTIONS(1914), [sym_sink] = ACTIONS(1914), [sym_integer] = ACTIONS(1914), @@ -118479,7 +118479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1916), [anon_sym_true] = ACTIONS(1918), [anon_sym_false] = ACTIONS(1918), - [anon_sym_none] = ACTIONS(1918), + [anon_sym_null] = ACTIONS(1918), [anon_sym_undefined] = ACTIONS(1918), [sym_sink] = ACTIONS(1918), [sym_integer] = ACTIONS(1918), @@ -118580,7 +118580,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1920), [anon_sym_true] = ACTIONS(1922), [anon_sym_false] = ACTIONS(1922), - [anon_sym_none] = ACTIONS(1922), + [anon_sym_null] = ACTIONS(1922), [anon_sym_undefined] = ACTIONS(1922), [sym_sink] = ACTIONS(1922), [sym_integer] = ACTIONS(1922), @@ -118681,7 +118681,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1936), [anon_sym_true] = ACTIONS(1938), [anon_sym_false] = ACTIONS(1938), - [anon_sym_none] = ACTIONS(1938), + [anon_sym_null] = ACTIONS(1938), [anon_sym_undefined] = ACTIONS(1938), [sym_sink] = ACTIONS(1938), [sym_integer] = ACTIONS(1938), @@ -118782,7 +118782,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1720), [anon_sym_true] = ACTIONS(1722), [anon_sym_false] = ACTIONS(1722), - [anon_sym_none] = ACTIONS(1722), + [anon_sym_null] = ACTIONS(1722), [anon_sym_undefined] = ACTIONS(1722), [sym_sink] = ACTIONS(1722), [sym_integer] = ACTIONS(1722), @@ -118883,7 +118883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1658), [anon_sym_true] = ACTIONS(1660), [anon_sym_false] = ACTIONS(1660), - [anon_sym_none] = ACTIONS(1660), + [anon_sym_null] = ACTIONS(1660), [anon_sym_undefined] = ACTIONS(1660), [sym_sink] = ACTIONS(1660), [sym_integer] = ACTIONS(1660), @@ -118984,7 +118984,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2020), [anon_sym_true] = ACTIONS(2022), [anon_sym_false] = ACTIONS(2022), - [anon_sym_none] = ACTIONS(2022), + [anon_sym_null] = ACTIONS(2022), [anon_sym_undefined] = ACTIONS(2022), [sym_sink] = ACTIONS(2022), [sym_integer] = ACTIONS(2022), @@ -119085,7 +119085,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1940), [anon_sym_true] = ACTIONS(1942), [anon_sym_false] = ACTIONS(1942), - [anon_sym_none] = ACTIONS(1942), + [anon_sym_null] = ACTIONS(1942), [anon_sym_undefined] = ACTIONS(1942), [sym_sink] = ACTIONS(1942), [sym_integer] = ACTIONS(1942), @@ -119186,7 +119186,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1852), [anon_sym_true] = ACTIONS(1854), [anon_sym_false] = ACTIONS(1854), - [anon_sym_none] = ACTIONS(1854), + [anon_sym_null] = ACTIONS(1854), [anon_sym_undefined] = ACTIONS(1854), [sym_sink] = ACTIONS(1854), [sym_integer] = ACTIONS(1854), @@ -119388,7 +119388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1642), [anon_sym_true] = ACTIONS(1644), [anon_sym_false] = ACTIONS(1644), - [anon_sym_none] = ACTIONS(1644), + [anon_sym_null] = ACTIONS(1644), [anon_sym_undefined] = ACTIONS(1644), [sym_sink] = ACTIONS(1644), [sym_integer] = ACTIONS(1644), @@ -119489,7 +119489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2024), [anon_sym_true] = ACTIONS(2026), [anon_sym_false] = ACTIONS(2026), - [anon_sym_none] = ACTIONS(2026), + [anon_sym_null] = ACTIONS(2026), [anon_sym_undefined] = ACTIONS(2026), [sym_sink] = ACTIONS(2026), [sym_integer] = ACTIONS(2026), @@ -119590,7 +119590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1976), [anon_sym_true] = ACTIONS(1978), [anon_sym_false] = ACTIONS(1978), - [anon_sym_none] = ACTIONS(1978), + [anon_sym_null] = ACTIONS(1978), [anon_sym_undefined] = ACTIONS(1978), [sym_sink] = ACTIONS(1978), [sym_integer] = ACTIONS(1978), @@ -119691,7 +119691,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1716), [anon_sym_true] = ACTIONS(1718), [anon_sym_false] = ACTIONS(1718), - [anon_sym_none] = ACTIONS(1718), + [anon_sym_null] = ACTIONS(1718), [anon_sym_undefined] = ACTIONS(1718), [sym_sink] = ACTIONS(1718), [sym_integer] = ACTIONS(1718), @@ -119792,7 +119792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1728), [anon_sym_true] = ACTIONS(1730), [anon_sym_false] = ACTIONS(1730), - [anon_sym_none] = ACTIONS(1730), + [anon_sym_null] = ACTIONS(1730), [anon_sym_undefined] = ACTIONS(1730), [sym_sink] = ACTIONS(1730), [sym_integer] = ACTIONS(1730), @@ -119834,7 +119834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -119892,7 +119892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -119934,7 +119934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -119992,7 +119992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -120034,7 +120034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -120092,7 +120092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -120134,7 +120134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(986), @@ -120192,7 +120192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -120234,7 +120234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(942), @@ -120292,7 +120292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -120334,7 +120334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(989), @@ -120392,7 +120392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -120434,7 +120434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -120492,7 +120492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -120534,7 +120534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(909), @@ -120592,7 +120592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -120634,7 +120634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(991), @@ -120692,7 +120692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -120734,7 +120734,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(920), @@ -120792,7 +120792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -120834,7 +120834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(923), @@ -120892,7 +120892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -120934,7 +120934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -120992,7 +120992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -121034,7 +121034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(924), @@ -121092,7 +121092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -121134,7 +121134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(925), @@ -121192,7 +121192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -121234,7 +121234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -121292,7 +121292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -121334,7 +121334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -121392,7 +121392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -121434,7 +121434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -121492,7 +121492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -121534,7 +121534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -121592,7 +121592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -121634,7 +121634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -121692,7 +121692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -121734,7 +121734,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(910), @@ -121792,7 +121792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -121834,7 +121834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(941), @@ -121892,7 +121892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -121934,7 +121934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(934), @@ -121992,7 +121992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -122034,7 +122034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(937), @@ -122092,7 +122092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -122134,7 +122134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(911), @@ -122192,7 +122192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -122234,7 +122234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [sym_identifier] = ACTIONS(2178), @@ -122292,7 +122292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -122334,7 +122334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -122392,7 +122392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -122434,7 +122434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(939), @@ -122492,7 +122492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -122534,7 +122534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(940), @@ -122592,7 +122592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -122634,7 +122634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -122692,7 +122692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -122734,7 +122734,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -122792,7 +122792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -122834,7 +122834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -122892,7 +122892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -122934,7 +122934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -122992,7 +122992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -123034,7 +123034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -123092,7 +123092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -123134,7 +123134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -123192,7 +123192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -123234,7 +123234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -123292,7 +123292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -123334,7 +123334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -123392,7 +123392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -123534,7 +123534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [sym_identifier] = ACTIONS(2209), @@ -123592,7 +123592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -123634,7 +123634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(982), @@ -123692,7 +123692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -123734,7 +123734,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(994), @@ -123792,7 +123792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -123834,7 +123834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(951), @@ -123892,7 +123892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -123934,7 +123934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(996), @@ -123992,7 +123992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -124034,7 +124034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -124092,7 +124092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -124134,7 +124134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(956), @@ -124192,7 +124192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -124234,7 +124234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(957), @@ -124292,7 +124292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -124334,7 +124334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -124392,7 +124392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -124434,7 +124434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -124492,7 +124492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -124534,7 +124534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -124592,7 +124592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -124634,7 +124634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -124692,7 +124692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -124734,7 +124734,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -124792,7 +124792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -124834,7 +124834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -124892,7 +124892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -124934,7 +124934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -124992,7 +124992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -125034,7 +125034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(943), @@ -125092,7 +125092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -125134,7 +125134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [sym_identifier] = ACTIONS(2178), @@ -125193,7 +125193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -125234,7 +125234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -125292,7 +125292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -125334,7 +125334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(944), @@ -125392,7 +125392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -125434,7 +125434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(967), @@ -125492,7 +125492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -125534,7 +125534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(970), @@ -125592,7 +125592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -125634,7 +125634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -125692,7 +125692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -125734,7 +125734,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(979), @@ -125792,7 +125792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -125834,7 +125834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(980), @@ -125892,7 +125892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -125934,7 +125934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -125992,7 +125992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -126034,7 +126034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(973), @@ -126092,7 +126092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -126134,7 +126134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(976), @@ -126192,7 +126192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -126234,7 +126234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -126292,7 +126292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -126334,7 +126334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(977), @@ -126392,7 +126392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -126434,7 +126434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(978), @@ -126492,7 +126492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -126534,7 +126534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -126592,7 +126592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -126634,7 +126634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -126692,7 +126692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -126734,7 +126734,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -126792,7 +126792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -126834,7 +126834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -126892,7 +126892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -126934,7 +126934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -126992,7 +126992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -127034,7 +127034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(915), @@ -127092,7 +127092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -127134,7 +127134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -127192,7 +127192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -127234,7 +127234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(926), @@ -127292,7 +127292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -127334,7 +127334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(959), @@ -127392,7 +127392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -127434,7 +127434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(960), @@ -127492,7 +127492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -127534,7 +127534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -127592,7 +127592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -127634,7 +127634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(955), @@ -127692,7 +127692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -127734,7 +127734,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(958), @@ -127792,7 +127792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -127834,7 +127834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -127892,7 +127892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -127934,7 +127934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(963), @@ -127992,7 +127992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -128034,7 +128034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -128092,7 +128092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -128134,7 +128134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(954), @@ -128192,7 +128192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -128234,7 +128234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(927), @@ -128292,7 +128292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -128334,7 +128334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -128392,7 +128392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -128434,7 +128434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(938), @@ -128492,7 +128492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -128534,7 +128534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -128592,7 +128592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -128733,7 +128733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [sym_identifier] = ACTIONS(2209), @@ -128791,7 +128791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -128832,7 +128832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [sym_identifier] = ACTIONS(2209), @@ -128890,7 +128890,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -129030,7 +129030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [sym_identifier] = ACTIONS(2178), @@ -129088,7 +129088,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -129129,7 +129129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [sym_identifier] = ACTIONS(1540), @@ -129187,7 +129187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -129221,7 +129221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1643), @@ -129285,7 +129285,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -129327,7 +129327,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [sym_identifier] = ACTIONS(2178), @@ -129384,7 +129384,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -129426,7 +129426,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [sym_identifier] = ACTIONS(2178), @@ -129484,7 +129484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -129723,7 +129723,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [sym_identifier] = ACTIONS(1540), @@ -129781,7 +129781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -129822,7 +129822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [sym_identifier] = ACTIONS(2178), @@ -129880,7 +129880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -130112,7 +130112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1643), @@ -130176,7 +130176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -130218,7 +130218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [sym_identifier] = ACTIONS(2178), @@ -130276,7 +130276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -130317,7 +130317,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [sym_identifier] = ACTIONS(2178), @@ -130375,7 +130375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -130416,7 +130416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [sym_identifier] = ACTIONS(1540), @@ -130473,7 +130473,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -130514,7 +130514,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [sym_identifier] = ACTIONS(2178), @@ -130571,7 +130571,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -130612,7 +130612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [sym_identifier] = ACTIONS(1540), @@ -130669,7 +130669,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -130710,7 +130710,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [sym_identifier] = ACTIONS(2178), @@ -130767,7 +130767,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -130808,7 +130808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [sym_identifier] = ACTIONS(2178), @@ -130865,7 +130865,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -130906,7 +130906,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [sym_identifier] = ACTIONS(2178), @@ -130963,7 +130963,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -131004,7 +131004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [sym_identifier] = ACTIONS(2209), @@ -131061,7 +131061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -131102,7 +131102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [sym_identifier] = ACTIONS(2178), @@ -131159,7 +131159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -131200,7 +131200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [sym_identifier] = ACTIONS(2209), @@ -131257,7 +131257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -131354,7 +131354,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1406), [anon_sym_true] = ACTIONS(1408), [anon_sym_false] = ACTIONS(1408), - [anon_sym_none] = ACTIONS(1408), + [anon_sym_null] = ACTIONS(1408), [anon_sym_undefined] = ACTIONS(1408), [sym_sink] = ACTIONS(1408), [sym_integer] = ACTIONS(1408), @@ -131648,7 +131648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(478), [anon_sym_true] = ACTIONS(469), [anon_sym_false] = ACTIONS(469), - [anon_sym_none] = ACTIONS(469), + [anon_sym_null] = ACTIONS(469), [anon_sym_undefined] = ACTIONS(469), [sym_sink] = ACTIONS(469), [sym_integer] = ACTIONS(469), @@ -131746,7 +131746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(478), [anon_sym_true] = ACTIONS(469), [anon_sym_false] = ACTIONS(469), - [anon_sym_none] = ACTIONS(469), + [anon_sym_null] = ACTIONS(469), [anon_sym_undefined] = ACTIONS(469), [sym_sink] = ACTIONS(469), [sym_integer] = ACTIONS(469), @@ -131844,7 +131844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1362), [anon_sym_true] = ACTIONS(2136), [anon_sym_false] = ACTIONS(2136), - [anon_sym_none] = ACTIONS(2136), + [anon_sym_null] = ACTIONS(2136), [anon_sym_undefined] = ACTIONS(2136), [sym_sink] = ACTIONS(2136), [sym_integer] = ACTIONS(2136), @@ -131941,7 +131941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(1392), [anon_sym_false] = ACTIONS(1392), - [anon_sym_none] = ACTIONS(1392), + [anon_sym_null] = ACTIONS(1392), [anon_sym_undefined] = ACTIONS(1392), [sym_sink] = ACTIONS(1392), [sym_integer] = ACTIONS(1392), @@ -132038,7 +132038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(478), [anon_sym_true] = ACTIONS(469), [anon_sym_false] = ACTIONS(469), - [anon_sym_none] = ACTIONS(469), + [anon_sym_null] = ACTIONS(469), [anon_sym_undefined] = ACTIONS(469), [sym_sink] = ACTIONS(469), [sym_integer] = ACTIONS(469), @@ -132232,7 +132232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(1356), [anon_sym_false] = ACTIONS(1356), - [anon_sym_none] = ACTIONS(1356), + [anon_sym_null] = ACTIONS(1356), [anon_sym_undefined] = ACTIONS(1356), [sym_sink] = ACTIONS(1356), [sym_integer] = ACTIONS(1356), @@ -132329,7 +132329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(1404), [anon_sym_false] = ACTIONS(1404), - [anon_sym_none] = ACTIONS(1404), + [anon_sym_null] = ACTIONS(1404), [anon_sym_undefined] = ACTIONS(1404), [sym_sink] = ACTIONS(1404), [sym_integer] = ACTIONS(1404), @@ -132426,7 +132426,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(478), [anon_sym_true] = ACTIONS(469), [anon_sym_false] = ACTIONS(469), - [anon_sym_none] = ACTIONS(469), + [anon_sym_null] = ACTIONS(469), [anon_sym_undefined] = ACTIONS(469), [sym_sink] = ACTIONS(469), [sym_integer] = ACTIONS(469), @@ -132523,7 +132523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(1356), [anon_sym_false] = ACTIONS(1356), - [anon_sym_none] = ACTIONS(1356), + [anon_sym_null] = ACTIONS(1356), [anon_sym_undefined] = ACTIONS(1356), [sym_sink] = ACTIONS(1356), [sym_integer] = ACTIONS(1356), @@ -132717,7 +132717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(1404), [anon_sym_false] = ACTIONS(1404), - [anon_sym_none] = ACTIONS(1404), + [anon_sym_null] = ACTIONS(1404), [anon_sym_undefined] = ACTIONS(1404), [sym_sink] = ACTIONS(1404), [sym_integer] = ACTIONS(1404), @@ -132814,7 +132814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(1356), [anon_sym_false] = ACTIONS(1356), - [anon_sym_none] = ACTIONS(1356), + [anon_sym_null] = ACTIONS(1356), [anon_sym_undefined] = ACTIONS(1356), [sym_sink] = ACTIONS(1356), [sym_integer] = ACTIONS(1356), @@ -132911,7 +132911,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(1356), [anon_sym_false] = ACTIONS(1356), - [anon_sym_none] = ACTIONS(1356), + [anon_sym_null] = ACTIONS(1356), [anon_sym_undefined] = ACTIONS(1356), [sym_sink] = ACTIONS(1356), [sym_integer] = ACTIONS(1356), @@ -133105,7 +133105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(2380), [anon_sym_false] = ACTIONS(2380), - [anon_sym_none] = ACTIONS(2380), + [anon_sym_null] = ACTIONS(2380), [anon_sym_undefined] = ACTIONS(2380), [sym_sink] = ACTIONS(2380), [sym_integer] = ACTIONS(2380), @@ -133202,7 +133202,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(1388), [anon_sym_false] = ACTIONS(1388), - [anon_sym_none] = ACTIONS(1388), + [anon_sym_null] = ACTIONS(1388), [anon_sym_undefined] = ACTIONS(1388), [sym_sink] = ACTIONS(1388), [sym_integer] = ACTIONS(1388), @@ -133299,7 +133299,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(1356), [anon_sym_false] = ACTIONS(1356), - [anon_sym_none] = ACTIONS(1356), + [anon_sym_null] = ACTIONS(1356), [anon_sym_undefined] = ACTIONS(1356), [sym_sink] = ACTIONS(1356), [sym_integer] = ACTIONS(1356), @@ -133396,7 +133396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(1392), [anon_sym_false] = ACTIONS(1392), - [anon_sym_none] = ACTIONS(1392), + [anon_sym_null] = ACTIONS(1392), [anon_sym_undefined] = ACTIONS(1392), [sym_sink] = ACTIONS(1392), [sym_integer] = ACTIONS(1392), @@ -133493,7 +133493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(1392), [anon_sym_false] = ACTIONS(1392), - [anon_sym_none] = ACTIONS(1392), + [anon_sym_null] = ACTIONS(1392), [anon_sym_undefined] = ACTIONS(1392), [sym_sink] = ACTIONS(1392), [sym_integer] = ACTIONS(1392), @@ -133590,7 +133590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(1392), [anon_sym_false] = ACTIONS(1392), - [anon_sym_none] = ACTIONS(1392), + [anon_sym_null] = ACTIONS(1392), [anon_sym_undefined] = ACTIONS(1392), [sym_sink] = ACTIONS(1392), [sym_integer] = ACTIONS(1392), @@ -133687,7 +133687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(1392), [anon_sym_false] = ACTIONS(1392), - [anon_sym_none] = ACTIONS(1392), + [anon_sym_null] = ACTIONS(1392), [anon_sym_undefined] = ACTIONS(1392), [sym_sink] = ACTIONS(1392), [sym_integer] = ACTIONS(1392), @@ -133784,7 +133784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(1356), [anon_sym_false] = ACTIONS(1356), - [anon_sym_none] = ACTIONS(1356), + [anon_sym_null] = ACTIONS(1356), [anon_sym_undefined] = ACTIONS(1356), [sym_sink] = ACTIONS(1356), [sym_integer] = ACTIONS(1356), @@ -133881,7 +133881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(1388), [anon_sym_false] = ACTIONS(1388), - [anon_sym_none] = ACTIONS(1388), + [anon_sym_null] = ACTIONS(1388), [anon_sym_undefined] = ACTIONS(1388), [sym_sink] = ACTIONS(1388), [sym_integer] = ACTIONS(1388), @@ -133978,7 +133978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(35), [anon_sym_true] = ACTIONS(1392), [anon_sym_false] = ACTIONS(1392), - [anon_sym_none] = ACTIONS(1392), + [anon_sym_null] = ACTIONS(1392), [anon_sym_undefined] = ACTIONS(1392), [sym_sink] = ACTIONS(1392), [sym_integer] = ACTIONS(1392), @@ -135058,7 +135058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_match_statement_repeat1] = STATE(1063), @@ -135114,7 +135114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2478), [anon_sym_true] = ACTIONS(2481), [anon_sym_false] = ACTIONS(2481), - [anon_sym_none] = ACTIONS(2484), + [anon_sym_null] = ACTIONS(2484), [anon_sym_undefined] = ACTIONS(2487), [sym_sink] = ACTIONS(2490), [sym_integer] = ACTIONS(2490), @@ -135149,7 +135149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(2391), @@ -135206,7 +135206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2510), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2512), [sym_integer] = ACTIONS(552), @@ -135242,7 +135242,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_match_statement_repeat1] = STATE(1063), @@ -135298,7 +135298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -135334,7 +135334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_match_statement_repeat1] = STATE(1072), @@ -135390,7 +135390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -135426,7 +135426,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_match_statement_repeat1] = STATE(1073), @@ -135482,7 +135482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -135517,7 +135517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1069), @@ -135574,7 +135574,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2510), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2538), [sym_integer] = ACTIONS(552), @@ -135609,7 +135609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(2391), @@ -135666,7 +135666,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2510), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2512), [sym_integer] = ACTIONS(552), @@ -135701,7 +135701,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1071), @@ -135758,7 +135758,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2510), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2550), [sym_integer] = ACTIONS(552), @@ -135793,7 +135793,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(2393), @@ -135850,7 +135850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2510), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2560), [sym_integer] = ACTIONS(552), @@ -135886,7 +135886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_match_statement_repeat1] = STATE(1063), @@ -135942,7 +135942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -135978,7 +135978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_match_statement_repeat1] = STATE(1063), @@ -136034,7 +136034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -136070,7 +136070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_match_statement_repeat1] = STATE(1076), @@ -136126,7 +136126,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -136161,7 +136161,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1064), @@ -136218,7 +136218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2510), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2538), [sym_integer] = ACTIONS(552), @@ -136254,7 +136254,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_match_statement_repeat1] = STATE(1063), @@ -136310,7 +136310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -136346,7 +136346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_match_statement_repeat1] = STATE(1065), @@ -136402,7 +136402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -136437,7 +136437,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(2403), @@ -136493,7 +136493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2586), [sym_integer] = ACTIONS(552), @@ -136528,7 +136528,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(2403), @@ -136584,7 +136584,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2586), [sym_integer] = ACTIONS(552), @@ -136619,7 +136619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1082), @@ -136675,7 +136675,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2598), [sym_integer] = ACTIONS(552), @@ -136710,7 +136710,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1083), @@ -136766,7 +136766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2598), [sym_integer] = ACTIONS(552), @@ -136801,7 +136801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(2405), @@ -136857,7 +136857,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2612), [sym_integer] = ACTIONS(552), @@ -136892,7 +136892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(2405), @@ -136948,7 +136948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2612), [sym_integer] = ACTIONS(552), @@ -136983,7 +136983,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1606), @@ -137039,7 +137039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -137074,7 +137074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1078), @@ -137130,7 +137130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2626), [sym_integer] = ACTIONS(552), @@ -137165,7 +137165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1088), @@ -137221,7 +137221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2636), [sym_integer] = ACTIONS(552), @@ -137256,7 +137256,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(2405), @@ -137312,7 +137312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2612), [sym_integer] = ACTIONS(552), @@ -137347,7 +137347,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(2407), @@ -137403,7 +137403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2648), [sym_integer] = ACTIONS(552), @@ -137438,7 +137438,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1104), @@ -137494,7 +137494,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2658), [sym_integer] = ACTIONS(552), @@ -137529,7 +137529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1092), @@ -137585,7 +137585,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2538), [sym_integer] = ACTIONS(552), @@ -137620,7 +137620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1093), @@ -137676,7 +137676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2538), [sym_integer] = ACTIONS(552), @@ -137711,7 +137711,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(2406), @@ -137767,7 +137767,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2512), [sym_integer] = ACTIONS(552), @@ -137802,7 +137802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(2406), @@ -137858,7 +137858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2512), [sym_integer] = ACTIONS(552), @@ -137893,7 +137893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(2399), @@ -137949,7 +137949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2678), [sym_integer] = ACTIONS(552), @@ -137984,7 +137984,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1097), @@ -138040,7 +138040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2550), [sym_integer] = ACTIONS(552), @@ -138075,7 +138075,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(2407), @@ -138131,7 +138131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2648), [sym_integer] = ACTIONS(552), @@ -138166,7 +138166,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(2400), @@ -138222,7 +138222,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2560), [sym_integer] = ACTIONS(552), @@ -138257,7 +138257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1100), @@ -138313,7 +138313,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2550), [sym_integer] = ACTIONS(552), @@ -138348,7 +138348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1101), @@ -138404,7 +138404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2698), [sym_integer] = ACTIONS(552), @@ -138439,7 +138439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(2400), @@ -138495,7 +138495,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2560), [sym_integer] = ACTIONS(552), @@ -138530,7 +138530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(2394), @@ -138586,7 +138586,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2710), [sym_integer] = ACTIONS(552), @@ -138621,7 +138621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1103), @@ -138677,7 +138677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2698), [sym_integer] = ACTIONS(552), @@ -138712,7 +138712,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(2394), @@ -138768,7 +138768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2710), [sym_integer] = ACTIONS(552), @@ -138803,7 +138803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(2404), @@ -138859,7 +138859,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2726), [sym_integer] = ACTIONS(552), @@ -138894,7 +138894,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1087), @@ -138950,7 +138950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2598), [sym_integer] = ACTIONS(552), @@ -139041,7 +139041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2736), [anon_sym_true] = ACTIONS(2734), [anon_sym_false] = ACTIONS(2734), - [anon_sym_none] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2734), [anon_sym_undefined] = ACTIONS(2734), [sym_sink] = ACTIONS(2734), [sym_integer] = ACTIONS(2734), @@ -139076,7 +139076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1094), @@ -139132,7 +139132,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2747), [sym_integer] = ACTIONS(552), @@ -139167,7 +139167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1079), @@ -139223,7 +139223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2626), [sym_integer] = ACTIONS(552), @@ -139258,7 +139258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1111), @@ -139314,7 +139314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2761), [sym_integer] = ACTIONS(552), @@ -139349,7 +139349,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1112), @@ -139405,7 +139405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2538), [sym_integer] = ACTIONS(552), @@ -139440,7 +139440,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(2402), @@ -139496,7 +139496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2773), [sym_integer] = ACTIONS(552), @@ -139531,7 +139531,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(2406), @@ -139587,7 +139587,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2512), [sym_integer] = ACTIONS(552), @@ -139622,7 +139622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1096), @@ -139678,7 +139678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(2636), [sym_integer] = ACTIONS(552), @@ -139715,7 +139715,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1116), @@ -139768,7 +139768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -139805,7 +139805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -139858,7 +139858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(223), [sym_integer] = ACTIONS(223), @@ -139895,7 +139895,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -139948,7 +139948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -140075,7 +140075,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -140128,7 +140128,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(223), [sym_integer] = ACTIONS(223), @@ -140165,7 +140165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1130), @@ -140218,7 +140218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(223), [sym_integer] = ACTIONS(223), @@ -140255,7 +140255,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1131), @@ -140308,7 +140308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(223), [sym_integer] = ACTIONS(223), @@ -140345,7 +140345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -140398,7 +140398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -140488,7 +140488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2828), [anon_sym_true] = ACTIONS(2823), [anon_sym_false] = ACTIONS(2823), - [anon_sym_none] = ACTIONS(2823), + [anon_sym_null] = ACTIONS(2823), [anon_sym_undefined] = ACTIONS(2823), [sym_sink] = ACTIONS(2823), [sym_integer] = ACTIONS(2823), @@ -140525,7 +140525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1121), @@ -140578,7 +140578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -141065,7 +141065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1118), @@ -141118,7 +141118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(223), [sym_integer] = ACTIONS(223), @@ -141155,7 +141155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -141208,7 +141208,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(223), [sym_integer] = ACTIONS(223), @@ -141245,7 +141245,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -141298,7 +141298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(223), [sym_integer] = ACTIONS(223), @@ -141335,7 +141335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1115), @@ -141388,7 +141388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(223), [sym_integer] = ACTIONS(223), @@ -141423,7 +141423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -141477,7 +141477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -141512,7 +141512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1143), @@ -141566,7 +141566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -141601,7 +141601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1144), @@ -141655,7 +141655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -141690,7 +141690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -141744,7 +141744,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -141779,7 +141779,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -141833,7 +141833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -141868,7 +141868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1146), @@ -141922,7 +141922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -141957,7 +141957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -142011,7 +142011,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -142046,7 +142046,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -142100,7 +142100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -142135,7 +142135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1147), @@ -142189,7 +142189,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -142224,7 +142224,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -142278,7 +142278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -142313,7 +142313,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -142367,7 +142367,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -142402,7 +142402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -142456,7 +142456,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -142491,7 +142491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1148), @@ -142545,7 +142545,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -142580,7 +142580,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -142634,7 +142634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -142669,7 +142669,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -142723,7 +142723,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -142758,7 +142758,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -142812,7 +142812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -142848,7 +142848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1150), @@ -142901,7 +142901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -142937,7 +142937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -142990,7 +142990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -143025,7 +143025,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1554), @@ -143079,7 +143079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -143114,7 +143114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1405), @@ -143168,7 +143168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -143204,7 +143204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1157), @@ -143257,7 +143257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -143293,7 +143293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3769), [sym_qualified_identifier] = STATE(4502), [sym_boolean] = STATE(3769), - [sym_none] = STATE(3769), + [sym_null] = STATE(3769), [sym_undefined] = STATE(3769), [sym_string] = STATE(3769), [aux_sym_import_declaration_repeat1] = STATE(1207), @@ -143346,7 +143346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2953), [anon_sym_true] = ACTIONS(2955), [anon_sym_false] = ACTIONS(2955), - [anon_sym_none] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), [anon_sym_undefined] = ACTIONS(2959), [sym_sink] = ACTIONS(2961), [sym_integer] = ACTIONS(2961), @@ -143381,7 +143381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1160), @@ -143435,7 +143435,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -143470,7 +143470,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1406), @@ -143524,7 +143524,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -143560,7 +143560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -143613,7 +143613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -143702,7 +143702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2734), [anon_sym_true] = ACTIONS(2734), [anon_sym_false] = ACTIONS(2734), - [anon_sym_none] = ACTIONS(2734), + [anon_sym_null] = ACTIONS(2734), [anon_sym_undefined] = ACTIONS(2734), [sym_sink] = ACTIONS(2734), [sym_integer] = ACTIONS(2734), @@ -143737,7 +143737,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1579), @@ -143791,7 +143791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -143826,7 +143826,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -143880,7 +143880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -143915,7 +143915,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1166), @@ -143969,7 +143969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -144004,7 +144004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1169), @@ -144058,7 +144058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -144094,7 +144094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1172), @@ -144147,7 +144147,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3004), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -144182,7 +144182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(4827), @@ -144236,7 +144236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -144271,7 +144271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1175), @@ -144325,7 +144325,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -144360,7 +144360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -144414,7 +144414,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -144449,7 +144449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1178), @@ -144503,7 +144503,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -144538,7 +144538,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1179), @@ -144592,7 +144592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -144627,7 +144627,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -144681,7 +144681,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -144716,7 +144716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1182), @@ -144770,7 +144770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -144805,7 +144805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1183), @@ -144859,7 +144859,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -144895,7 +144895,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -144948,7 +144948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3004), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -144983,7 +144983,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1186), @@ -145037,7 +145037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -145072,7 +145072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(4948), @@ -145126,7 +145126,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -145161,7 +145161,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -145215,7 +145215,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -145250,7 +145250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1188), @@ -145304,7 +145304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -145339,7 +145339,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1189), @@ -145393,7 +145393,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -145428,7 +145428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -145482,7 +145482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -145517,7 +145517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -145571,7 +145571,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -145606,7 +145606,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1192), @@ -145660,7 +145660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -145695,7 +145695,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1193), @@ -145749,7 +145749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -145784,7 +145784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -145838,7 +145838,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -145873,7 +145873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -145927,7 +145927,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -145962,7 +145962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1195), @@ -146016,7 +146016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -146051,7 +146051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1196), @@ -146105,7 +146105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -146140,7 +146140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -146194,7 +146194,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -146229,7 +146229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1198), @@ -146283,7 +146283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -146318,7 +146318,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -146372,7 +146372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -146407,7 +146407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -146461,7 +146461,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -146496,7 +146496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1199), @@ -146550,7 +146550,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -146585,7 +146585,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1200), @@ -146639,7 +146639,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -146674,7 +146674,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -146728,7 +146728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -146763,7 +146763,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -146817,7 +146817,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -146852,7 +146852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1202), @@ -146906,7 +146906,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -146941,7 +146941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -146995,7 +146995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -147030,7 +147030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -147084,7 +147084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -147119,7 +147119,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1203), @@ -147173,7 +147173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -147208,7 +147208,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -147262,7 +147262,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -147297,7 +147297,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -147351,7 +147351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -147386,7 +147386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -147440,7 +147440,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -147475,7 +147475,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1204), @@ -147529,7 +147529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -147564,7 +147564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -147618,7 +147618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -147653,7 +147653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -147707,7 +147707,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -147742,7 +147742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -147796,7 +147796,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -147832,7 +147832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1218), @@ -147885,7 +147885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(223), [sym_integer] = ACTIONS(223), @@ -147920,7 +147920,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1604), @@ -147974,7 +147974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3004), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -148010,7 +148010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3769), [sym_qualified_identifier] = STATE(4502), [sym_boolean] = STATE(3769), - [sym_none] = STATE(3769), + [sym_null] = STATE(3769), [sym_undefined] = STATE(3769), [sym_string] = STATE(3769), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -148063,7 +148063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2953), [anon_sym_true] = ACTIONS(2955), [anon_sym_false] = ACTIONS(2955), - [anon_sym_none] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), [anon_sym_undefined] = ACTIONS(2959), [sym_sink] = ACTIONS(2961), [sym_integer] = ACTIONS(2961), @@ -148098,7 +148098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1212), @@ -148152,7 +148152,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -148187,7 +148187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3769), [sym_qualified_identifier] = STATE(4502), [sym_boolean] = STATE(3769), - [sym_none] = STATE(3769), + [sym_null] = STATE(3769), [sym_undefined] = STATE(3769), [sym_string] = STATE(3769), [aux_sym_import_declaration_repeat1] = STATE(1533), @@ -148241,7 +148241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2953), [anon_sym_true] = ACTIONS(2955), [anon_sym_false] = ACTIONS(2955), - [anon_sym_none] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), [anon_sym_undefined] = ACTIONS(2959), [sym_sink] = ACTIONS(2961), [sym_integer] = ACTIONS(2961), @@ -148277,7 +148277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1216), @@ -148330,7 +148330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -148365,7 +148365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -148419,7 +148419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -148454,7 +148454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -148508,7 +148508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -148543,7 +148543,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1220), @@ -148597,7 +148597,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -148632,7 +148632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1223), @@ -148686,7 +148686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -148721,7 +148721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -148775,7 +148775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -148811,7 +148811,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -148864,7 +148864,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -148899,7 +148899,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(4868), @@ -148953,7 +148953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -148989,7 +148989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -149042,7 +149042,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(223), [sym_integer] = ACTIONS(223), @@ -149077,7 +149077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1228), @@ -149131,7 +149131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -149166,7 +149166,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -149220,7 +149220,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -149255,7 +149255,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1231), @@ -149309,7 +149309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -149344,7 +149344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1232), @@ -149398,7 +149398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -149433,7 +149433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -149487,7 +149487,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -149522,7 +149522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1235), @@ -149576,7 +149576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -149611,7 +149611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1236), @@ -149665,7 +149665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -149700,7 +149700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1239), @@ -149754,7 +149754,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -149789,7 +149789,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(4917), @@ -149843,7 +149843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -149878,7 +149878,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -149932,7 +149932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -149967,7 +149967,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1242), @@ -150021,7 +150021,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -150056,7 +150056,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1243), @@ -150110,7 +150110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -150145,7 +150145,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -150199,7 +150199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -150234,7 +150234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -150288,7 +150288,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -150323,7 +150323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1246), @@ -150377,7 +150377,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -150412,7 +150412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1247), @@ -150466,7 +150466,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -150501,7 +150501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -150555,7 +150555,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -150590,7 +150590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -150644,7 +150644,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -150679,7 +150679,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1249), @@ -150733,7 +150733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -150768,7 +150768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1250), @@ -150822,7 +150822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -150857,7 +150857,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -150911,7 +150911,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -150946,7 +150946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1252), @@ -151000,7 +151000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -151035,7 +151035,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1646), @@ -151089,7 +151089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -151124,7 +151124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -151178,7 +151178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -151213,7 +151213,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -151267,7 +151267,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -151302,7 +151302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1255), @@ -151356,7 +151356,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -151391,7 +151391,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1256), @@ -151445,7 +151445,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -151480,7 +151480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -151534,7 +151534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -151569,7 +151569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -151623,7 +151623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -151658,7 +151658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1258), @@ -151712,7 +151712,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -151747,7 +151747,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -151801,7 +151801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -151836,7 +151836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -151890,7 +151890,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -151925,7 +151925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1259), @@ -151979,7 +151979,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -152014,7 +152014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -152068,7 +152068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -152103,7 +152103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -152157,7 +152157,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -152192,7 +152192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1444), @@ -152246,7 +152246,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -152281,7 +152281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -152335,7 +152335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -152370,7 +152370,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -152424,7 +152424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -152459,7 +152459,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1261), @@ -152513,7 +152513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -152548,7 +152548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -152602,7 +152602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -152637,7 +152637,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -152691,7 +152691,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -152726,7 +152726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1448), @@ -152780,7 +152780,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -152815,7 +152815,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -152869,7 +152869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -152905,7 +152905,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(2383), [sym_qualified_identifier] = STATE(4295), [sym_boolean] = STATE(2383), - [sym_none] = STATE(2383), + [sym_null] = STATE(2383), [sym_undefined] = STATE(2383), [sym_string] = STATE(2383), [aux_sym_import_declaration_repeat1] = STATE(1267), @@ -152958,7 +152958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3226), [anon_sym_true] = ACTIONS(3228), [anon_sym_false] = ACTIONS(3228), - [anon_sym_none] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3230), [anon_sym_undefined] = ACTIONS(3232), [sym_sink] = ACTIONS(3234), [sym_integer] = ACTIONS(3234), @@ -152993,7 +152993,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1658), @@ -153047,7 +153047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(223), [sym_integer] = ACTIONS(223), @@ -153082,7 +153082,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1437), @@ -153136,7 +153136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -153171,7 +153171,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1268), @@ -153225,7 +153225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -153260,7 +153260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(5011), @@ -153314,7 +153314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -153350,7 +153350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(2383), [sym_qualified_identifier] = STATE(4295), [sym_boolean] = STATE(2383), - [sym_none] = STATE(2383), + [sym_null] = STATE(2383), [sym_undefined] = STATE(2383), [sym_string] = STATE(2383), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -153403,7 +153403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3226), [anon_sym_true] = ACTIONS(3228), [anon_sym_false] = ACTIONS(3228), - [anon_sym_none] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3230), [anon_sym_undefined] = ACTIONS(3232), [sym_sink] = ACTIONS(3234), [sym_integer] = ACTIONS(3234), @@ -153438,7 +153438,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -153492,7 +153492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -153527,7 +153527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1274), @@ -153581,7 +153581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -153616,7 +153616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1277), @@ -153670,7 +153670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -153705,7 +153705,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(2383), [sym_qualified_identifier] = STATE(4295), [sym_boolean] = STATE(2383), - [sym_none] = STATE(2383), + [sym_null] = STATE(2383), [sym_undefined] = STATE(2383), [sym_string] = STATE(2383), [aux_sym_import_declaration_repeat1] = STATE(1733), @@ -153759,7 +153759,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3226), [anon_sym_true] = ACTIONS(3228), [anon_sym_false] = ACTIONS(3228), - [anon_sym_none] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3230), [anon_sym_undefined] = ACTIONS(3232), [sym_sink] = ACTIONS(3234), [sym_integer] = ACTIONS(3234), @@ -153794,7 +153794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(4779), @@ -153848,7 +153848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -153883,7 +153883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1283), @@ -153937,7 +153937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -153972,7 +153972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -154026,7 +154026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -154061,7 +154061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1286), @@ -154115,7 +154115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -154150,7 +154150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1287), @@ -154204,7 +154204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -154239,7 +154239,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -154293,7 +154293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -154328,7 +154328,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1290), @@ -154382,7 +154382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -154417,7 +154417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1291), @@ -154471,7 +154471,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -154506,7 +154506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1294), @@ -154560,7 +154560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -154595,7 +154595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(5016), @@ -154649,7 +154649,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -154684,7 +154684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1413), @@ -154738,7 +154738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -154773,7 +154773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -154827,7 +154827,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -154862,7 +154862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1297), @@ -154916,7 +154916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -154951,7 +154951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1298), @@ -155005,7 +155005,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -155040,7 +155040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -155094,7 +155094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -155129,7 +155129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -155183,7 +155183,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -155218,7 +155218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1301), @@ -155272,7 +155272,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -155307,7 +155307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1302), @@ -155361,7 +155361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -155396,7 +155396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -155450,7 +155450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -155485,7 +155485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -155539,7 +155539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -155574,7 +155574,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1304), @@ -155628,7 +155628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -155663,7 +155663,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1305), @@ -155717,7 +155717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -155752,7 +155752,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -155806,7 +155806,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -155841,7 +155841,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1307), @@ -155895,7 +155895,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -155931,7 +155931,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1318), @@ -155984,7 +155984,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -156019,7 +156019,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -156073,7 +156073,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -156108,7 +156108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -156162,7 +156162,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -156197,7 +156197,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1308), @@ -156251,7 +156251,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -156286,7 +156286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1309), @@ -156340,7 +156340,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -156375,7 +156375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -156429,7 +156429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -156464,7 +156464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -156518,7 +156518,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -156553,7 +156553,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1311), @@ -156607,7 +156607,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -156642,7 +156642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -156696,7 +156696,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -156731,7 +156731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -156785,7 +156785,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -156820,7 +156820,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1312), @@ -156874,7 +156874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -156909,7 +156909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -156963,7 +156963,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -156998,7 +156998,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -157052,7 +157052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -157087,7 +157087,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -157141,7 +157141,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -157176,7 +157176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1133), @@ -157230,7 +157230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -157265,7 +157265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -157319,7 +157319,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -157354,7 +157354,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -157408,7 +157408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -157443,7 +157443,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1758), @@ -157497,7 +157497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -157621,7 +157621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1366), @@ -157675,7 +157675,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -157710,7 +157710,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1319), @@ -157764,7 +157764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -157799,7 +157799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1414), @@ -157853,7 +157853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -157889,7 +157889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -157942,7 +157942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -157977,7 +157977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -158031,7 +158031,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -158066,7 +158066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1484), @@ -158120,7 +158120,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -158155,7 +158155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1328), @@ -158209,7 +158209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -158244,7 +158244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1491), @@ -158298,7 +158298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -158333,7 +158333,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(4775), @@ -158387,7 +158387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -158422,7 +158422,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1333), @@ -158476,7 +158476,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -158511,7 +158511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -158565,7 +158565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -158600,7 +158600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1336), @@ -158654,7 +158654,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -158689,7 +158689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1337), @@ -158743,7 +158743,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -158778,7 +158778,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -158832,7 +158832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -158867,7 +158867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1340), @@ -158921,7 +158921,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -158956,7 +158956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1341), @@ -159010,7 +159010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -159045,7 +159045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1344), @@ -159099,7 +159099,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -159134,7 +159134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(4831), @@ -159188,7 +159188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -159223,7 +159223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -159277,7 +159277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -159312,7 +159312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1348), @@ -159366,7 +159366,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -159401,7 +159401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1349), @@ -159455,7 +159455,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -159490,7 +159490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -159544,7 +159544,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -159579,7 +159579,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -159633,7 +159633,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -159668,7 +159668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1352), @@ -159722,7 +159722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -159757,7 +159757,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1353), @@ -159811,7 +159811,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -159846,7 +159846,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -159900,7 +159900,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -159935,7 +159935,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -159989,7 +159989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -160024,7 +160024,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1355), @@ -160078,7 +160078,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -160113,7 +160113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1356), @@ -160167,7 +160167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -160202,7 +160202,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -160256,7 +160256,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -160291,7 +160291,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1358), @@ -160345,7 +160345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -160380,7 +160380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1764), @@ -160434,7 +160434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -160558,7 +160558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -160612,7 +160612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -160647,7 +160647,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -160701,7 +160701,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -160736,7 +160736,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1360), @@ -160790,7 +160790,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -160825,7 +160825,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1361), @@ -160879,7 +160879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -160914,7 +160914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -160968,7 +160968,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -161003,7 +161003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -161057,7 +161057,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -161092,7 +161092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1363), @@ -161146,7 +161146,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -161181,7 +161181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -161235,7 +161235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -161270,7 +161270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -161324,7 +161324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -161359,7 +161359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1364), @@ -161413,7 +161413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -161448,7 +161448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -161502,7 +161502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -161537,7 +161537,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1513), @@ -161591,7 +161591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -161626,7 +161626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -161680,7 +161680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -161715,7 +161715,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -161769,7 +161769,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -161804,7 +161804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1365), @@ -161858,7 +161858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -161893,7 +161893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -161947,7 +161947,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -161982,7 +161982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -162036,7 +162036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -162071,7 +162071,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -162125,7 +162125,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -162160,7 +162160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -162214,7 +162214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -162249,7 +162249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1387), @@ -162303,7 +162303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -162338,7 +162338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1371), @@ -162392,7 +162392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -162427,7 +162427,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1404), @@ -162481,7 +162481,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -162516,7 +162516,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -162570,7 +162570,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -162605,7 +162605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -162659,7 +162659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -162694,7 +162694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1373), @@ -162748,7 +162748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -162783,7 +162783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -162837,7 +162837,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -162872,7 +162872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1376), @@ -162926,7 +162926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -162961,7 +162961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1377), @@ -163015,7 +163015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -163050,7 +163050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -163104,7 +163104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -163139,7 +163139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -163193,7 +163193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -163228,7 +163228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1380), @@ -163282,7 +163282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -163317,7 +163317,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1381), @@ -163371,7 +163371,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -163406,7 +163406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -163460,7 +163460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -163495,7 +163495,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -163549,7 +163549,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -163584,7 +163584,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1383), @@ -163638,7 +163638,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -163673,7 +163673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -163727,7 +163727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -163762,7 +163762,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(4844), @@ -163816,7 +163816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -163851,7 +163851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1427), @@ -163905,7 +163905,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -163940,7 +163940,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1389), @@ -163994,7 +163994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -164029,7 +164029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -164083,7 +164083,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -164118,7 +164118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1432), @@ -164172,7 +164172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -164207,7 +164207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -164261,7 +164261,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -164296,7 +164296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1391), @@ -164350,7 +164350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -164385,7 +164385,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -164439,7 +164439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -164474,7 +164474,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1394), @@ -164528,7 +164528,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -164563,7 +164563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1395), @@ -164617,7 +164617,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -164652,7 +164652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -164706,7 +164706,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -164741,7 +164741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -164795,7 +164795,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -164830,7 +164830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1398), @@ -164884,7 +164884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -164919,7 +164919,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1399), @@ -164973,7 +164973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -165008,7 +165008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -165062,7 +165062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -165097,7 +165097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -165151,7 +165151,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -165186,7 +165186,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1401), @@ -165240,7 +165240,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -165275,7 +165275,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -165329,7 +165329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -165364,7 +165364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1434), @@ -165418,7 +165418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -165453,7 +165453,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3769), [sym_qualified_identifier] = STATE(4502), [sym_boolean] = STATE(3769), - [sym_none] = STATE(3769), + [sym_null] = STATE(3769), [sym_undefined] = STATE(3769), [sym_string] = STATE(3769), [aux_sym_import_declaration_repeat1] = STATE(1766), @@ -165507,7 +165507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2953), [anon_sym_true] = ACTIONS(2955), [anon_sym_false] = ACTIONS(2955), - [anon_sym_none] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), [anon_sym_undefined] = ACTIONS(2959), [sym_sink] = ACTIONS(2961), [sym_integer] = ACTIONS(2961), @@ -165542,7 +165542,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -165596,7 +165596,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -165631,7 +165631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -165685,7 +165685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -165720,7 +165720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -165774,7 +165774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -165809,7 +165809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1411), @@ -165863,7 +165863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2510), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -165898,7 +165898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1443), @@ -165952,7 +165952,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -165987,7 +165987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1456), @@ -166041,7 +166041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -166076,7 +166076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1767), @@ -166130,7 +166130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3004), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -166165,7 +166165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(2392), @@ -166219,7 +166219,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2510), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -166254,7 +166254,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1458), @@ -166308,7 +166308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -166343,7 +166343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -166397,7 +166397,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -166432,7 +166432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -166486,7 +166486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -166521,7 +166521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1461), @@ -166575,7 +166575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -166699,7 +166699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1468), @@ -166753,7 +166753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -166788,7 +166788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1670), @@ -166842,7 +166842,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -166877,7 +166877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1215), @@ -166931,7 +166931,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -166967,7 +166967,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1455), @@ -167020,7 +167020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -167055,7 +167055,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1453), @@ -167109,7 +167109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -167144,7 +167144,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1325), @@ -167198,7 +167198,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -167233,7 +167233,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -167287,7 +167287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -167322,7 +167322,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1472), @@ -167376,7 +167376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -167412,7 +167412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1430), @@ -167465,7 +167465,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -167500,7 +167500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(4772), @@ -167554,7 +167554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -167589,7 +167589,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -167643,7 +167643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -167678,7 +167678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1474), @@ -167732,7 +167732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -167767,7 +167767,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1475), @@ -167821,7 +167821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -167857,7 +167857,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -167910,7 +167910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -167945,7 +167945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1643), @@ -167999,7 +167999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(3606), [sym_integer] = ACTIONS(552), @@ -168034,7 +168034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -168088,7 +168088,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -168123,7 +168123,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1729), @@ -168177,7 +168177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -168212,7 +168212,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -168266,7 +168266,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -168301,7 +168301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1136), @@ -168355,7 +168355,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -168390,7 +168390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1137), @@ -168444,7 +168444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -168479,7 +168479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -168533,7 +168533,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -168568,7 +168568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1211), @@ -168622,7 +168622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -168746,7 +168746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1476), @@ -168800,7 +168800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -168924,7 +168924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1370), @@ -168978,7 +168978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -169013,7 +169013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -169067,7 +169067,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -169102,7 +169102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -169156,7 +169156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -169192,7 +169192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1446), @@ -169245,7 +169245,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -169281,7 +169281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -169334,7 +169334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -169369,7 +169369,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1710), @@ -169423,7 +169423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -169458,7 +169458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -169512,7 +169512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -169547,7 +169547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1478), @@ -169601,7 +169601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -169636,7 +169636,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1479), @@ -169690,7 +169690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -169725,7 +169725,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1452), @@ -169779,7 +169779,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2510), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -169814,7 +169814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(2392), @@ -169868,7 +169868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2510), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -169903,7 +169903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -169957,7 +169957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -169992,7 +169992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1139), @@ -170046,7 +170046,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -170082,7 +170082,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -170135,7 +170135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -170170,7 +170170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -170224,7 +170224,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -170348,7 +170348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -170402,7 +170402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -170437,7 +170437,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1482), @@ -170491,7 +170491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -170526,7 +170526,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1140), @@ -170580,7 +170580,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -170615,7 +170615,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -170669,7 +170669,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -170704,7 +170704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1463), @@ -170758,7 +170758,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2510), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -170793,7 +170793,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(2392), @@ -170847,7 +170847,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2510), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -170882,7 +170882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1465), @@ -170936,7 +170936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2510), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -170971,7 +170971,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(2392), @@ -171025,7 +171025,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2510), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -171060,7 +171060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1467), @@ -171114,7 +171114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2510), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -171149,7 +171149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(2392), @@ -171203,7 +171203,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2510), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -171238,7 +171238,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -171292,7 +171292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -171327,7 +171327,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1483), @@ -171381,7 +171381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -171416,7 +171416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(4771), @@ -171470,7 +171470,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -171505,7 +171505,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(2392), @@ -171559,7 +171559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2510), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -171594,7 +171594,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -171648,7 +171648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -171683,7 +171683,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1142), @@ -171737,7 +171737,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -171772,7 +171772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -171826,7 +171826,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -171861,7 +171861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -171915,7 +171915,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -171950,7 +171950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -172004,7 +172004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -172039,7 +172039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1253), @@ -172093,7 +172093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -172128,7 +172128,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -172182,7 +172182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -172217,7 +172217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -172271,7 +172271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -172306,7 +172306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1423), @@ -172360,7 +172360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -172395,7 +172395,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1471), @@ -172449,7 +172449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2510), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -172484,7 +172484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -172538,7 +172538,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -172573,7 +172573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -172627,7 +172627,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -172662,7 +172662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -172716,7 +172716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -172751,7 +172751,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1606), @@ -172804,7 +172804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -172839,7 +172839,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1758), @@ -172892,7 +172892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -172927,7 +172927,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1490), @@ -172980,7 +172980,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -173015,7 +173015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1491), @@ -173068,7 +173068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -173103,7 +173103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3769), [sym_qualified_identifier] = STATE(4502), [sym_boolean] = STATE(3769), - [sym_none] = STATE(3769), + [sym_null] = STATE(3769), [sym_undefined] = STATE(3769), [sym_string] = STATE(3769), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -173156,7 +173156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2953), [anon_sym_true] = ACTIONS(2955), [anon_sym_false] = ACTIONS(2955), - [anon_sym_none] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), [anon_sym_undefined] = ACTIONS(2959), [sym_sink] = ACTIONS(2961), [sym_integer] = ACTIONS(2961), @@ -173191,7 +173191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -173244,7 +173244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -173279,7 +173279,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -173332,7 +173332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -173367,7 +173367,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1508), @@ -173420,7 +173420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -173455,7 +173455,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1509), @@ -173508,7 +173508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -173543,7 +173543,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1510), @@ -173596,7 +173596,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -173631,7 +173631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1512), @@ -173684,7 +173684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -173719,7 +173719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1513), @@ -173772,7 +173772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -173807,7 +173807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1514), @@ -173860,7 +173860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -173895,7 +173895,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1515), @@ -173948,7 +173948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -173983,7 +173983,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1516), @@ -174036,7 +174036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -174071,7 +174071,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1517), @@ -174124,7 +174124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -174159,7 +174159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1760), @@ -174212,7 +174212,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -174247,7 +174247,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3769), [sym_qualified_identifier] = STATE(4502), [sym_boolean] = STATE(3769), - [sym_none] = STATE(3769), + [sym_null] = STATE(3769), [sym_undefined] = STATE(3769), [sym_string] = STATE(3769), [aux_sym_import_declaration_repeat1] = STATE(1529), @@ -174300,7 +174300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2953), [anon_sym_true] = ACTIONS(2955), [anon_sym_false] = ACTIONS(2955), - [anon_sym_none] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), [anon_sym_undefined] = ACTIONS(2959), [sym_sink] = ACTIONS(2961), [sym_integer] = ACTIONS(2961), @@ -174335,7 +174335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3769), [sym_qualified_identifier] = STATE(4502), [sym_boolean] = STATE(3769), - [sym_none] = STATE(3769), + [sym_null] = STATE(3769), [sym_undefined] = STATE(3769), [sym_string] = STATE(3769), [aux_sym_import_declaration_repeat1] = STATE(1530), @@ -174388,7 +174388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2953), [anon_sym_true] = ACTIONS(2955), [anon_sym_false] = ACTIONS(2955), - [anon_sym_none] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), [anon_sym_undefined] = ACTIONS(2959), [sym_sink] = ACTIONS(2961), [sym_integer] = ACTIONS(2961), @@ -174423,7 +174423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3769), [sym_qualified_identifier] = STATE(4502), [sym_boolean] = STATE(3769), - [sym_none] = STATE(3769), + [sym_null] = STATE(3769), [sym_undefined] = STATE(3769), [sym_string] = STATE(3769), [aux_sym_import_declaration_repeat1] = STATE(1531), @@ -174476,7 +174476,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2953), [anon_sym_true] = ACTIONS(2955), [anon_sym_false] = ACTIONS(2955), - [anon_sym_none] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), [anon_sym_undefined] = ACTIONS(2959), [sym_sink] = ACTIONS(2961), [sym_integer] = ACTIONS(2961), @@ -174511,7 +174511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1523), @@ -174564,7 +174564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -174599,7 +174599,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3769), [sym_qualified_identifier] = STATE(4502), [sym_boolean] = STATE(3769), - [sym_none] = STATE(3769), + [sym_null] = STATE(3769), [sym_undefined] = STATE(3769), [sym_string] = STATE(3769), [aux_sym_import_declaration_repeat1] = STATE(1532), @@ -174652,7 +174652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2953), [anon_sym_true] = ACTIONS(2955), [anon_sym_false] = ACTIONS(2955), - [anon_sym_none] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), [anon_sym_undefined] = ACTIONS(2959), [sym_sink] = ACTIONS(2961), [sym_integer] = ACTIONS(2961), @@ -174687,7 +174687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1525), @@ -174740,7 +174740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -174775,7 +174775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -174828,7 +174828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -174863,7 +174863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -174916,7 +174916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -174951,7 +174951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -175004,7 +175004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -175039,7 +175039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3769), [sym_qualified_identifier] = STATE(4502), [sym_boolean] = STATE(3769), - [sym_none] = STATE(3769), + [sym_null] = STATE(3769), [sym_undefined] = STATE(3769), [sym_string] = STATE(3769), [aux_sym_import_declaration_repeat1] = STATE(1533), @@ -175092,7 +175092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2953), [anon_sym_true] = ACTIONS(2955), [anon_sym_false] = ACTIONS(2955), - [anon_sym_none] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), [anon_sym_undefined] = ACTIONS(2959), [sym_sink] = ACTIONS(2961), [sym_integer] = ACTIONS(2961), @@ -175127,7 +175127,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -175180,7 +175180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -175215,7 +175215,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -175268,7 +175268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -175303,7 +175303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -175356,7 +175356,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -175391,7 +175391,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -175444,7 +175444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -175479,7 +175479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -175532,7 +175532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -175567,7 +175567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -175620,7 +175620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -175655,7 +175655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3769), [sym_qualified_identifier] = STATE(4502), [sym_boolean] = STATE(3769), - [sym_none] = STATE(3769), + [sym_null] = STATE(3769), [sym_undefined] = STATE(3769), [sym_string] = STATE(3769), [aux_sym_import_declaration_repeat1] = STATE(1534), @@ -175708,7 +175708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2953), [anon_sym_true] = ACTIONS(2955), [anon_sym_false] = ACTIONS(2955), - [anon_sym_none] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), [anon_sym_undefined] = ACTIONS(2959), [sym_sink] = ACTIONS(2961), [sym_integer] = ACTIONS(2961), @@ -175743,7 +175743,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3769), [sym_qualified_identifier] = STATE(4502), [sym_boolean] = STATE(3769), - [sym_none] = STATE(3769), + [sym_null] = STATE(3769), [sym_undefined] = STATE(3769), [sym_string] = STATE(3769), [aux_sym_import_declaration_repeat1] = STATE(1535), @@ -175796,7 +175796,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2953), [anon_sym_true] = ACTIONS(2955), [anon_sym_false] = ACTIONS(2955), - [anon_sym_none] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), [anon_sym_undefined] = ACTIONS(2959), [sym_sink] = ACTIONS(2961), [sym_integer] = ACTIONS(2961), @@ -175831,7 +175831,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3769), [sym_qualified_identifier] = STATE(4502), [sym_boolean] = STATE(3769), - [sym_none] = STATE(3769), + [sym_null] = STATE(3769), [sym_undefined] = STATE(3769), [sym_string] = STATE(3769), [aux_sym_import_declaration_repeat1] = STATE(1536), @@ -175884,7 +175884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2953), [anon_sym_true] = ACTIONS(2955), [anon_sym_false] = ACTIONS(2955), - [anon_sym_none] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), [anon_sym_undefined] = ACTIONS(2959), [sym_sink] = ACTIONS(2961), [sym_integer] = ACTIONS(2961), @@ -175919,7 +175919,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3769), [sym_qualified_identifier] = STATE(4502), [sym_boolean] = STATE(3769), - [sym_none] = STATE(3769), + [sym_null] = STATE(3769), [sym_undefined] = STATE(3769), [sym_string] = STATE(3769), [aux_sym_import_declaration_repeat1] = STATE(1537), @@ -175972,7 +175972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2953), [anon_sym_true] = ACTIONS(2955), [anon_sym_false] = ACTIONS(2955), - [anon_sym_none] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), [anon_sym_undefined] = ACTIONS(2959), [sym_sink] = ACTIONS(2961), [sym_integer] = ACTIONS(2961), @@ -176007,7 +176007,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -176060,7 +176060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -176095,7 +176095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -176148,7 +176148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -176183,7 +176183,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -176236,7 +176236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -176271,7 +176271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -176324,7 +176324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -176359,7 +176359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1761), @@ -176412,7 +176412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -176447,7 +176447,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -176500,7 +176500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -176535,7 +176535,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -176588,7 +176588,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -176623,7 +176623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3769), [sym_qualified_identifier] = STATE(4502), [sym_boolean] = STATE(3769), - [sym_none] = STATE(3769), + [sym_null] = STATE(3769), [sym_undefined] = STATE(3769), [sym_string] = STATE(3769), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -176676,7 +176676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2953), [anon_sym_true] = ACTIONS(2955), [anon_sym_false] = ACTIONS(2955), - [anon_sym_none] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), [anon_sym_undefined] = ACTIONS(2959), [sym_sink] = ACTIONS(2961), [sym_integer] = ACTIONS(2961), @@ -176711,7 +176711,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3769), [sym_qualified_identifier] = STATE(4502), [sym_boolean] = STATE(3769), - [sym_none] = STATE(3769), + [sym_null] = STATE(3769), [sym_undefined] = STATE(3769), [sym_string] = STATE(3769), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -176764,7 +176764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2953), [anon_sym_true] = ACTIONS(2955), [anon_sym_false] = ACTIONS(2955), - [anon_sym_none] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), [anon_sym_undefined] = ACTIONS(2959), [sym_sink] = ACTIONS(2961), [sym_integer] = ACTIONS(2961), @@ -176799,7 +176799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3769), [sym_qualified_identifier] = STATE(4502), [sym_boolean] = STATE(3769), - [sym_none] = STATE(3769), + [sym_null] = STATE(3769), [sym_undefined] = STATE(3769), [sym_string] = STATE(3769), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -176852,7 +176852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2953), [anon_sym_true] = ACTIONS(2955), [anon_sym_false] = ACTIONS(2955), - [anon_sym_none] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), [anon_sym_undefined] = ACTIONS(2959), [sym_sink] = ACTIONS(2961), [sym_integer] = ACTIONS(2961), @@ -176887,7 +176887,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3769), [sym_qualified_identifier] = STATE(4502), [sym_boolean] = STATE(3769), - [sym_none] = STATE(3769), + [sym_null] = STATE(3769), [sym_undefined] = STATE(3769), [sym_string] = STATE(3769), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -176940,7 +176940,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2953), [anon_sym_true] = ACTIONS(2955), [anon_sym_false] = ACTIONS(2955), - [anon_sym_none] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), [anon_sym_undefined] = ACTIONS(2959), [sym_sink] = ACTIONS(2961), [sym_integer] = ACTIONS(2961), @@ -176975,7 +176975,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3769), [sym_qualified_identifier] = STATE(4502), [sym_boolean] = STATE(3769), - [sym_none] = STATE(3769), + [sym_null] = STATE(3769), [sym_undefined] = STATE(3769), [sym_string] = STATE(3769), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -177028,7 +177028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2953), [anon_sym_true] = ACTIONS(2955), [anon_sym_false] = ACTIONS(2955), - [anon_sym_none] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), [anon_sym_undefined] = ACTIONS(2959), [sym_sink] = ACTIONS(2961), [sym_integer] = ACTIONS(2961), @@ -177063,7 +177063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3769), [sym_qualified_identifier] = STATE(4502), [sym_boolean] = STATE(3769), - [sym_none] = STATE(3769), + [sym_null] = STATE(3769), [sym_undefined] = STATE(3769), [sym_string] = STATE(3769), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -177116,7 +177116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2953), [anon_sym_true] = ACTIONS(2955), [anon_sym_false] = ACTIONS(2955), - [anon_sym_none] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), [anon_sym_undefined] = ACTIONS(2959), [sym_sink] = ACTIONS(2961), [sym_integer] = ACTIONS(2961), @@ -177151,7 +177151,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3769), [sym_qualified_identifier] = STATE(4502), [sym_boolean] = STATE(3769), - [sym_none] = STATE(3769), + [sym_null] = STATE(3769), [sym_undefined] = STATE(3769), [sym_string] = STATE(3769), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -177204,7 +177204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2953), [anon_sym_true] = ACTIONS(2955), [anon_sym_false] = ACTIONS(2955), - [anon_sym_none] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), [anon_sym_undefined] = ACTIONS(2959), [sym_sink] = ACTIONS(2961), [sym_integer] = ACTIONS(2961), @@ -177239,7 +177239,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3769), [sym_qualified_identifier] = STATE(4502), [sym_boolean] = STATE(3769), - [sym_none] = STATE(3769), + [sym_null] = STATE(3769), [sym_undefined] = STATE(3769), [sym_string] = STATE(3769), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -177292,7 +177292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2953), [anon_sym_true] = ACTIONS(2955), [anon_sym_false] = ACTIONS(2955), - [anon_sym_none] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), [anon_sym_undefined] = ACTIONS(2959), [sym_sink] = ACTIONS(2961), [sym_integer] = ACTIONS(2961), @@ -177327,7 +177327,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3769), [sym_qualified_identifier] = STATE(4502), [sym_boolean] = STATE(3769), - [sym_none] = STATE(3769), + [sym_null] = STATE(3769), [sym_undefined] = STATE(3769), [sym_string] = STATE(3769), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -177380,7 +177380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2953), [anon_sym_true] = ACTIONS(2955), [anon_sym_false] = ACTIONS(2955), - [anon_sym_none] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), [anon_sym_undefined] = ACTIONS(2959), [sym_sink] = ACTIONS(2961), [sym_integer] = ACTIONS(2961), @@ -177415,7 +177415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1539), @@ -177468,7 +177468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -177503,7 +177503,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -177556,7 +177556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -177591,7 +177591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -177644,7 +177644,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -177679,7 +177679,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1550), @@ -177732,7 +177732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -177767,7 +177767,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1551), @@ -177820,7 +177820,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -177855,7 +177855,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1552), @@ -177908,7 +177908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -177943,7 +177943,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1553), @@ -177996,7 +177996,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -178031,7 +178031,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1554), @@ -178084,7 +178084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -178119,7 +178119,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1555), @@ -178172,7 +178172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -178207,7 +178207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1556), @@ -178260,7 +178260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -178295,7 +178295,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1557), @@ -178348,7 +178348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -178383,7 +178383,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1558), @@ -178436,7 +178436,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -178471,7 +178471,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -178524,7 +178524,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -178559,7 +178559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -178612,7 +178612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -178647,7 +178647,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -178700,7 +178700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -178735,7 +178735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -178788,7 +178788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -178823,7 +178823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -178876,7 +178876,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -178911,7 +178911,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -178964,7 +178964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -178999,7 +178999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -179052,7 +179052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -179087,7 +179087,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -179140,7 +179140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -179175,7 +179175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -179228,7 +179228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(842), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -179263,7 +179263,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1524), @@ -179316,7 +179316,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -179351,7 +179351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1562), @@ -179404,7 +179404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -179439,7 +179439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1563), @@ -179492,7 +179492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -179527,7 +179527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -179580,7 +179580,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -179615,7 +179615,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -179668,7 +179668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -179703,7 +179703,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1575), @@ -179756,7 +179756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -179791,7 +179791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1576), @@ -179844,7 +179844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -179879,7 +179879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1577), @@ -179932,7 +179932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -179967,7 +179967,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1578), @@ -180020,7 +180020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -180055,7 +180055,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1579), @@ -180108,7 +180108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -180143,7 +180143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1580), @@ -180196,7 +180196,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -180231,7 +180231,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1581), @@ -180284,7 +180284,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -180319,7 +180319,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1582), @@ -180372,7 +180372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -180407,7 +180407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1583), @@ -180460,7 +180460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -180495,7 +180495,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1584), @@ -180548,7 +180548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -180583,7 +180583,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1585), @@ -180636,7 +180636,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -180671,7 +180671,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -180724,7 +180724,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -180759,7 +180759,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -180812,7 +180812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -180847,7 +180847,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -180900,7 +180900,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -180935,7 +180935,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -180988,7 +180988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -181023,7 +181023,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -181076,7 +181076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -181111,7 +181111,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -181164,7 +181164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -181199,7 +181199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -181252,7 +181252,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -181287,7 +181287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -181340,7 +181340,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -181375,7 +181375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -181428,7 +181428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -181463,7 +181463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -181516,7 +181516,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -181551,7 +181551,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -181604,7 +181604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -181639,7 +181639,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1587), @@ -181692,7 +181692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3004), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -181727,7 +181727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -181780,7 +181780,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3004), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -181815,7 +181815,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1598), @@ -181868,7 +181868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3004), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -181903,7 +181903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1600), @@ -181956,7 +181956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3004), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -181991,7 +181991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1601), @@ -182044,7 +182044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3004), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -182079,7 +182079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1602), @@ -182132,7 +182132,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3004), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -182167,7 +182167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1604), @@ -182220,7 +182220,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3004), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -182255,7 +182255,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1607), @@ -182308,7 +182308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3004), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -182343,7 +182343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1608), @@ -182396,7 +182396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3004), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -182431,7 +182431,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1609), @@ -182484,7 +182484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3004), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -182519,7 +182519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1612), @@ -182572,7 +182572,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3004), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -182607,7 +182607,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1632), @@ -182660,7 +182660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(223), [sym_integer] = ACTIONS(223), @@ -182695,7 +182695,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -182748,7 +182748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3004), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -182783,7 +182783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1627), @@ -182836,7 +182836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -182871,7 +182871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -182924,7 +182924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3004), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -182959,7 +182959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -183012,7 +183012,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3004), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -183047,7 +183047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -183100,7 +183100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3004), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -183135,7 +183135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1693), @@ -183188,7 +183188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -183223,7 +183223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -183276,7 +183276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3004), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -183311,7 +183311,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -183364,7 +183364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -183399,7 +183399,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -183452,7 +183452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -183487,7 +183487,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -183540,7 +183540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3004), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -183575,7 +183575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -183628,7 +183628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3004), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -183663,7 +183663,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -183716,7 +183716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3004), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -183751,7 +183751,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1613), @@ -183804,7 +183804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -183839,7 +183839,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1614), @@ -183892,7 +183892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -183927,7 +183927,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -183980,7 +183980,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3004), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -184015,7 +184015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -184068,7 +184068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -184103,7 +184103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -184156,7 +184156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -184191,7 +184191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1642), @@ -184244,7 +184244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -184279,7 +184279,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1643), @@ -184332,7 +184332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -184367,7 +184367,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1644), @@ -184420,7 +184420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -184455,7 +184455,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1645), @@ -184508,7 +184508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -184543,7 +184543,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1646), @@ -184596,7 +184596,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -184631,7 +184631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1647), @@ -184684,7 +184684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -184719,7 +184719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1648), @@ -184772,7 +184772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -184807,7 +184807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3769), [sym_qualified_identifier] = STATE(4502), [sym_boolean] = STATE(3769), - [sym_none] = STATE(3769), + [sym_null] = STATE(3769), [sym_undefined] = STATE(3769), [sym_string] = STATE(3769), [aux_sym_import_declaration_repeat1] = STATE(1489), @@ -184860,7 +184860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2953), [anon_sym_true] = ACTIONS(2955), [anon_sym_false] = ACTIONS(2955), - [anon_sym_none] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), [anon_sym_undefined] = ACTIONS(2959), [sym_sink] = ACTIONS(2961), [sym_integer] = ACTIONS(2961), @@ -184895,7 +184895,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1649), @@ -184948,7 +184948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -184983,7 +184983,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1651), @@ -185036,7 +185036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -185071,7 +185071,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1540), @@ -185124,7 +185124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -185159,7 +185159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(2383), [sym_qualified_identifier] = STATE(4295), [sym_boolean] = STATE(2383), - [sym_none] = STATE(2383), + [sym_null] = STATE(2383), [sym_undefined] = STATE(2383), [sym_string] = STATE(2383), [aux_sym_import_declaration_repeat1] = STATE(1669), @@ -185212,7 +185212,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3226), [anon_sym_true] = ACTIONS(3228), [anon_sym_false] = ACTIONS(3228), - [anon_sym_none] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3230), [anon_sym_undefined] = ACTIONS(3232), [sym_sink] = ACTIONS(3234), [sym_integer] = ACTIONS(3234), @@ -185247,7 +185247,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -185300,7 +185300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -185335,7 +185335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1630), @@ -185388,7 +185388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -185423,7 +185423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1631), @@ -185476,7 +185476,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -185511,7 +185511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -185564,7 +185564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -185599,7 +185599,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -185652,7 +185652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -185687,7 +185687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -185740,7 +185740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(223), [sym_integer] = ACTIONS(223), @@ -185775,7 +185775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1654), @@ -185828,7 +185828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(223), [sym_integer] = ACTIONS(223), @@ -185863,7 +185863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1655), @@ -185916,7 +185916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(223), [sym_integer] = ACTIONS(223), @@ -185951,7 +185951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1656), @@ -186004,7 +186004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(223), [sym_integer] = ACTIONS(223), @@ -186039,7 +186039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1657), @@ -186092,7 +186092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(223), [sym_integer] = ACTIONS(223), @@ -186127,7 +186127,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1658), @@ -186180,7 +186180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(223), [sym_integer] = ACTIONS(223), @@ -186215,7 +186215,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1659), @@ -186268,7 +186268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(223), [sym_integer] = ACTIONS(223), @@ -186303,7 +186303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1660), @@ -186356,7 +186356,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(223), [sym_integer] = ACTIONS(223), @@ -186391,7 +186391,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1759), @@ -186444,7 +186444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -186479,7 +186479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1662), @@ -186532,7 +186532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(223), [sym_integer] = ACTIONS(223), @@ -186567,7 +186567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -186620,7 +186620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -186655,7 +186655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -186708,7 +186708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -186743,7 +186743,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -186796,7 +186796,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -186831,7 +186831,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -186884,7 +186884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -186919,7 +186919,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -186972,7 +186972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -187007,7 +187007,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -187060,7 +187060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -187095,7 +187095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -187148,7 +187148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -187183,7 +187183,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -187236,7 +187236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -187271,7 +187271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1762), @@ -187324,7 +187324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -187359,7 +187359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -187412,7 +187412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -187447,7 +187447,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -187500,7 +187500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -187535,7 +187535,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(2383), [sym_qualified_identifier] = STATE(4295), [sym_boolean] = STATE(2383), - [sym_none] = STATE(2383), + [sym_null] = STATE(2383), [sym_undefined] = STATE(2383), [sym_string] = STATE(2383), [aux_sym_import_declaration_repeat1] = STATE(1736), @@ -187588,7 +187588,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3226), [anon_sym_true] = ACTIONS(3228), [anon_sym_false] = ACTIONS(3228), - [anon_sym_none] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3230), [anon_sym_undefined] = ACTIONS(3232), [sym_sink] = ACTIONS(3234), [sym_integer] = ACTIONS(3234), @@ -187623,7 +187623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -187676,7 +187676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(223), [sym_integer] = ACTIONS(223), @@ -187711,7 +187711,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -187764,7 +187764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(223), [sym_integer] = ACTIONS(223), @@ -187799,7 +187799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -187852,7 +187852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(223), [sym_integer] = ACTIONS(223), @@ -187887,7 +187887,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -187940,7 +187940,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(223), [sym_integer] = ACTIONS(223), @@ -187975,7 +187975,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -188028,7 +188028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(223), [sym_integer] = ACTIONS(223), @@ -188063,7 +188063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -188116,7 +188116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(223), [sym_integer] = ACTIONS(223), @@ -188151,7 +188151,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -188204,7 +188204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(223), [sym_integer] = ACTIONS(223), @@ -188239,7 +188239,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -188292,7 +188292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(223), [sym_integer] = ACTIONS(223), @@ -188327,7 +188327,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -188380,7 +188380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(223), [sym_integer] = ACTIONS(223), @@ -188415,7 +188415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1665), @@ -188468,7 +188468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -188503,7 +188503,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1666), @@ -188556,7 +188556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -188591,7 +188591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -188644,7 +188644,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -188679,7 +188679,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -188732,7 +188732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -188767,7 +188767,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1738), @@ -188820,7 +188820,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -188855,7 +188855,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1670), @@ -188908,7 +188908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -188943,7 +188943,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(2383), [sym_qualified_identifier] = STATE(4295), [sym_boolean] = STATE(2383), - [sym_none] = STATE(2383), + [sym_null] = STATE(2383), [sym_undefined] = STATE(2383), [sym_string] = STATE(2383), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -188996,7 +188996,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3226), [anon_sym_true] = ACTIONS(3228), [anon_sym_false] = ACTIONS(3228), - [anon_sym_none] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3230), [anon_sym_undefined] = ACTIONS(3232), [sym_sink] = ACTIONS(3234), [sym_integer] = ACTIONS(3234), @@ -189031,7 +189031,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -189084,7 +189084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -189119,7 +189119,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(2383), [sym_qualified_identifier] = STATE(4295), [sym_boolean] = STATE(2383), - [sym_none] = STATE(2383), + [sym_null] = STATE(2383), [sym_undefined] = STATE(2383), [sym_string] = STATE(2383), [aux_sym_import_declaration_repeat1] = STATE(1701), @@ -189172,7 +189172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3226), [anon_sym_true] = ACTIONS(3228), [anon_sym_false] = ACTIONS(3228), - [anon_sym_none] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3230), [anon_sym_undefined] = ACTIONS(3232), [sym_sink] = ACTIONS(3234), [sym_integer] = ACTIONS(3234), @@ -189207,7 +189207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(2383), [sym_qualified_identifier] = STATE(4295), [sym_boolean] = STATE(2383), - [sym_none] = STATE(2383), + [sym_null] = STATE(2383), [sym_undefined] = STATE(2383), [sym_string] = STATE(2383), [aux_sym_import_declaration_repeat1] = STATE(1715), @@ -189260,7 +189260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3226), [anon_sym_true] = ACTIONS(3228), [anon_sym_false] = ACTIONS(3228), - [anon_sym_none] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3230), [anon_sym_undefined] = ACTIONS(3232), [sym_sink] = ACTIONS(3234), [sym_integer] = ACTIONS(3234), @@ -189295,7 +189295,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1723), @@ -189348,7 +189348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -189383,7 +189383,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1725), @@ -189436,7 +189436,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -189471,7 +189471,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(2383), [sym_qualified_identifier] = STATE(4295), [sym_boolean] = STATE(2383), - [sym_none] = STATE(2383), + [sym_null] = STATE(2383), [sym_undefined] = STATE(2383), [sym_string] = STATE(2383), [aux_sym_import_declaration_repeat1] = STATE(1716), @@ -189524,7 +189524,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3226), [anon_sym_true] = ACTIONS(3228), [anon_sym_false] = ACTIONS(3228), - [anon_sym_none] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3230), [anon_sym_undefined] = ACTIONS(3232), [sym_sink] = ACTIONS(3234), [sym_integer] = ACTIONS(3234), @@ -189559,7 +189559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1726), @@ -189612,7 +189612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -189647,7 +189647,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1728), @@ -189700,7 +189700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -189735,7 +189735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1729), @@ -189788,7 +189788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -189823,7 +189823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(2383), [sym_qualified_identifier] = STATE(4295), [sym_boolean] = STATE(2383), - [sym_none] = STATE(2383), + [sym_null] = STATE(2383), [sym_undefined] = STATE(2383), [sym_string] = STATE(2383), [aux_sym_import_declaration_repeat1] = STATE(1727), @@ -189876,7 +189876,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3226), [anon_sym_true] = ACTIONS(3228), [anon_sym_false] = ACTIONS(3228), - [anon_sym_none] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3230), [anon_sym_undefined] = ACTIONS(3232), [sym_sink] = ACTIONS(3234), [sym_integer] = ACTIONS(3234), @@ -189911,7 +189911,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1730), @@ -189964,7 +189964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -189999,7 +189999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1732), @@ -190052,7 +190052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -190087,7 +190087,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1734), @@ -190140,7 +190140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -190175,7 +190175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1735), @@ -190228,7 +190228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -190263,7 +190263,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(2383), [sym_qualified_identifier] = STATE(4295), [sym_boolean] = STATE(2383), - [sym_none] = STATE(2383), + [sym_null] = STATE(2383), [sym_undefined] = STATE(2383), [sym_string] = STATE(2383), [aux_sym_import_declaration_repeat1] = STATE(1733), @@ -190316,7 +190316,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3226), [anon_sym_true] = ACTIONS(3228), [anon_sym_false] = ACTIONS(3228), - [anon_sym_none] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3230), [anon_sym_undefined] = ACTIONS(3232), [sym_sink] = ACTIONS(3234), [sym_integer] = ACTIONS(3234), @@ -190351,7 +190351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(2383), [sym_qualified_identifier] = STATE(4295), [sym_boolean] = STATE(2383), - [sym_none] = STATE(2383), + [sym_null] = STATE(2383), [sym_undefined] = STATE(2383), [sym_string] = STATE(2383), [aux_sym_import_declaration_repeat1] = STATE(1737), @@ -190404,7 +190404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3226), [anon_sym_true] = ACTIONS(3228), [anon_sym_false] = ACTIONS(3228), - [anon_sym_none] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3230), [anon_sym_undefined] = ACTIONS(3232), [sym_sink] = ACTIONS(3234), [sym_integer] = ACTIONS(3234), @@ -190439,7 +190439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1522), @@ -190492,7 +190492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -190527,7 +190527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1763), @@ -190580,7 +190580,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -190615,7 +190615,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(2383), [sym_qualified_identifier] = STATE(4295), [sym_boolean] = STATE(2383), - [sym_none] = STATE(2383), + [sym_null] = STATE(2383), [sym_undefined] = STATE(2383), [sym_string] = STATE(2383), [aux_sym_import_declaration_repeat1] = STATE(1740), @@ -190668,7 +190668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3226), [anon_sym_true] = ACTIONS(3228), [anon_sym_false] = ACTIONS(3228), - [anon_sym_none] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3230), [anon_sym_undefined] = ACTIONS(3232), [sym_sink] = ACTIONS(3234), [sym_integer] = ACTIONS(3234), @@ -190703,7 +190703,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(2383), [sym_qualified_identifier] = STATE(4295), [sym_boolean] = STATE(2383), - [sym_none] = STATE(2383), + [sym_null] = STATE(2383), [sym_undefined] = STATE(2383), [sym_string] = STATE(2383), [aux_sym_import_declaration_repeat1] = STATE(1741), @@ -190756,7 +190756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3226), [anon_sym_true] = ACTIONS(3228), [anon_sym_false] = ACTIONS(3228), - [anon_sym_none] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3230), [anon_sym_undefined] = ACTIONS(3232), [sym_sink] = ACTIONS(3234), [sym_integer] = ACTIONS(3234), @@ -190791,7 +190791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(2383), [sym_qualified_identifier] = STATE(4295), [sym_boolean] = STATE(2383), - [sym_none] = STATE(2383), + [sym_null] = STATE(2383), [sym_undefined] = STATE(2383), [sym_string] = STATE(2383), [aux_sym_import_declaration_repeat1] = STATE(1746), @@ -190844,7 +190844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3226), [anon_sym_true] = ACTIONS(3228), [anon_sym_false] = ACTIONS(3228), - [anon_sym_none] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3230), [anon_sym_undefined] = ACTIONS(3232), [sym_sink] = ACTIONS(3234), [sym_integer] = ACTIONS(3234), @@ -190879,7 +190879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1527), @@ -190932,7 +190932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -190967,7 +190967,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1509), @@ -191020,7 +191020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(3906), [sym_integer] = ACTIONS(1582), @@ -191055,7 +191055,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -191108,7 +191108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -191143,7 +191143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1695), @@ -191196,7 +191196,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -191231,7 +191231,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -191284,7 +191284,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -191319,7 +191319,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1706), @@ -191372,7 +191372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -191407,7 +191407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1707), @@ -191460,7 +191460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -191495,7 +191495,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1708), @@ -191548,7 +191548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -191583,7 +191583,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1709), @@ -191636,7 +191636,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -191671,7 +191671,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1710), @@ -191724,7 +191724,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -191759,7 +191759,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(2383), [sym_qualified_identifier] = STATE(4295), [sym_boolean] = STATE(2383), - [sym_none] = STATE(2383), + [sym_null] = STATE(2383), [sym_undefined] = STATE(2383), [sym_string] = STATE(2383), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -191812,7 +191812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3226), [anon_sym_true] = ACTIONS(3228), [anon_sym_false] = ACTIONS(3228), - [anon_sym_none] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3230), [anon_sym_undefined] = ACTIONS(3232), [sym_sink] = ACTIONS(3234), [sym_integer] = ACTIONS(3234), @@ -191847,7 +191847,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1711), @@ -191900,7 +191900,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -191935,7 +191935,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1712), @@ -191988,7 +191988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -192023,7 +192023,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1713), @@ -192076,7 +192076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -192111,7 +192111,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1714), @@ -192164,7 +192164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -192199,7 +192199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -192252,7 +192252,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -192287,7 +192287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -192340,7 +192340,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -192375,7 +192375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -192428,7 +192428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -192463,7 +192463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -192516,7 +192516,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -192551,7 +192551,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -192604,7 +192604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -192639,7 +192639,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -192692,7 +192692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -192727,7 +192727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -192780,7 +192780,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -192815,7 +192815,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -192868,7 +192868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -192903,7 +192903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -192956,7 +192956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -192991,7 +192991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(2383), [sym_qualified_identifier] = STATE(4295), [sym_boolean] = STATE(2383), - [sym_none] = STATE(2383), + [sym_null] = STATE(2383), [sym_undefined] = STATE(2383), [sym_string] = STATE(2383), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -193044,7 +193044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3226), [anon_sym_true] = ACTIONS(3228), [anon_sym_false] = ACTIONS(3228), - [anon_sym_none] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3230), [anon_sym_undefined] = ACTIONS(3232), [sym_sink] = ACTIONS(3234), [sym_integer] = ACTIONS(3234), @@ -193079,7 +193079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(2383), [sym_qualified_identifier] = STATE(4295), [sym_boolean] = STATE(2383), - [sym_none] = STATE(2383), + [sym_null] = STATE(2383), [sym_undefined] = STATE(2383), [sym_string] = STATE(2383), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -193132,7 +193132,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3226), [anon_sym_true] = ACTIONS(3228), [anon_sym_false] = ACTIONS(3228), - [anon_sym_none] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3230), [anon_sym_undefined] = ACTIONS(3232), [sym_sink] = ACTIONS(3234), [sym_integer] = ACTIONS(3234), @@ -193167,7 +193167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1528), @@ -193220,7 +193220,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -193255,7 +193255,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1720), @@ -193308,7 +193308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -193343,7 +193343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1605), @@ -193396,7 +193396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -193431,7 +193431,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -193484,7 +193484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -193519,7 +193519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -193572,7 +193572,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -193607,7 +193607,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1764), @@ -193660,7 +193660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -193695,7 +193695,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -193748,7 +193748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -193783,7 +193783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3769), [sym_qualified_identifier] = STATE(4502), [sym_boolean] = STATE(3769), - [sym_none] = STATE(3769), + [sym_null] = STATE(3769), [sym_undefined] = STATE(3769), [sym_string] = STATE(3769), [aux_sym_import_declaration_repeat1] = STATE(1766), @@ -193836,7 +193836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2953), [anon_sym_true] = ACTIONS(2955), [anon_sym_false] = ACTIONS(2955), - [anon_sym_none] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), [anon_sym_undefined] = ACTIONS(2959), [sym_sink] = ACTIONS(2961), [sym_integer] = ACTIONS(2961), @@ -193871,7 +193871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -193924,7 +193924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -193959,7 +193959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -194012,7 +194012,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -194047,7 +194047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(2383), [sym_qualified_identifier] = STATE(4295), [sym_boolean] = STATE(2383), - [sym_none] = STATE(2383), + [sym_null] = STATE(2383), [sym_undefined] = STATE(2383), [sym_string] = STATE(2383), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -194100,7 +194100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3226), [anon_sym_true] = ACTIONS(3228), [anon_sym_false] = ACTIONS(3228), - [anon_sym_none] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3230), [anon_sym_undefined] = ACTIONS(3232), [sym_sink] = ACTIONS(3234), [sym_integer] = ACTIONS(3234), @@ -194135,7 +194135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -194188,7 +194188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -194223,7 +194223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -194276,7 +194276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -194311,7 +194311,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -194364,7 +194364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -194399,7 +194399,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3769), [sym_qualified_identifier] = STATE(4502), [sym_boolean] = STATE(3769), - [sym_none] = STATE(3769), + [sym_null] = STATE(3769), [sym_undefined] = STATE(3769), [sym_string] = STATE(3769), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -194452,7 +194452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2953), [anon_sym_true] = ACTIONS(2955), [anon_sym_false] = ACTIONS(2955), - [anon_sym_none] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), [anon_sym_undefined] = ACTIONS(2959), [sym_sink] = ACTIONS(2961), [sym_integer] = ACTIONS(2961), @@ -194487,7 +194487,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -194540,7 +194540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -194575,7 +194575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(2383), [sym_qualified_identifier] = STATE(4295), [sym_boolean] = STATE(2383), - [sym_none] = STATE(2383), + [sym_null] = STATE(2383), [sym_undefined] = STATE(2383), [sym_string] = STATE(2383), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -194628,7 +194628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3226), [anon_sym_true] = ACTIONS(3228), [anon_sym_false] = ACTIONS(3228), - [anon_sym_none] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3230), [anon_sym_undefined] = ACTIONS(3232), [sym_sink] = ACTIONS(3234), [sym_integer] = ACTIONS(3234), @@ -194663,7 +194663,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -194716,7 +194716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -194751,7 +194751,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(598), [sym_qualified_identifier] = STATE(4228), [sym_boolean] = STATE(598), - [sym_none] = STATE(598), + [sym_null] = STATE(598), [sym_undefined] = STATE(598), [sym_string] = STATE(598), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -194804,7 +194804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(301), [anon_sym_true] = ACTIONS(95), [anon_sym_false] = ACTIONS(95), - [anon_sym_none] = ACTIONS(97), + [anon_sym_null] = ACTIONS(97), [anon_sym_undefined] = ACTIONS(99), [sym_sink] = ACTIONS(103), [sym_integer] = ACTIONS(103), @@ -194839,7 +194839,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(2383), [sym_qualified_identifier] = STATE(4295), [sym_boolean] = STATE(2383), - [sym_none] = STATE(2383), + [sym_null] = STATE(2383), [sym_undefined] = STATE(2383), [sym_string] = STATE(2383), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -194892,7 +194892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3226), [anon_sym_true] = ACTIONS(3228), [anon_sym_false] = ACTIONS(3228), - [anon_sym_none] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3230), [anon_sym_undefined] = ACTIONS(3232), [sym_sink] = ACTIONS(3234), [sym_integer] = ACTIONS(3234), @@ -194927,7 +194927,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(2383), [sym_qualified_identifier] = STATE(4295), [sym_boolean] = STATE(2383), - [sym_none] = STATE(2383), + [sym_null] = STATE(2383), [sym_undefined] = STATE(2383), [sym_string] = STATE(2383), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -194980,7 +194980,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3226), [anon_sym_true] = ACTIONS(3228), [anon_sym_false] = ACTIONS(3228), - [anon_sym_none] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3230), [anon_sym_undefined] = ACTIONS(3232), [sym_sink] = ACTIONS(3234), [sym_integer] = ACTIONS(3234), @@ -195015,7 +195015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -195068,7 +195068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -195103,7 +195103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1772), @@ -195156,7 +195156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -195191,7 +195191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(2383), [sym_qualified_identifier] = STATE(4295), [sym_boolean] = STATE(2383), - [sym_none] = STATE(2383), + [sym_null] = STATE(2383), [sym_undefined] = STATE(2383), [sym_string] = STATE(2383), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -195244,7 +195244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3226), [anon_sym_true] = ACTIONS(3228), [anon_sym_false] = ACTIONS(3228), - [anon_sym_none] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3230), [anon_sym_undefined] = ACTIONS(3232), [sym_sink] = ACTIONS(3234), [sym_integer] = ACTIONS(3234), @@ -195279,7 +195279,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(2383), [sym_qualified_identifier] = STATE(4295), [sym_boolean] = STATE(2383), - [sym_none] = STATE(2383), + [sym_null] = STATE(2383), [sym_undefined] = STATE(2383), [sym_string] = STATE(2383), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -195332,7 +195332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3226), [anon_sym_true] = ACTIONS(3228), [anon_sym_false] = ACTIONS(3228), - [anon_sym_none] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3230), [anon_sym_undefined] = ACTIONS(3232), [sym_sink] = ACTIONS(3234), [sym_integer] = ACTIONS(3234), @@ -195367,7 +195367,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1744), @@ -195420,7 +195420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -195455,7 +195455,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1721), @@ -195508,7 +195508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -195543,7 +195543,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -195596,7 +195596,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -195631,7 +195631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -195684,7 +195684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -195719,7 +195719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(2383), [sym_qualified_identifier] = STATE(4295), [sym_boolean] = STATE(2383), - [sym_none] = STATE(2383), + [sym_null] = STATE(2383), [sym_undefined] = STATE(2383), [sym_string] = STATE(2383), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -195772,7 +195772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3226), [anon_sym_true] = ACTIONS(3228), [anon_sym_false] = ACTIONS(3228), - [anon_sym_none] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3230), [anon_sym_undefined] = ACTIONS(3232), [sym_sink] = ACTIONS(3234), [sym_integer] = ACTIONS(3234), @@ -195807,7 +195807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1749), @@ -195860,7 +195860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -195895,7 +195895,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1652), @@ -195948,7 +195948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -195983,7 +195983,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -196036,7 +196036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -196071,7 +196071,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1752), @@ -196124,7 +196124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -196159,7 +196159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1745), @@ -196212,7 +196212,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -196247,7 +196247,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -196300,7 +196300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -196335,7 +196335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -196388,7 +196388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -196423,7 +196423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -196476,7 +196476,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -196511,7 +196511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1767), @@ -196564,7 +196564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3004), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -196599,7 +196599,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -196652,7 +196652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -196687,7 +196687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -196740,7 +196740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -196775,7 +196775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -196828,7 +196828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -196863,7 +196863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -196916,7 +196916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -196951,7 +196951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -197004,7 +197004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -197039,7 +197039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -197092,7 +197092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -197127,7 +197127,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -197180,7 +197180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -197215,7 +197215,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -197268,7 +197268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -197303,7 +197303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -197356,7 +197356,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2192), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -197391,7 +197391,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3769), [sym_qualified_identifier] = STATE(4502), [sym_boolean] = STATE(3769), - [sym_none] = STATE(3769), + [sym_null] = STATE(3769), [sym_undefined] = STATE(3769), [sym_string] = STATE(3769), [aux_sym_import_declaration_repeat1] = STATE(1731), @@ -197444,7 +197444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2953), [anon_sym_true] = ACTIONS(2955), [anon_sym_false] = ACTIONS(2955), - [anon_sym_none] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), [anon_sym_undefined] = ACTIONS(2959), [sym_sink] = ACTIONS(2961), [sym_integer] = ACTIONS(2961), @@ -197479,7 +197479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3769), [sym_qualified_identifier] = STATE(4502), [sym_boolean] = STATE(3769), - [sym_none] = STATE(3769), + [sym_null] = STATE(3769), [sym_undefined] = STATE(3769), [sym_string] = STATE(3769), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -197532,7 +197532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(2953), [anon_sym_true] = ACTIONS(2955), [anon_sym_false] = ACTIONS(2955), - [anon_sym_none] = ACTIONS(2957), + [anon_sym_null] = ACTIONS(2957), [anon_sym_undefined] = ACTIONS(2959), [sym_sink] = ACTIONS(2961), [sym_integer] = ACTIONS(2961), @@ -197567,7 +197567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -197620,7 +197620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3004), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -197655,7 +197655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1753), @@ -197708,7 +197708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -197743,7 +197743,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1754), @@ -197796,7 +197796,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -197831,7 +197831,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1756), @@ -197884,7 +197884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -197919,7 +197919,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(885), [sym_qualified_identifier] = STATE(4367), [sym_boolean] = STATE(885), - [sym_none] = STATE(885), + [sym_null] = STATE(885), [sym_undefined] = STATE(885), [sym_string] = STATE(885), [aux_sym_import_declaration_repeat1] = STATE(1757), @@ -197972,7 +197972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1574), [anon_sym_true] = ACTIONS(1576), [anon_sym_false] = ACTIONS(1576), - [anon_sym_none] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1578), [anon_sym_undefined] = ACTIONS(1580), [sym_sink] = ACTIONS(1582), [sym_integer] = ACTIONS(1582), @@ -198007,7 +198007,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [aux_sym_import_declaration_repeat1] = STATE(1158), @@ -198060,7 +198060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -198095,7 +198095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3108), [sym_qualified_identifier] = STATE(4683), [sym_boolean] = STATE(3108), - [sym_none] = STATE(3108), + [sym_null] = STATE(3108), [sym_undefined] = STATE(3108), [sym_string] = STATE(3108), [aux_sym_import_declaration_repeat1] = STATE(1661), @@ -198148,7 +198148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(836), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [anon_sym_none] = ACTIONS(217), + [anon_sym_null] = ACTIONS(217), [anon_sym_undefined] = ACTIONS(219), [sym_sink] = ACTIONS(223), [sym_integer] = ACTIONS(223), @@ -198183,7 +198183,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [sym_identifier] = ACTIONS(2331), @@ -198235,7 +198235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -198269,7 +198269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_literal] = STATE(3262), [sym_qualified_identifier] = STATE(4664), [sym_boolean] = STATE(3262), - [sym_none] = STATE(3262), + [sym_null] = STATE(3262), [sym_undefined] = STATE(3262), [sym_string] = STATE(3262), [sym_identifier] = ACTIONS(2331), @@ -198321,7 +198321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(544), [anon_sym_true] = ACTIONS(2221), [anon_sym_false] = ACTIONS(2221), - [anon_sym_none] = ACTIONS(2223), + [anon_sym_null] = ACTIONS(2223), [anon_sym_undefined] = ACTIONS(2225), [sym_sink] = ACTIONS(552), [sym_integer] = ACTIONS(552), @@ -199408,7 +199408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4134), [anon_sym_true] = ACTIONS(4136), [anon_sym_false] = ACTIONS(4136), - [anon_sym_none] = ACTIONS(4136), + [anon_sym_null] = ACTIONS(4136), [anon_sym_undefined] = ACTIONS(4136), [sym_sink] = ACTIONS(4136), [sym_integer] = ACTIONS(4136), @@ -199488,7 +199488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4140), [anon_sym_true] = ACTIONS(4142), [anon_sym_false] = ACTIONS(4142), - [anon_sym_none] = ACTIONS(4142), + [anon_sym_null] = ACTIONS(4142), [anon_sym_undefined] = ACTIONS(4142), [sym_sink] = ACTIONS(4142), [sym_integer] = ACTIONS(4142), @@ -199567,7 +199567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4146), [anon_sym_true] = ACTIONS(4148), [anon_sym_false] = ACTIONS(4148), - [anon_sym_none] = ACTIONS(4148), + [anon_sym_null] = ACTIONS(4148), [anon_sym_undefined] = ACTIONS(4148), [sym_sink] = ACTIONS(4148), [sym_integer] = ACTIONS(4148), @@ -199646,7 +199646,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4150), [anon_sym_true] = ACTIONS(4152), [anon_sym_false] = ACTIONS(4152), - [anon_sym_none] = ACTIONS(4152), + [anon_sym_null] = ACTIONS(4152), [anon_sym_undefined] = ACTIONS(4152), [sym_sink] = ACTIONS(4152), [sym_integer] = ACTIONS(4152), @@ -199725,7 +199725,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4154), [anon_sym_true] = ACTIONS(4156), [anon_sym_false] = ACTIONS(4156), - [anon_sym_none] = ACTIONS(4156), + [anon_sym_null] = ACTIONS(4156), [anon_sym_undefined] = ACTIONS(4156), [sym_sink] = ACTIONS(4156), [sym_integer] = ACTIONS(4156), @@ -199804,7 +199804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4158), [anon_sym_true] = ACTIONS(4160), [anon_sym_false] = ACTIONS(4160), - [anon_sym_none] = ACTIONS(4160), + [anon_sym_null] = ACTIONS(4160), [anon_sym_undefined] = ACTIONS(4160), [sym_sink] = ACTIONS(4160), [sym_integer] = ACTIONS(4160), @@ -199883,7 +199883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4162), [anon_sym_true] = ACTIONS(4164), [anon_sym_false] = ACTIONS(4164), - [anon_sym_none] = ACTIONS(4164), + [anon_sym_null] = ACTIONS(4164), [anon_sym_undefined] = ACTIONS(4164), [sym_sink] = ACTIONS(4164), [sym_integer] = ACTIONS(4164), @@ -199962,7 +199962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4166), [anon_sym_true] = ACTIONS(4168), [anon_sym_false] = ACTIONS(4168), - [anon_sym_none] = ACTIONS(4168), + [anon_sym_null] = ACTIONS(4168), [anon_sym_undefined] = ACTIONS(4168), [sym_sink] = ACTIONS(4168), [sym_integer] = ACTIONS(4168), @@ -200041,7 +200041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4170), [anon_sym_true] = ACTIONS(4172), [anon_sym_false] = ACTIONS(4172), - [anon_sym_none] = ACTIONS(4172), + [anon_sym_null] = ACTIONS(4172), [anon_sym_undefined] = ACTIONS(4172), [sym_sink] = ACTIONS(4172), [sym_integer] = ACTIONS(4172), @@ -200120,7 +200120,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4174), [anon_sym_true] = ACTIONS(4176), [anon_sym_false] = ACTIONS(4176), - [anon_sym_none] = ACTIONS(4176), + [anon_sym_null] = ACTIONS(4176), [anon_sym_undefined] = ACTIONS(4176), [sym_sink] = ACTIONS(4176), [sym_integer] = ACTIONS(4176), @@ -200199,7 +200199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4178), [anon_sym_true] = ACTIONS(4180), [anon_sym_false] = ACTIONS(4180), - [anon_sym_none] = ACTIONS(4180), + [anon_sym_null] = ACTIONS(4180), [anon_sym_undefined] = ACTIONS(4180), [sym_sink] = ACTIONS(4180), [sym_integer] = ACTIONS(4180), @@ -200278,7 +200278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4182), [anon_sym_true] = ACTIONS(4184), [anon_sym_false] = ACTIONS(4184), - [anon_sym_none] = ACTIONS(4184), + [anon_sym_null] = ACTIONS(4184), [anon_sym_undefined] = ACTIONS(4184), [sym_sink] = ACTIONS(4184), [sym_integer] = ACTIONS(4184), @@ -200357,7 +200357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4186), [anon_sym_true] = ACTIONS(4188), [anon_sym_false] = ACTIONS(4188), - [anon_sym_none] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(4188), [anon_sym_undefined] = ACTIONS(4188), [sym_sink] = ACTIONS(4188), [sym_integer] = ACTIONS(4188), @@ -200436,7 +200436,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4190), [anon_sym_true] = ACTIONS(4192), [anon_sym_false] = ACTIONS(4192), - [anon_sym_none] = ACTIONS(4192), + [anon_sym_null] = ACTIONS(4192), [anon_sym_undefined] = ACTIONS(4192), [sym_sink] = ACTIONS(4192), [sym_integer] = ACTIONS(4192), @@ -200515,7 +200515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4194), [anon_sym_true] = ACTIONS(4196), [anon_sym_false] = ACTIONS(4196), - [anon_sym_none] = ACTIONS(4196), + [anon_sym_null] = ACTIONS(4196), [anon_sym_undefined] = ACTIONS(4196), [sym_sink] = ACTIONS(4196), [sym_integer] = ACTIONS(4196), @@ -200594,7 +200594,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4198), [anon_sym_true] = ACTIONS(4200), [anon_sym_false] = ACTIONS(4200), - [anon_sym_none] = ACTIONS(4200), + [anon_sym_null] = ACTIONS(4200), [anon_sym_undefined] = ACTIONS(4200), [sym_sink] = ACTIONS(4200), [sym_integer] = ACTIONS(4200), @@ -200673,7 +200673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4202), [anon_sym_true] = ACTIONS(4204), [anon_sym_false] = ACTIONS(4204), - [anon_sym_none] = ACTIONS(4204), + [anon_sym_null] = ACTIONS(4204), [anon_sym_undefined] = ACTIONS(4204), [sym_sink] = ACTIONS(4204), [sym_integer] = ACTIONS(4204), @@ -200752,7 +200752,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4206), [anon_sym_true] = ACTIONS(4208), [anon_sym_false] = ACTIONS(4208), - [anon_sym_none] = ACTIONS(4208), + [anon_sym_null] = ACTIONS(4208), [anon_sym_undefined] = ACTIONS(4208), [sym_sink] = ACTIONS(4208), [sym_integer] = ACTIONS(4208), @@ -200831,7 +200831,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4210), [anon_sym_true] = ACTIONS(4212), [anon_sym_false] = ACTIONS(4212), - [anon_sym_none] = ACTIONS(4212), + [anon_sym_null] = ACTIONS(4212), [anon_sym_undefined] = ACTIONS(4212), [sym_sink] = ACTIONS(4212), [sym_integer] = ACTIONS(4212), @@ -200910,7 +200910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4214), [anon_sym_true] = ACTIONS(4216), [anon_sym_false] = ACTIONS(4216), - [anon_sym_none] = ACTIONS(4216), + [anon_sym_null] = ACTIONS(4216), [anon_sym_undefined] = ACTIONS(4216), [sym_sink] = ACTIONS(4216), [sym_integer] = ACTIONS(4216), @@ -200989,7 +200989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4218), [anon_sym_true] = ACTIONS(4220), [anon_sym_false] = ACTIONS(4220), - [anon_sym_none] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(4220), [anon_sym_undefined] = ACTIONS(4220), [sym_sink] = ACTIONS(4220), [sym_integer] = ACTIONS(4220), @@ -201068,7 +201068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4222), [anon_sym_true] = ACTIONS(4224), [anon_sym_false] = ACTIONS(4224), - [anon_sym_none] = ACTIONS(4224), + [anon_sym_null] = ACTIONS(4224), [anon_sym_undefined] = ACTIONS(4224), [sym_sink] = ACTIONS(4224), [sym_integer] = ACTIONS(4224), @@ -201147,7 +201147,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4226), [anon_sym_true] = ACTIONS(4228), [anon_sym_false] = ACTIONS(4228), - [anon_sym_none] = ACTIONS(4228), + [anon_sym_null] = ACTIONS(4228), [anon_sym_undefined] = ACTIONS(4228), [sym_sink] = ACTIONS(4228), [sym_integer] = ACTIONS(4228), @@ -201226,7 +201226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4230), [anon_sym_true] = ACTIONS(4232), [anon_sym_false] = ACTIONS(4232), - [anon_sym_none] = ACTIONS(4232), + [anon_sym_null] = ACTIONS(4232), [anon_sym_undefined] = ACTIONS(4232), [sym_sink] = ACTIONS(4232), [sym_integer] = ACTIONS(4232), @@ -201305,7 +201305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4234), [anon_sym_true] = ACTIONS(4236), [anon_sym_false] = ACTIONS(4236), - [anon_sym_none] = ACTIONS(4236), + [anon_sym_null] = ACTIONS(4236), [anon_sym_undefined] = ACTIONS(4236), [sym_sink] = ACTIONS(4236), [sym_integer] = ACTIONS(4236), @@ -201384,7 +201384,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4238), [anon_sym_true] = ACTIONS(4240), [anon_sym_false] = ACTIONS(4240), - [anon_sym_none] = ACTIONS(4240), + [anon_sym_null] = ACTIONS(4240), [anon_sym_undefined] = ACTIONS(4240), [sym_sink] = ACTIONS(4240), [sym_integer] = ACTIONS(4240), @@ -201463,7 +201463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4242), [anon_sym_true] = ACTIONS(4244), [anon_sym_false] = ACTIONS(4244), - [anon_sym_none] = ACTIONS(4244), + [anon_sym_null] = ACTIONS(4244), [anon_sym_undefined] = ACTIONS(4244), [sym_sink] = ACTIONS(4244), [sym_integer] = ACTIONS(4244), @@ -201542,7 +201542,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4246), [anon_sym_true] = ACTIONS(4248), [anon_sym_false] = ACTIONS(4248), - [anon_sym_none] = ACTIONS(4248), + [anon_sym_null] = ACTIONS(4248), [anon_sym_undefined] = ACTIONS(4248), [sym_sink] = ACTIONS(4248), [sym_integer] = ACTIONS(4248), @@ -201621,7 +201621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4250), [anon_sym_true] = ACTIONS(4252), [anon_sym_false] = ACTIONS(4252), - [anon_sym_none] = ACTIONS(4252), + [anon_sym_null] = ACTIONS(4252), [anon_sym_undefined] = ACTIONS(4252), [sym_sink] = ACTIONS(4252), [sym_integer] = ACTIONS(4252), @@ -201700,7 +201700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4254), [anon_sym_true] = ACTIONS(4256), [anon_sym_false] = ACTIONS(4256), - [anon_sym_none] = ACTIONS(4256), + [anon_sym_null] = ACTIONS(4256), [anon_sym_undefined] = ACTIONS(4256), [sym_sink] = ACTIONS(4256), [sym_integer] = ACTIONS(4256), @@ -201779,7 +201779,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4258), [anon_sym_true] = ACTIONS(4260), [anon_sym_false] = ACTIONS(4260), - [anon_sym_none] = ACTIONS(4260), + [anon_sym_null] = ACTIONS(4260), [anon_sym_undefined] = ACTIONS(4260), [sym_sink] = ACTIONS(4260), [sym_integer] = ACTIONS(4260), @@ -201858,7 +201858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4262), [anon_sym_true] = ACTIONS(4264), [anon_sym_false] = ACTIONS(4264), - [anon_sym_none] = ACTIONS(4264), + [anon_sym_null] = ACTIONS(4264), [anon_sym_undefined] = ACTIONS(4264), [sym_sink] = ACTIONS(4264), [sym_integer] = ACTIONS(4264), @@ -201937,7 +201937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4266), [anon_sym_true] = ACTIONS(4268), [anon_sym_false] = ACTIONS(4268), - [anon_sym_none] = ACTIONS(4268), + [anon_sym_null] = ACTIONS(4268), [anon_sym_undefined] = ACTIONS(4268), [sym_sink] = ACTIONS(4268), [sym_integer] = ACTIONS(4268), @@ -202016,7 +202016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4270), [anon_sym_true] = ACTIONS(4272), [anon_sym_false] = ACTIONS(4272), - [anon_sym_none] = ACTIONS(4272), + [anon_sym_null] = ACTIONS(4272), [anon_sym_undefined] = ACTIONS(4272), [sym_sink] = ACTIONS(4272), [sym_integer] = ACTIONS(4272), @@ -202095,7 +202095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4274), [anon_sym_true] = ACTIONS(4276), [anon_sym_false] = ACTIONS(4276), - [anon_sym_none] = ACTIONS(4276), + [anon_sym_null] = ACTIONS(4276), [anon_sym_undefined] = ACTIONS(4276), [sym_sink] = ACTIONS(4276), [sym_integer] = ACTIONS(4276), @@ -202174,7 +202174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4278), [anon_sym_true] = ACTIONS(4280), [anon_sym_false] = ACTIONS(4280), - [anon_sym_none] = ACTIONS(4280), + [anon_sym_null] = ACTIONS(4280), [anon_sym_undefined] = ACTIONS(4280), [sym_sink] = ACTIONS(4280), [sym_integer] = ACTIONS(4280), @@ -202253,7 +202253,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4282), [anon_sym_true] = ACTIONS(4284), [anon_sym_false] = ACTIONS(4284), - [anon_sym_none] = ACTIONS(4284), + [anon_sym_null] = ACTIONS(4284), [anon_sym_undefined] = ACTIONS(4284), [sym_sink] = ACTIONS(4284), [sym_integer] = ACTIONS(4284), @@ -202332,7 +202332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4286), [anon_sym_true] = ACTIONS(4288), [anon_sym_false] = ACTIONS(4288), - [anon_sym_none] = ACTIONS(4288), + [anon_sym_null] = ACTIONS(4288), [anon_sym_undefined] = ACTIONS(4288), [sym_sink] = ACTIONS(4288), [sym_integer] = ACTIONS(4288), @@ -202411,7 +202411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4290), [anon_sym_true] = ACTIONS(4292), [anon_sym_false] = ACTIONS(4292), - [anon_sym_none] = ACTIONS(4292), + [anon_sym_null] = ACTIONS(4292), [anon_sym_undefined] = ACTIONS(4292), [sym_sink] = ACTIONS(4292), [sym_integer] = ACTIONS(4292), @@ -202490,7 +202490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4294), [anon_sym_true] = ACTIONS(4296), [anon_sym_false] = ACTIONS(4296), - [anon_sym_none] = ACTIONS(4296), + [anon_sym_null] = ACTIONS(4296), [anon_sym_undefined] = ACTIONS(4296), [sym_sink] = ACTIONS(4296), [sym_integer] = ACTIONS(4296), @@ -202569,7 +202569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4298), [anon_sym_true] = ACTIONS(4300), [anon_sym_false] = ACTIONS(4300), - [anon_sym_none] = ACTIONS(4300), + [anon_sym_null] = ACTIONS(4300), [anon_sym_undefined] = ACTIONS(4300), [sym_sink] = ACTIONS(4300), [sym_integer] = ACTIONS(4300), @@ -202648,7 +202648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4302), [anon_sym_true] = ACTIONS(4304), [anon_sym_false] = ACTIONS(4304), - [anon_sym_none] = ACTIONS(4304), + [anon_sym_null] = ACTIONS(4304), [anon_sym_undefined] = ACTIONS(4304), [sym_sink] = ACTIONS(4304), [sym_integer] = ACTIONS(4304), @@ -202727,7 +202727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4306), [anon_sym_true] = ACTIONS(4308), [anon_sym_false] = ACTIONS(4308), - [anon_sym_none] = ACTIONS(4308), + [anon_sym_null] = ACTIONS(4308), [anon_sym_undefined] = ACTIONS(4308), [sym_sink] = ACTIONS(4308), [sym_integer] = ACTIONS(4308), @@ -202806,7 +202806,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4310), [anon_sym_true] = ACTIONS(4312), [anon_sym_false] = ACTIONS(4312), - [anon_sym_none] = ACTIONS(4312), + [anon_sym_null] = ACTIONS(4312), [anon_sym_undefined] = ACTIONS(4312), [sym_sink] = ACTIONS(4312), [sym_integer] = ACTIONS(4312), @@ -202885,7 +202885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4314), [anon_sym_true] = ACTIONS(4316), [anon_sym_false] = ACTIONS(4316), - [anon_sym_none] = ACTIONS(4316), + [anon_sym_null] = ACTIONS(4316), [anon_sym_undefined] = ACTIONS(4316), [sym_sink] = ACTIONS(4316), [sym_integer] = ACTIONS(4316), @@ -202964,7 +202964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4318), [anon_sym_true] = ACTIONS(4320), [anon_sym_false] = ACTIONS(4320), - [anon_sym_none] = ACTIONS(4320), + [anon_sym_null] = ACTIONS(4320), [anon_sym_undefined] = ACTIONS(4320), [sym_sink] = ACTIONS(4320), [sym_integer] = ACTIONS(4320), @@ -203043,7 +203043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4322), [anon_sym_true] = ACTIONS(4324), [anon_sym_false] = ACTIONS(4324), - [anon_sym_none] = ACTIONS(4324), + [anon_sym_null] = ACTIONS(4324), [anon_sym_undefined] = ACTIONS(4324), [sym_sink] = ACTIONS(4324), [sym_integer] = ACTIONS(4324), @@ -203122,7 +203122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4326), [anon_sym_true] = ACTIONS(4328), [anon_sym_false] = ACTIONS(4328), - [anon_sym_none] = ACTIONS(4328), + [anon_sym_null] = ACTIONS(4328), [anon_sym_undefined] = ACTIONS(4328), [sym_sink] = ACTIONS(4328), [sym_integer] = ACTIONS(4328), @@ -203201,7 +203201,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4330), [anon_sym_true] = ACTIONS(4332), [anon_sym_false] = ACTIONS(4332), - [anon_sym_none] = ACTIONS(4332), + [anon_sym_null] = ACTIONS(4332), [anon_sym_undefined] = ACTIONS(4332), [sym_sink] = ACTIONS(4332), [sym_integer] = ACTIONS(4332), @@ -203280,7 +203280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4334), [anon_sym_true] = ACTIONS(4336), [anon_sym_false] = ACTIONS(4336), - [anon_sym_none] = ACTIONS(4336), + [anon_sym_null] = ACTIONS(4336), [anon_sym_undefined] = ACTIONS(4336), [sym_sink] = ACTIONS(4336), [sym_integer] = ACTIONS(4336), @@ -203359,7 +203359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4338), [anon_sym_true] = ACTIONS(4340), [anon_sym_false] = ACTIONS(4340), - [anon_sym_none] = ACTIONS(4340), + [anon_sym_null] = ACTIONS(4340), [anon_sym_undefined] = ACTIONS(4340), [sym_sink] = ACTIONS(4340), [sym_integer] = ACTIONS(4340), @@ -203438,7 +203438,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4342), [anon_sym_true] = ACTIONS(4344), [anon_sym_false] = ACTIONS(4344), - [anon_sym_none] = ACTIONS(4344), + [anon_sym_null] = ACTIONS(4344), [anon_sym_undefined] = ACTIONS(4344), [sym_sink] = ACTIONS(4344), [sym_integer] = ACTIONS(4344), @@ -203517,7 +203517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4346), [anon_sym_true] = ACTIONS(4348), [anon_sym_false] = ACTIONS(4348), - [anon_sym_none] = ACTIONS(4348), + [anon_sym_null] = ACTIONS(4348), [anon_sym_undefined] = ACTIONS(4348), [sym_sink] = ACTIONS(4348), [sym_integer] = ACTIONS(4348), @@ -203596,7 +203596,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4350), [anon_sym_true] = ACTIONS(4352), [anon_sym_false] = ACTIONS(4352), - [anon_sym_none] = ACTIONS(4352), + [anon_sym_null] = ACTIONS(4352), [anon_sym_undefined] = ACTIONS(4352), [sym_sink] = ACTIONS(4352), [sym_integer] = ACTIONS(4352), @@ -203675,7 +203675,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4354), [anon_sym_true] = ACTIONS(4356), [anon_sym_false] = ACTIONS(4356), - [anon_sym_none] = ACTIONS(4356), + [anon_sym_null] = ACTIONS(4356), [anon_sym_undefined] = ACTIONS(4356), [sym_sink] = ACTIONS(4356), [sym_integer] = ACTIONS(4356), @@ -203754,7 +203754,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4358), [anon_sym_true] = ACTIONS(4360), [anon_sym_false] = ACTIONS(4360), - [anon_sym_none] = ACTIONS(4360), + [anon_sym_null] = ACTIONS(4360), [anon_sym_undefined] = ACTIONS(4360), [sym_sink] = ACTIONS(4360), [sym_integer] = ACTIONS(4360), @@ -203833,7 +203833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4362), [anon_sym_true] = ACTIONS(4364), [anon_sym_false] = ACTIONS(4364), - [anon_sym_none] = ACTIONS(4364), + [anon_sym_null] = ACTIONS(4364), [anon_sym_undefined] = ACTIONS(4364), [sym_sink] = ACTIONS(4364), [sym_integer] = ACTIONS(4364), @@ -203912,7 +203912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4366), [anon_sym_true] = ACTIONS(4368), [anon_sym_false] = ACTIONS(4368), - [anon_sym_none] = ACTIONS(4368), + [anon_sym_null] = ACTIONS(4368), [anon_sym_undefined] = ACTIONS(4368), [sym_sink] = ACTIONS(4368), [sym_integer] = ACTIONS(4368), @@ -203991,7 +203991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4370), [anon_sym_true] = ACTIONS(4372), [anon_sym_false] = ACTIONS(4372), - [anon_sym_none] = ACTIONS(4372), + [anon_sym_null] = ACTIONS(4372), [anon_sym_undefined] = ACTIONS(4372), [sym_sink] = ACTIONS(4372), [sym_integer] = ACTIONS(4372), @@ -204070,7 +204070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4374), [anon_sym_true] = ACTIONS(4376), [anon_sym_false] = ACTIONS(4376), - [anon_sym_none] = ACTIONS(4376), + [anon_sym_null] = ACTIONS(4376), [anon_sym_undefined] = ACTIONS(4376), [sym_sink] = ACTIONS(4376), [sym_integer] = ACTIONS(4376), @@ -204149,7 +204149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4378), [anon_sym_true] = ACTIONS(4380), [anon_sym_false] = ACTIONS(4380), - [anon_sym_none] = ACTIONS(4380), + [anon_sym_null] = ACTIONS(4380), [anon_sym_undefined] = ACTIONS(4380), [sym_sink] = ACTIONS(4380), [sym_integer] = ACTIONS(4380), @@ -204228,7 +204228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4382), [anon_sym_true] = ACTIONS(4384), [anon_sym_false] = ACTIONS(4384), - [anon_sym_none] = ACTIONS(4384), + [anon_sym_null] = ACTIONS(4384), [anon_sym_undefined] = ACTIONS(4384), [sym_sink] = ACTIONS(4384), [sym_integer] = ACTIONS(4384), @@ -204307,7 +204307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4386), [anon_sym_true] = ACTIONS(4388), [anon_sym_false] = ACTIONS(4388), - [anon_sym_none] = ACTIONS(4388), + [anon_sym_null] = ACTIONS(4388), [anon_sym_undefined] = ACTIONS(4388), [sym_sink] = ACTIONS(4388), [sym_integer] = ACTIONS(4388), @@ -204386,7 +204386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4390), [anon_sym_true] = ACTIONS(4392), [anon_sym_false] = ACTIONS(4392), - [anon_sym_none] = ACTIONS(4392), + [anon_sym_null] = ACTIONS(4392), [anon_sym_undefined] = ACTIONS(4392), [sym_sink] = ACTIONS(4392), [sym_integer] = ACTIONS(4392), @@ -204465,7 +204465,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4394), [anon_sym_true] = ACTIONS(4396), [anon_sym_false] = ACTIONS(4396), - [anon_sym_none] = ACTIONS(4396), + [anon_sym_null] = ACTIONS(4396), [anon_sym_undefined] = ACTIONS(4396), [sym_sink] = ACTIONS(4396), [sym_integer] = ACTIONS(4396), @@ -204544,7 +204544,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4398), [anon_sym_true] = ACTIONS(4400), [anon_sym_false] = ACTIONS(4400), - [anon_sym_none] = ACTIONS(4400), + [anon_sym_null] = ACTIONS(4400), [anon_sym_undefined] = ACTIONS(4400), [sym_sink] = ACTIONS(4400), [sym_integer] = ACTIONS(4400), @@ -204623,7 +204623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4402), [anon_sym_true] = ACTIONS(4404), [anon_sym_false] = ACTIONS(4404), - [anon_sym_none] = ACTIONS(4404), + [anon_sym_null] = ACTIONS(4404), [anon_sym_undefined] = ACTIONS(4404), [sym_sink] = ACTIONS(4404), [sym_integer] = ACTIONS(4404), @@ -204702,7 +204702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4406), [anon_sym_true] = ACTIONS(4408), [anon_sym_false] = ACTIONS(4408), - [anon_sym_none] = ACTIONS(4408), + [anon_sym_null] = ACTIONS(4408), [anon_sym_undefined] = ACTIONS(4408), [sym_sink] = ACTIONS(4408), [sym_integer] = ACTIONS(4408), @@ -204781,7 +204781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4410), [anon_sym_true] = ACTIONS(4412), [anon_sym_false] = ACTIONS(4412), - [anon_sym_none] = ACTIONS(4412), + [anon_sym_null] = ACTIONS(4412), [anon_sym_undefined] = ACTIONS(4412), [sym_sink] = ACTIONS(4412), [sym_integer] = ACTIONS(4412), @@ -204860,7 +204860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4414), [anon_sym_true] = ACTIONS(4416), [anon_sym_false] = ACTIONS(4416), - [anon_sym_none] = ACTIONS(4416), + [anon_sym_null] = ACTIONS(4416), [anon_sym_undefined] = ACTIONS(4416), [sym_sink] = ACTIONS(4416), [sym_integer] = ACTIONS(4416), @@ -204939,7 +204939,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4418), [anon_sym_true] = ACTIONS(4420), [anon_sym_false] = ACTIONS(4420), - [anon_sym_none] = ACTIONS(4420), + [anon_sym_null] = ACTIONS(4420), [anon_sym_undefined] = ACTIONS(4420), [sym_sink] = ACTIONS(4420), [sym_integer] = ACTIONS(4420), @@ -205018,7 +205018,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4422), [anon_sym_true] = ACTIONS(4424), [anon_sym_false] = ACTIONS(4424), - [anon_sym_none] = ACTIONS(4424), + [anon_sym_null] = ACTIONS(4424), [anon_sym_undefined] = ACTIONS(4424), [sym_sink] = ACTIONS(4424), [sym_integer] = ACTIONS(4424), @@ -205097,7 +205097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4426), [anon_sym_true] = ACTIONS(4428), [anon_sym_false] = ACTIONS(4428), - [anon_sym_none] = ACTIONS(4428), + [anon_sym_null] = ACTIONS(4428), [anon_sym_undefined] = ACTIONS(4428), [sym_sink] = ACTIONS(4428), [sym_integer] = ACTIONS(4428), @@ -205176,7 +205176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4430), [anon_sym_true] = ACTIONS(4432), [anon_sym_false] = ACTIONS(4432), - [anon_sym_none] = ACTIONS(4432), + [anon_sym_null] = ACTIONS(4432), [anon_sym_undefined] = ACTIONS(4432), [sym_sink] = ACTIONS(4432), [sym_integer] = ACTIONS(4432), @@ -205255,7 +205255,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4434), [anon_sym_true] = ACTIONS(4436), [anon_sym_false] = ACTIONS(4436), - [anon_sym_none] = ACTIONS(4436), + [anon_sym_null] = ACTIONS(4436), [anon_sym_undefined] = ACTIONS(4436), [sym_sink] = ACTIONS(4436), [sym_integer] = ACTIONS(4436), @@ -205334,7 +205334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4438), [anon_sym_true] = ACTIONS(4440), [anon_sym_false] = ACTIONS(4440), - [anon_sym_none] = ACTIONS(4440), + [anon_sym_null] = ACTIONS(4440), [anon_sym_undefined] = ACTIONS(4440), [sym_sink] = ACTIONS(4440), [sym_integer] = ACTIONS(4440), @@ -205413,7 +205413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4442), [anon_sym_true] = ACTIONS(4444), [anon_sym_false] = ACTIONS(4444), - [anon_sym_none] = ACTIONS(4444), + [anon_sym_null] = ACTIONS(4444), [anon_sym_undefined] = ACTIONS(4444), [sym_sink] = ACTIONS(4444), [sym_integer] = ACTIONS(4444), @@ -205492,7 +205492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4446), [anon_sym_true] = ACTIONS(4448), [anon_sym_false] = ACTIONS(4448), - [anon_sym_none] = ACTIONS(4448), + [anon_sym_null] = ACTIONS(4448), [anon_sym_undefined] = ACTIONS(4448), [sym_sink] = ACTIONS(4448), [sym_integer] = ACTIONS(4448), @@ -205571,7 +205571,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4450), [anon_sym_true] = ACTIONS(4452), [anon_sym_false] = ACTIONS(4452), - [anon_sym_none] = ACTIONS(4452), + [anon_sym_null] = ACTIONS(4452), [anon_sym_undefined] = ACTIONS(4452), [sym_sink] = ACTIONS(4452), [sym_integer] = ACTIONS(4452), @@ -205650,7 +205650,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4454), [anon_sym_true] = ACTIONS(4456), [anon_sym_false] = ACTIONS(4456), - [anon_sym_none] = ACTIONS(4456), + [anon_sym_null] = ACTIONS(4456), [anon_sym_undefined] = ACTIONS(4456), [sym_sink] = ACTIONS(4456), [sym_integer] = ACTIONS(4456), @@ -205729,7 +205729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4458), [anon_sym_true] = ACTIONS(4460), [anon_sym_false] = ACTIONS(4460), - [anon_sym_none] = ACTIONS(4460), + [anon_sym_null] = ACTIONS(4460), [anon_sym_undefined] = ACTIONS(4460), [sym_sink] = ACTIONS(4460), [sym_integer] = ACTIONS(4460), @@ -205808,7 +205808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4462), [anon_sym_true] = ACTIONS(4464), [anon_sym_false] = ACTIONS(4464), - [anon_sym_none] = ACTIONS(4464), + [anon_sym_null] = ACTIONS(4464), [anon_sym_undefined] = ACTIONS(4464), [sym_sink] = ACTIONS(4464), [sym_integer] = ACTIONS(4464), @@ -205887,7 +205887,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4466), [anon_sym_true] = ACTIONS(4468), [anon_sym_false] = ACTIONS(4468), - [anon_sym_none] = ACTIONS(4468), + [anon_sym_null] = ACTIONS(4468), [anon_sym_undefined] = ACTIONS(4468), [sym_sink] = ACTIONS(4468), [sym_integer] = ACTIONS(4468), @@ -205966,7 +205966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4470), [anon_sym_true] = ACTIONS(4472), [anon_sym_false] = ACTIONS(4472), - [anon_sym_none] = ACTIONS(4472), + [anon_sym_null] = ACTIONS(4472), [anon_sym_undefined] = ACTIONS(4472), [sym_sink] = ACTIONS(4472), [sym_integer] = ACTIONS(4472), @@ -206045,7 +206045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4474), [anon_sym_true] = ACTIONS(4476), [anon_sym_false] = ACTIONS(4476), - [anon_sym_none] = ACTIONS(4476), + [anon_sym_null] = ACTIONS(4476), [anon_sym_undefined] = ACTIONS(4476), [sym_sink] = ACTIONS(4476), [sym_integer] = ACTIONS(4476), @@ -206124,7 +206124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4478), [anon_sym_true] = ACTIONS(4480), [anon_sym_false] = ACTIONS(4480), - [anon_sym_none] = ACTIONS(4480), + [anon_sym_null] = ACTIONS(4480), [anon_sym_undefined] = ACTIONS(4480), [sym_sink] = ACTIONS(4480), [sym_integer] = ACTIONS(4480), @@ -206203,7 +206203,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4482), [anon_sym_true] = ACTIONS(4484), [anon_sym_false] = ACTIONS(4484), - [anon_sym_none] = ACTIONS(4484), + [anon_sym_null] = ACTIONS(4484), [anon_sym_undefined] = ACTIONS(4484), [sym_sink] = ACTIONS(4484), [sym_integer] = ACTIONS(4484), @@ -206282,7 +206282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4486), [anon_sym_true] = ACTIONS(4488), [anon_sym_false] = ACTIONS(4488), - [anon_sym_none] = ACTIONS(4488), + [anon_sym_null] = ACTIONS(4488), [anon_sym_undefined] = ACTIONS(4488), [sym_sink] = ACTIONS(4488), [sym_integer] = ACTIONS(4488), @@ -206361,7 +206361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4490), [anon_sym_true] = ACTIONS(4492), [anon_sym_false] = ACTIONS(4492), - [anon_sym_none] = ACTIONS(4492), + [anon_sym_null] = ACTIONS(4492), [anon_sym_undefined] = ACTIONS(4492), [sym_sink] = ACTIONS(4492), [sym_integer] = ACTIONS(4492), @@ -206440,7 +206440,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4494), [anon_sym_true] = ACTIONS(4496), [anon_sym_false] = ACTIONS(4496), - [anon_sym_none] = ACTIONS(4496), + [anon_sym_null] = ACTIONS(4496), [anon_sym_undefined] = ACTIONS(4496), [sym_sink] = ACTIONS(4496), [sym_integer] = ACTIONS(4496), @@ -206519,7 +206519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4498), [anon_sym_true] = ACTIONS(4500), [anon_sym_false] = ACTIONS(4500), - [anon_sym_none] = ACTIONS(4500), + [anon_sym_null] = ACTIONS(4500), [anon_sym_undefined] = ACTIONS(4500), [sym_sink] = ACTIONS(4500), [sym_integer] = ACTIONS(4500), @@ -206598,7 +206598,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4502), [anon_sym_true] = ACTIONS(4504), [anon_sym_false] = ACTIONS(4504), - [anon_sym_none] = ACTIONS(4504), + [anon_sym_null] = ACTIONS(4504), [anon_sym_undefined] = ACTIONS(4504), [sym_sink] = ACTIONS(4504), [sym_integer] = ACTIONS(4504), @@ -206677,7 +206677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4506), [anon_sym_true] = ACTIONS(4508), [anon_sym_false] = ACTIONS(4508), - [anon_sym_none] = ACTIONS(4508), + [anon_sym_null] = ACTIONS(4508), [anon_sym_undefined] = ACTIONS(4508), [sym_sink] = ACTIONS(4508), [sym_integer] = ACTIONS(4508), @@ -206756,7 +206756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4510), [anon_sym_true] = ACTIONS(4512), [anon_sym_false] = ACTIONS(4512), - [anon_sym_none] = ACTIONS(4512), + [anon_sym_null] = ACTIONS(4512), [anon_sym_undefined] = ACTIONS(4512), [sym_sink] = ACTIONS(4512), [sym_integer] = ACTIONS(4512), @@ -206835,7 +206835,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4514), [anon_sym_true] = ACTIONS(4516), [anon_sym_false] = ACTIONS(4516), - [anon_sym_none] = ACTIONS(4516), + [anon_sym_null] = ACTIONS(4516), [anon_sym_undefined] = ACTIONS(4516), [sym_sink] = ACTIONS(4516), [sym_integer] = ACTIONS(4516), @@ -206914,7 +206914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4518), [anon_sym_true] = ACTIONS(4520), [anon_sym_false] = ACTIONS(4520), - [anon_sym_none] = ACTIONS(4520), + [anon_sym_null] = ACTIONS(4520), [anon_sym_undefined] = ACTIONS(4520), [sym_sink] = ACTIONS(4520), [sym_integer] = ACTIONS(4520), @@ -206993,7 +206993,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4522), [anon_sym_true] = ACTIONS(4524), [anon_sym_false] = ACTIONS(4524), - [anon_sym_none] = ACTIONS(4524), + [anon_sym_null] = ACTIONS(4524), [anon_sym_undefined] = ACTIONS(4524), [sym_sink] = ACTIONS(4524), [sym_integer] = ACTIONS(4524), @@ -207072,7 +207072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4526), [anon_sym_true] = ACTIONS(4528), [anon_sym_false] = ACTIONS(4528), - [anon_sym_none] = ACTIONS(4528), + [anon_sym_null] = ACTIONS(4528), [anon_sym_undefined] = ACTIONS(4528), [sym_sink] = ACTIONS(4528), [sym_integer] = ACTIONS(4528), @@ -207151,7 +207151,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4530), [anon_sym_true] = ACTIONS(4532), [anon_sym_false] = ACTIONS(4532), - [anon_sym_none] = ACTIONS(4532), + [anon_sym_null] = ACTIONS(4532), [anon_sym_undefined] = ACTIONS(4532), [sym_sink] = ACTIONS(4532), [sym_integer] = ACTIONS(4532), @@ -207230,7 +207230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4534), [anon_sym_true] = ACTIONS(4536), [anon_sym_false] = ACTIONS(4536), - [anon_sym_none] = ACTIONS(4536), + [anon_sym_null] = ACTIONS(4536), [anon_sym_undefined] = ACTIONS(4536), [sym_sink] = ACTIONS(4536), [sym_integer] = ACTIONS(4536), @@ -207309,7 +207309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4538), [anon_sym_true] = ACTIONS(4540), [anon_sym_false] = ACTIONS(4540), - [anon_sym_none] = ACTIONS(4540), + [anon_sym_null] = ACTIONS(4540), [anon_sym_undefined] = ACTIONS(4540), [sym_sink] = ACTIONS(4540), [sym_integer] = ACTIONS(4540), @@ -207388,7 +207388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4542), [anon_sym_true] = ACTIONS(4544), [anon_sym_false] = ACTIONS(4544), - [anon_sym_none] = ACTIONS(4544), + [anon_sym_null] = ACTIONS(4544), [anon_sym_undefined] = ACTIONS(4544), [sym_sink] = ACTIONS(4544), [sym_integer] = ACTIONS(4544), @@ -207467,7 +207467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4546), [anon_sym_true] = ACTIONS(4548), [anon_sym_false] = ACTIONS(4548), - [anon_sym_none] = ACTIONS(4548), + [anon_sym_null] = ACTIONS(4548), [anon_sym_undefined] = ACTIONS(4548), [sym_sink] = ACTIONS(4548), [sym_integer] = ACTIONS(4548), @@ -207546,7 +207546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4550), [anon_sym_true] = ACTIONS(4552), [anon_sym_false] = ACTIONS(4552), - [anon_sym_none] = ACTIONS(4552), + [anon_sym_null] = ACTIONS(4552), [anon_sym_undefined] = ACTIONS(4552), [sym_sink] = ACTIONS(4552), [sym_integer] = ACTIONS(4552), @@ -207625,7 +207625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4554), [anon_sym_true] = ACTIONS(4556), [anon_sym_false] = ACTIONS(4556), - [anon_sym_none] = ACTIONS(4556), + [anon_sym_null] = ACTIONS(4556), [anon_sym_undefined] = ACTIONS(4556), [sym_sink] = ACTIONS(4556), [sym_integer] = ACTIONS(4556), @@ -207704,7 +207704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4558), [anon_sym_true] = ACTIONS(4560), [anon_sym_false] = ACTIONS(4560), - [anon_sym_none] = ACTIONS(4560), + [anon_sym_null] = ACTIONS(4560), [anon_sym_undefined] = ACTIONS(4560), [sym_sink] = ACTIONS(4560), [sym_integer] = ACTIONS(4560), @@ -207783,7 +207783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4562), [anon_sym_true] = ACTIONS(4564), [anon_sym_false] = ACTIONS(4564), - [anon_sym_none] = ACTIONS(4564), + [anon_sym_null] = ACTIONS(4564), [anon_sym_undefined] = ACTIONS(4564), [sym_sink] = ACTIONS(4564), [sym_integer] = ACTIONS(4564), @@ -207862,7 +207862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4566), [anon_sym_true] = ACTIONS(4568), [anon_sym_false] = ACTIONS(4568), - [anon_sym_none] = ACTIONS(4568), + [anon_sym_null] = ACTIONS(4568), [anon_sym_undefined] = ACTIONS(4568), [sym_sink] = ACTIONS(4568), [sym_integer] = ACTIONS(4568), @@ -207941,7 +207941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4570), [anon_sym_true] = ACTIONS(4572), [anon_sym_false] = ACTIONS(4572), - [anon_sym_none] = ACTIONS(4572), + [anon_sym_null] = ACTIONS(4572), [anon_sym_undefined] = ACTIONS(4572), [sym_sink] = ACTIONS(4572), [sym_integer] = ACTIONS(4572), @@ -208020,7 +208020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4574), [anon_sym_true] = ACTIONS(4576), [anon_sym_false] = ACTIONS(4576), - [anon_sym_none] = ACTIONS(4576), + [anon_sym_null] = ACTIONS(4576), [anon_sym_undefined] = ACTIONS(4576), [sym_sink] = ACTIONS(4576), [sym_integer] = ACTIONS(4576), @@ -208099,7 +208099,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4578), [anon_sym_true] = ACTIONS(4580), [anon_sym_false] = ACTIONS(4580), - [anon_sym_none] = ACTIONS(4580), + [anon_sym_null] = ACTIONS(4580), [anon_sym_undefined] = ACTIONS(4580), [sym_sink] = ACTIONS(4580), [sym_integer] = ACTIONS(4580), @@ -208178,7 +208178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4582), [anon_sym_true] = ACTIONS(4584), [anon_sym_false] = ACTIONS(4584), - [anon_sym_none] = ACTIONS(4584), + [anon_sym_null] = ACTIONS(4584), [anon_sym_undefined] = ACTIONS(4584), [sym_sink] = ACTIONS(4584), [sym_integer] = ACTIONS(4584), @@ -208257,7 +208257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4586), [anon_sym_true] = ACTIONS(4588), [anon_sym_false] = ACTIONS(4588), - [anon_sym_none] = ACTIONS(4588), + [anon_sym_null] = ACTIONS(4588), [anon_sym_undefined] = ACTIONS(4588), [sym_sink] = ACTIONS(4588), [sym_integer] = ACTIONS(4588), @@ -208336,7 +208336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4590), [anon_sym_true] = ACTIONS(4592), [anon_sym_false] = ACTIONS(4592), - [anon_sym_none] = ACTIONS(4592), + [anon_sym_null] = ACTIONS(4592), [anon_sym_undefined] = ACTIONS(4592), [sym_sink] = ACTIONS(4592), [sym_integer] = ACTIONS(4592), @@ -208415,7 +208415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4594), [anon_sym_true] = ACTIONS(4596), [anon_sym_false] = ACTIONS(4596), - [anon_sym_none] = ACTIONS(4596), + [anon_sym_null] = ACTIONS(4596), [anon_sym_undefined] = ACTIONS(4596), [sym_sink] = ACTIONS(4596), [sym_integer] = ACTIONS(4596), @@ -208494,7 +208494,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4598), [anon_sym_true] = ACTIONS(4600), [anon_sym_false] = ACTIONS(4600), - [anon_sym_none] = ACTIONS(4600), + [anon_sym_null] = ACTIONS(4600), [anon_sym_undefined] = ACTIONS(4600), [sym_sink] = ACTIONS(4600), [sym_integer] = ACTIONS(4600), @@ -208573,7 +208573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4602), [anon_sym_true] = ACTIONS(4604), [anon_sym_false] = ACTIONS(4604), - [anon_sym_none] = ACTIONS(4604), + [anon_sym_null] = ACTIONS(4604), [anon_sym_undefined] = ACTIONS(4604), [sym_sink] = ACTIONS(4604), [sym_integer] = ACTIONS(4604), @@ -208652,7 +208652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4606), [anon_sym_true] = ACTIONS(4608), [anon_sym_false] = ACTIONS(4608), - [anon_sym_none] = ACTIONS(4608), + [anon_sym_null] = ACTIONS(4608), [anon_sym_undefined] = ACTIONS(4608), [sym_sink] = ACTIONS(4608), [sym_integer] = ACTIONS(4608), @@ -208731,7 +208731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4610), [anon_sym_true] = ACTIONS(4612), [anon_sym_false] = ACTIONS(4612), - [anon_sym_none] = ACTIONS(4612), + [anon_sym_null] = ACTIONS(4612), [anon_sym_undefined] = ACTIONS(4612), [sym_sink] = ACTIONS(4612), [sym_integer] = ACTIONS(4612), @@ -208810,7 +208810,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4614), [anon_sym_true] = ACTIONS(4616), [anon_sym_false] = ACTIONS(4616), - [anon_sym_none] = ACTIONS(4616), + [anon_sym_null] = ACTIONS(4616), [anon_sym_undefined] = ACTIONS(4616), [sym_sink] = ACTIONS(4616), [sym_integer] = ACTIONS(4616), @@ -208889,7 +208889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4618), [anon_sym_true] = ACTIONS(4620), [anon_sym_false] = ACTIONS(4620), - [anon_sym_none] = ACTIONS(4620), + [anon_sym_null] = ACTIONS(4620), [anon_sym_undefined] = ACTIONS(4620), [sym_sink] = ACTIONS(4620), [sym_integer] = ACTIONS(4620), @@ -208968,7 +208968,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4622), [anon_sym_true] = ACTIONS(4624), [anon_sym_false] = ACTIONS(4624), - [anon_sym_none] = ACTIONS(4624), + [anon_sym_null] = ACTIONS(4624), [anon_sym_undefined] = ACTIONS(4624), [sym_sink] = ACTIONS(4624), [sym_integer] = ACTIONS(4624), @@ -209047,7 +209047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4626), [anon_sym_true] = ACTIONS(4628), [anon_sym_false] = ACTIONS(4628), - [anon_sym_none] = ACTIONS(4628), + [anon_sym_null] = ACTIONS(4628), [anon_sym_undefined] = ACTIONS(4628), [sym_sink] = ACTIONS(4628), [sym_integer] = ACTIONS(4628), @@ -209126,7 +209126,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4630), [anon_sym_true] = ACTIONS(4632), [anon_sym_false] = ACTIONS(4632), - [anon_sym_none] = ACTIONS(4632), + [anon_sym_null] = ACTIONS(4632), [anon_sym_undefined] = ACTIONS(4632), [sym_sink] = ACTIONS(4632), [sym_integer] = ACTIONS(4632), @@ -209205,7 +209205,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4634), [anon_sym_true] = ACTIONS(4636), [anon_sym_false] = ACTIONS(4636), - [anon_sym_none] = ACTIONS(4636), + [anon_sym_null] = ACTIONS(4636), [anon_sym_undefined] = ACTIONS(4636), [sym_sink] = ACTIONS(4636), [sym_integer] = ACTIONS(4636), @@ -209284,7 +209284,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4638), [anon_sym_true] = ACTIONS(4640), [anon_sym_false] = ACTIONS(4640), - [anon_sym_none] = ACTIONS(4640), + [anon_sym_null] = ACTIONS(4640), [anon_sym_undefined] = ACTIONS(4640), [sym_sink] = ACTIONS(4640), [sym_integer] = ACTIONS(4640), @@ -209363,7 +209363,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4642), [anon_sym_true] = ACTIONS(4644), [anon_sym_false] = ACTIONS(4644), - [anon_sym_none] = ACTIONS(4644), + [anon_sym_null] = ACTIONS(4644), [anon_sym_undefined] = ACTIONS(4644), [sym_sink] = ACTIONS(4644), [sym_integer] = ACTIONS(4644), @@ -209442,7 +209442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4646), [anon_sym_true] = ACTIONS(4648), [anon_sym_false] = ACTIONS(4648), - [anon_sym_none] = ACTIONS(4648), + [anon_sym_null] = ACTIONS(4648), [anon_sym_undefined] = ACTIONS(4648), [sym_sink] = ACTIONS(4648), [sym_integer] = ACTIONS(4648), @@ -209521,7 +209521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4650), [anon_sym_true] = ACTIONS(4652), [anon_sym_false] = ACTIONS(4652), - [anon_sym_none] = ACTIONS(4652), + [anon_sym_null] = ACTIONS(4652), [anon_sym_undefined] = ACTIONS(4652), [sym_sink] = ACTIONS(4652), [sym_integer] = ACTIONS(4652), @@ -209600,7 +209600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4654), [anon_sym_true] = ACTIONS(4656), [anon_sym_false] = ACTIONS(4656), - [anon_sym_none] = ACTIONS(4656), + [anon_sym_null] = ACTIONS(4656), [anon_sym_undefined] = ACTIONS(4656), [sym_sink] = ACTIONS(4656), [sym_integer] = ACTIONS(4656), @@ -209679,7 +209679,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4658), [anon_sym_true] = ACTIONS(4660), [anon_sym_false] = ACTIONS(4660), - [anon_sym_none] = ACTIONS(4660), + [anon_sym_null] = ACTIONS(4660), [anon_sym_undefined] = ACTIONS(4660), [sym_sink] = ACTIONS(4660), [sym_integer] = ACTIONS(4660), @@ -209758,7 +209758,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4662), [anon_sym_true] = ACTIONS(4664), [anon_sym_false] = ACTIONS(4664), - [anon_sym_none] = ACTIONS(4664), + [anon_sym_null] = ACTIONS(4664), [anon_sym_undefined] = ACTIONS(4664), [sym_sink] = ACTIONS(4664), [sym_integer] = ACTIONS(4664), @@ -209837,7 +209837,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4666), [anon_sym_true] = ACTIONS(4668), [anon_sym_false] = ACTIONS(4668), - [anon_sym_none] = ACTIONS(4668), + [anon_sym_null] = ACTIONS(4668), [anon_sym_undefined] = ACTIONS(4668), [sym_sink] = ACTIONS(4668), [sym_integer] = ACTIONS(4668), @@ -209916,7 +209916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4670), [anon_sym_true] = ACTIONS(4672), [anon_sym_false] = ACTIONS(4672), - [anon_sym_none] = ACTIONS(4672), + [anon_sym_null] = ACTIONS(4672), [anon_sym_undefined] = ACTIONS(4672), [sym_sink] = ACTIONS(4672), [sym_integer] = ACTIONS(4672), @@ -209995,7 +209995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4674), [anon_sym_true] = ACTIONS(4676), [anon_sym_false] = ACTIONS(4676), - [anon_sym_none] = ACTIONS(4676), + [anon_sym_null] = ACTIONS(4676), [anon_sym_undefined] = ACTIONS(4676), [sym_sink] = ACTIONS(4676), [sym_integer] = ACTIONS(4676), @@ -210074,7 +210074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4678), [anon_sym_true] = ACTIONS(4680), [anon_sym_false] = ACTIONS(4680), - [anon_sym_none] = ACTIONS(4680), + [anon_sym_null] = ACTIONS(4680), [anon_sym_undefined] = ACTIONS(4680), [sym_sink] = ACTIONS(4680), [sym_integer] = ACTIONS(4680), @@ -210153,7 +210153,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4682), [anon_sym_true] = ACTIONS(4684), [anon_sym_false] = ACTIONS(4684), - [anon_sym_none] = ACTIONS(4684), + [anon_sym_null] = ACTIONS(4684), [anon_sym_undefined] = ACTIONS(4684), [sym_sink] = ACTIONS(4684), [sym_integer] = ACTIONS(4684), @@ -210232,7 +210232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4686), [anon_sym_true] = ACTIONS(4688), [anon_sym_false] = ACTIONS(4688), - [anon_sym_none] = ACTIONS(4688), + [anon_sym_null] = ACTIONS(4688), [anon_sym_undefined] = ACTIONS(4688), [sym_sink] = ACTIONS(4688), [sym_integer] = ACTIONS(4688), @@ -210311,7 +210311,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4690), [anon_sym_true] = ACTIONS(4692), [anon_sym_false] = ACTIONS(4692), - [anon_sym_none] = ACTIONS(4692), + [anon_sym_null] = ACTIONS(4692), [anon_sym_undefined] = ACTIONS(4692), [sym_sink] = ACTIONS(4692), [sym_integer] = ACTIONS(4692), @@ -210390,7 +210390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4694), [anon_sym_true] = ACTIONS(4696), [anon_sym_false] = ACTIONS(4696), - [anon_sym_none] = ACTIONS(4696), + [anon_sym_null] = ACTIONS(4696), [anon_sym_undefined] = ACTIONS(4696), [sym_sink] = ACTIONS(4696), [sym_integer] = ACTIONS(4696), @@ -210469,7 +210469,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4698), [anon_sym_true] = ACTIONS(4700), [anon_sym_false] = ACTIONS(4700), - [anon_sym_none] = ACTIONS(4700), + [anon_sym_null] = ACTIONS(4700), [anon_sym_undefined] = ACTIONS(4700), [sym_sink] = ACTIONS(4700), [sym_integer] = ACTIONS(4700), @@ -210548,7 +210548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4702), [anon_sym_true] = ACTIONS(4704), [anon_sym_false] = ACTIONS(4704), - [anon_sym_none] = ACTIONS(4704), + [anon_sym_null] = ACTIONS(4704), [anon_sym_undefined] = ACTIONS(4704), [sym_sink] = ACTIONS(4704), [sym_integer] = ACTIONS(4704), @@ -210627,7 +210627,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4706), [anon_sym_true] = ACTIONS(4708), [anon_sym_false] = ACTIONS(4708), - [anon_sym_none] = ACTIONS(4708), + [anon_sym_null] = ACTIONS(4708), [anon_sym_undefined] = ACTIONS(4708), [sym_sink] = ACTIONS(4708), [sym_integer] = ACTIONS(4708), @@ -210706,7 +210706,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4710), [anon_sym_true] = ACTIONS(4712), [anon_sym_false] = ACTIONS(4712), - [anon_sym_none] = ACTIONS(4712), + [anon_sym_null] = ACTIONS(4712), [anon_sym_undefined] = ACTIONS(4712), [sym_sink] = ACTIONS(4712), [sym_integer] = ACTIONS(4712), @@ -210785,7 +210785,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4714), [anon_sym_true] = ACTIONS(4716), [anon_sym_false] = ACTIONS(4716), - [anon_sym_none] = ACTIONS(4716), + [anon_sym_null] = ACTIONS(4716), [anon_sym_undefined] = ACTIONS(4716), [sym_sink] = ACTIONS(4716), [sym_integer] = ACTIONS(4716), @@ -210864,7 +210864,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4718), [anon_sym_true] = ACTIONS(4720), [anon_sym_false] = ACTIONS(4720), - [anon_sym_none] = ACTIONS(4720), + [anon_sym_null] = ACTIONS(4720), [anon_sym_undefined] = ACTIONS(4720), [sym_sink] = ACTIONS(4720), [sym_integer] = ACTIONS(4720), @@ -210943,7 +210943,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4722), [anon_sym_true] = ACTIONS(4724), [anon_sym_false] = ACTIONS(4724), - [anon_sym_none] = ACTIONS(4724), + [anon_sym_null] = ACTIONS(4724), [anon_sym_undefined] = ACTIONS(4724), [sym_sink] = ACTIONS(4724), [sym_integer] = ACTIONS(4724), @@ -211022,7 +211022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4726), [anon_sym_true] = ACTIONS(4728), [anon_sym_false] = ACTIONS(4728), - [anon_sym_none] = ACTIONS(4728), + [anon_sym_null] = ACTIONS(4728), [anon_sym_undefined] = ACTIONS(4728), [sym_sink] = ACTIONS(4728), [sym_integer] = ACTIONS(4728), @@ -211101,7 +211101,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4730), [anon_sym_true] = ACTIONS(4732), [anon_sym_false] = ACTIONS(4732), - [anon_sym_none] = ACTIONS(4732), + [anon_sym_null] = ACTIONS(4732), [anon_sym_undefined] = ACTIONS(4732), [sym_sink] = ACTIONS(4732), [sym_integer] = ACTIONS(4732), @@ -211180,7 +211180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4734), [anon_sym_true] = ACTIONS(4736), [anon_sym_false] = ACTIONS(4736), - [anon_sym_none] = ACTIONS(4736), + [anon_sym_null] = ACTIONS(4736), [anon_sym_undefined] = ACTIONS(4736), [sym_sink] = ACTIONS(4736), [sym_integer] = ACTIONS(4736), @@ -211259,7 +211259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4738), [anon_sym_true] = ACTIONS(4740), [anon_sym_false] = ACTIONS(4740), - [anon_sym_none] = ACTIONS(4740), + [anon_sym_null] = ACTIONS(4740), [anon_sym_undefined] = ACTIONS(4740), [sym_sink] = ACTIONS(4740), [sym_integer] = ACTIONS(4740), @@ -211338,7 +211338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4742), [anon_sym_true] = ACTIONS(4744), [anon_sym_false] = ACTIONS(4744), - [anon_sym_none] = ACTIONS(4744), + [anon_sym_null] = ACTIONS(4744), [anon_sym_undefined] = ACTIONS(4744), [sym_sink] = ACTIONS(4744), [sym_integer] = ACTIONS(4744), @@ -211417,7 +211417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4746), [anon_sym_true] = ACTIONS(4748), [anon_sym_false] = ACTIONS(4748), - [anon_sym_none] = ACTIONS(4748), + [anon_sym_null] = ACTIONS(4748), [anon_sym_undefined] = ACTIONS(4748), [sym_sink] = ACTIONS(4748), [sym_integer] = ACTIONS(4748), @@ -211496,7 +211496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4750), [anon_sym_true] = ACTIONS(4752), [anon_sym_false] = ACTIONS(4752), - [anon_sym_none] = ACTIONS(4752), + [anon_sym_null] = ACTIONS(4752), [anon_sym_undefined] = ACTIONS(4752), [sym_sink] = ACTIONS(4752), [sym_integer] = ACTIONS(4752), @@ -211575,7 +211575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4754), [anon_sym_true] = ACTIONS(4756), [anon_sym_false] = ACTIONS(4756), - [anon_sym_none] = ACTIONS(4756), + [anon_sym_null] = ACTIONS(4756), [anon_sym_undefined] = ACTIONS(4756), [sym_sink] = ACTIONS(4756), [sym_integer] = ACTIONS(4756), @@ -211654,7 +211654,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4758), [anon_sym_true] = ACTIONS(4760), [anon_sym_false] = ACTIONS(4760), - [anon_sym_none] = ACTIONS(4760), + [anon_sym_null] = ACTIONS(4760), [anon_sym_undefined] = ACTIONS(4760), [sym_sink] = ACTIONS(4760), [sym_integer] = ACTIONS(4760), @@ -211733,7 +211733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4762), [anon_sym_true] = ACTIONS(4764), [anon_sym_false] = ACTIONS(4764), - [anon_sym_none] = ACTIONS(4764), + [anon_sym_null] = ACTIONS(4764), [anon_sym_undefined] = ACTIONS(4764), [sym_sink] = ACTIONS(4764), [sym_integer] = ACTIONS(4764), @@ -211812,7 +211812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4766), [anon_sym_true] = ACTIONS(4768), [anon_sym_false] = ACTIONS(4768), - [anon_sym_none] = ACTIONS(4768), + [anon_sym_null] = ACTIONS(4768), [anon_sym_undefined] = ACTIONS(4768), [sym_sink] = ACTIONS(4768), [sym_integer] = ACTIONS(4768), @@ -211891,7 +211891,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4770), [anon_sym_true] = ACTIONS(4772), [anon_sym_false] = ACTIONS(4772), - [anon_sym_none] = ACTIONS(4772), + [anon_sym_null] = ACTIONS(4772), [anon_sym_undefined] = ACTIONS(4772), [sym_sink] = ACTIONS(4772), [sym_integer] = ACTIONS(4772), @@ -211970,7 +211970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4774), [anon_sym_true] = ACTIONS(4776), [anon_sym_false] = ACTIONS(4776), - [anon_sym_none] = ACTIONS(4776), + [anon_sym_null] = ACTIONS(4776), [anon_sym_undefined] = ACTIONS(4776), [sym_sink] = ACTIONS(4776), [sym_integer] = ACTIONS(4776), @@ -212049,7 +212049,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4778), [anon_sym_true] = ACTIONS(4780), [anon_sym_false] = ACTIONS(4780), - [anon_sym_none] = ACTIONS(4780), + [anon_sym_null] = ACTIONS(4780), [anon_sym_undefined] = ACTIONS(4780), [sym_sink] = ACTIONS(4780), [sym_integer] = ACTIONS(4780), @@ -212128,7 +212128,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4782), [anon_sym_true] = ACTIONS(4784), [anon_sym_false] = ACTIONS(4784), - [anon_sym_none] = ACTIONS(4784), + [anon_sym_null] = ACTIONS(4784), [anon_sym_undefined] = ACTIONS(4784), [sym_sink] = ACTIONS(4784), [sym_integer] = ACTIONS(4784), @@ -212207,7 +212207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4786), [anon_sym_true] = ACTIONS(4788), [anon_sym_false] = ACTIONS(4788), - [anon_sym_none] = ACTIONS(4788), + [anon_sym_null] = ACTIONS(4788), [anon_sym_undefined] = ACTIONS(4788), [sym_sink] = ACTIONS(4788), [sym_integer] = ACTIONS(4788), @@ -212286,7 +212286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4790), [anon_sym_true] = ACTIONS(4792), [anon_sym_false] = ACTIONS(4792), - [anon_sym_none] = ACTIONS(4792), + [anon_sym_null] = ACTIONS(4792), [anon_sym_undefined] = ACTIONS(4792), [sym_sink] = ACTIONS(4792), [sym_integer] = ACTIONS(4792), @@ -212365,7 +212365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4794), [anon_sym_true] = ACTIONS(4796), [anon_sym_false] = ACTIONS(4796), - [anon_sym_none] = ACTIONS(4796), + [anon_sym_null] = ACTIONS(4796), [anon_sym_undefined] = ACTIONS(4796), [sym_sink] = ACTIONS(4796), [sym_integer] = ACTIONS(4796), @@ -212444,7 +212444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4798), [anon_sym_true] = ACTIONS(4800), [anon_sym_false] = ACTIONS(4800), - [anon_sym_none] = ACTIONS(4800), + [anon_sym_null] = ACTIONS(4800), [anon_sym_undefined] = ACTIONS(4800), [sym_sink] = ACTIONS(4800), [sym_integer] = ACTIONS(4800), @@ -212523,7 +212523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4802), [anon_sym_true] = ACTIONS(4804), [anon_sym_false] = ACTIONS(4804), - [anon_sym_none] = ACTIONS(4804), + [anon_sym_null] = ACTIONS(4804), [anon_sym_undefined] = ACTIONS(4804), [sym_sink] = ACTIONS(4804), [sym_integer] = ACTIONS(4804), @@ -212602,7 +212602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4806), [anon_sym_true] = ACTIONS(4808), [anon_sym_false] = ACTIONS(4808), - [anon_sym_none] = ACTIONS(4808), + [anon_sym_null] = ACTIONS(4808), [anon_sym_undefined] = ACTIONS(4808), [sym_sink] = ACTIONS(4808), [sym_integer] = ACTIONS(4808), @@ -212681,7 +212681,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4810), [anon_sym_true] = ACTIONS(4812), [anon_sym_false] = ACTIONS(4812), - [anon_sym_none] = ACTIONS(4812), + [anon_sym_null] = ACTIONS(4812), [anon_sym_undefined] = ACTIONS(4812), [sym_sink] = ACTIONS(4812), [sym_integer] = ACTIONS(4812), @@ -212760,7 +212760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4814), [anon_sym_true] = ACTIONS(4816), [anon_sym_false] = ACTIONS(4816), - [anon_sym_none] = ACTIONS(4816), + [anon_sym_null] = ACTIONS(4816), [anon_sym_undefined] = ACTIONS(4816), [sym_sink] = ACTIONS(4816), [sym_integer] = ACTIONS(4816), @@ -212839,7 +212839,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4818), [anon_sym_true] = ACTIONS(4820), [anon_sym_false] = ACTIONS(4820), - [anon_sym_none] = ACTIONS(4820), + [anon_sym_null] = ACTIONS(4820), [anon_sym_undefined] = ACTIONS(4820), [sym_sink] = ACTIONS(4820), [sym_integer] = ACTIONS(4820), @@ -212918,7 +212918,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4822), [anon_sym_true] = ACTIONS(4824), [anon_sym_false] = ACTIONS(4824), - [anon_sym_none] = ACTIONS(4824), + [anon_sym_null] = ACTIONS(4824), [anon_sym_undefined] = ACTIONS(4824), [sym_sink] = ACTIONS(4824), [sym_integer] = ACTIONS(4824), @@ -212997,7 +212997,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4826), [anon_sym_true] = ACTIONS(4828), [anon_sym_false] = ACTIONS(4828), - [anon_sym_none] = ACTIONS(4828), + [anon_sym_null] = ACTIONS(4828), [anon_sym_undefined] = ACTIONS(4828), [sym_sink] = ACTIONS(4828), [sym_integer] = ACTIONS(4828), @@ -213076,7 +213076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4830), [anon_sym_true] = ACTIONS(4832), [anon_sym_false] = ACTIONS(4832), - [anon_sym_none] = ACTIONS(4832), + [anon_sym_null] = ACTIONS(4832), [anon_sym_undefined] = ACTIONS(4832), [sym_sink] = ACTIONS(4832), [sym_integer] = ACTIONS(4832), @@ -213155,7 +213155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4834), [anon_sym_true] = ACTIONS(4836), [anon_sym_false] = ACTIONS(4836), - [anon_sym_none] = ACTIONS(4836), + [anon_sym_null] = ACTIONS(4836), [anon_sym_undefined] = ACTIONS(4836), [sym_sink] = ACTIONS(4836), [sym_integer] = ACTIONS(4836), @@ -213234,7 +213234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4838), [anon_sym_true] = ACTIONS(4840), [anon_sym_false] = ACTIONS(4840), - [anon_sym_none] = ACTIONS(4840), + [anon_sym_null] = ACTIONS(4840), [anon_sym_undefined] = ACTIONS(4840), [sym_sink] = ACTIONS(4840), [sym_integer] = ACTIONS(4840), @@ -213313,7 +213313,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4842), [anon_sym_true] = ACTIONS(4844), [anon_sym_false] = ACTIONS(4844), - [anon_sym_none] = ACTIONS(4844), + [anon_sym_null] = ACTIONS(4844), [anon_sym_undefined] = ACTIONS(4844), [sym_sink] = ACTIONS(4844), [sym_integer] = ACTIONS(4844), @@ -213392,7 +213392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4846), [anon_sym_true] = ACTIONS(4848), [anon_sym_false] = ACTIONS(4848), - [anon_sym_none] = ACTIONS(4848), + [anon_sym_null] = ACTIONS(4848), [anon_sym_undefined] = ACTIONS(4848), [sym_sink] = ACTIONS(4848), [sym_integer] = ACTIONS(4848), @@ -213471,7 +213471,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4850), [anon_sym_true] = ACTIONS(4852), [anon_sym_false] = ACTIONS(4852), - [anon_sym_none] = ACTIONS(4852), + [anon_sym_null] = ACTIONS(4852), [anon_sym_undefined] = ACTIONS(4852), [sym_sink] = ACTIONS(4852), [sym_integer] = ACTIONS(4852), @@ -213550,7 +213550,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4854), [anon_sym_true] = ACTIONS(4856), [anon_sym_false] = ACTIONS(4856), - [anon_sym_none] = ACTIONS(4856), + [anon_sym_null] = ACTIONS(4856), [anon_sym_undefined] = ACTIONS(4856), [sym_sink] = ACTIONS(4856), [sym_integer] = ACTIONS(4856), @@ -213629,7 +213629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4858), [anon_sym_true] = ACTIONS(4860), [anon_sym_false] = ACTIONS(4860), - [anon_sym_none] = ACTIONS(4860), + [anon_sym_null] = ACTIONS(4860), [anon_sym_undefined] = ACTIONS(4860), [sym_sink] = ACTIONS(4860), [sym_integer] = ACTIONS(4860), @@ -213708,7 +213708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4862), [anon_sym_true] = ACTIONS(4864), [anon_sym_false] = ACTIONS(4864), - [anon_sym_none] = ACTIONS(4864), + [anon_sym_null] = ACTIONS(4864), [anon_sym_undefined] = ACTIONS(4864), [sym_sink] = ACTIONS(4864), [sym_integer] = ACTIONS(4864), @@ -213787,7 +213787,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4866), [anon_sym_true] = ACTIONS(4868), [anon_sym_false] = ACTIONS(4868), - [anon_sym_none] = ACTIONS(4868), + [anon_sym_null] = ACTIONS(4868), [anon_sym_undefined] = ACTIONS(4868), [sym_sink] = ACTIONS(4868), [sym_integer] = ACTIONS(4868), @@ -213866,7 +213866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4870), [anon_sym_true] = ACTIONS(4872), [anon_sym_false] = ACTIONS(4872), - [anon_sym_none] = ACTIONS(4872), + [anon_sym_null] = ACTIONS(4872), [anon_sym_undefined] = ACTIONS(4872), [sym_sink] = ACTIONS(4872), [sym_integer] = ACTIONS(4872), @@ -213945,7 +213945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4874), [anon_sym_true] = ACTIONS(4876), [anon_sym_false] = ACTIONS(4876), - [anon_sym_none] = ACTIONS(4876), + [anon_sym_null] = ACTIONS(4876), [anon_sym_undefined] = ACTIONS(4876), [sym_sink] = ACTIONS(4876), [sym_integer] = ACTIONS(4876), @@ -214024,7 +214024,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4878), [anon_sym_true] = ACTIONS(4880), [anon_sym_false] = ACTIONS(4880), - [anon_sym_none] = ACTIONS(4880), + [anon_sym_null] = ACTIONS(4880), [anon_sym_undefined] = ACTIONS(4880), [sym_sink] = ACTIONS(4880), [sym_integer] = ACTIONS(4880), @@ -214103,7 +214103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4882), [anon_sym_true] = ACTIONS(4884), [anon_sym_false] = ACTIONS(4884), - [anon_sym_none] = ACTIONS(4884), + [anon_sym_null] = ACTIONS(4884), [anon_sym_undefined] = ACTIONS(4884), [sym_sink] = ACTIONS(4884), [sym_integer] = ACTIONS(4884), @@ -214182,7 +214182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4886), [anon_sym_true] = ACTIONS(4888), [anon_sym_false] = ACTIONS(4888), - [anon_sym_none] = ACTIONS(4888), + [anon_sym_null] = ACTIONS(4888), [anon_sym_undefined] = ACTIONS(4888), [sym_sink] = ACTIONS(4888), [sym_integer] = ACTIONS(4888), @@ -214261,7 +214261,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4890), [anon_sym_true] = ACTIONS(4892), [anon_sym_false] = ACTIONS(4892), - [anon_sym_none] = ACTIONS(4892), + [anon_sym_null] = ACTIONS(4892), [anon_sym_undefined] = ACTIONS(4892), [sym_sink] = ACTIONS(4892), [sym_integer] = ACTIONS(4892), @@ -214340,7 +214340,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4894), [anon_sym_true] = ACTIONS(4896), [anon_sym_false] = ACTIONS(4896), - [anon_sym_none] = ACTIONS(4896), + [anon_sym_null] = ACTIONS(4896), [anon_sym_undefined] = ACTIONS(4896), [sym_sink] = ACTIONS(4896), [sym_integer] = ACTIONS(4896), @@ -214419,7 +214419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4898), [anon_sym_true] = ACTIONS(4900), [anon_sym_false] = ACTIONS(4900), - [anon_sym_none] = ACTIONS(4900), + [anon_sym_null] = ACTIONS(4900), [anon_sym_undefined] = ACTIONS(4900), [sym_sink] = ACTIONS(4900), [sym_integer] = ACTIONS(4900), @@ -214498,7 +214498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1948), [anon_sym_true] = ACTIONS(1950), [anon_sym_false] = ACTIONS(1950), - [anon_sym_none] = ACTIONS(1950), + [anon_sym_null] = ACTIONS(1950), [anon_sym_undefined] = ACTIONS(1950), [sym_sink] = ACTIONS(1950), [sym_integer] = ACTIONS(1950), @@ -214577,7 +214577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4902), [anon_sym_true] = ACTIONS(4904), [anon_sym_false] = ACTIONS(4904), - [anon_sym_none] = ACTIONS(4904), + [anon_sym_null] = ACTIONS(4904), [anon_sym_undefined] = ACTIONS(4904), [sym_sink] = ACTIONS(4904), [sym_integer] = ACTIONS(4904), @@ -214656,7 +214656,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4906), [anon_sym_true] = ACTIONS(4908), [anon_sym_false] = ACTIONS(4908), - [anon_sym_none] = ACTIONS(4908), + [anon_sym_null] = ACTIONS(4908), [anon_sym_undefined] = ACTIONS(4908), [sym_sink] = ACTIONS(4908), [sym_integer] = ACTIONS(4908), @@ -214735,7 +214735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4910), [anon_sym_true] = ACTIONS(4912), [anon_sym_false] = ACTIONS(4912), - [anon_sym_none] = ACTIONS(4912), + [anon_sym_null] = ACTIONS(4912), [anon_sym_undefined] = ACTIONS(4912), [sym_sink] = ACTIONS(4912), [sym_integer] = ACTIONS(4912), @@ -214814,7 +214814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4914), [anon_sym_true] = ACTIONS(4916), [anon_sym_false] = ACTIONS(4916), - [anon_sym_none] = ACTIONS(4916), + [anon_sym_null] = ACTIONS(4916), [anon_sym_undefined] = ACTIONS(4916), [sym_sink] = ACTIONS(4916), [sym_integer] = ACTIONS(4916), @@ -214893,7 +214893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4918), [anon_sym_true] = ACTIONS(4920), [anon_sym_false] = ACTIONS(4920), - [anon_sym_none] = ACTIONS(4920), + [anon_sym_null] = ACTIONS(4920), [anon_sym_undefined] = ACTIONS(4920), [sym_sink] = ACTIONS(4920), [sym_integer] = ACTIONS(4920), @@ -214972,7 +214972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4922), [anon_sym_true] = ACTIONS(4924), [anon_sym_false] = ACTIONS(4924), - [anon_sym_none] = ACTIONS(4924), + [anon_sym_null] = ACTIONS(4924), [anon_sym_undefined] = ACTIONS(4924), [sym_sink] = ACTIONS(4924), [sym_integer] = ACTIONS(4924), @@ -215051,7 +215051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1940), [anon_sym_true] = ACTIONS(1942), [anon_sym_false] = ACTIONS(1942), - [anon_sym_none] = ACTIONS(1942), + [anon_sym_null] = ACTIONS(1942), [anon_sym_undefined] = ACTIONS(1942), [sym_sink] = ACTIONS(1942), [sym_integer] = ACTIONS(1942), @@ -215130,7 +215130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4926), [anon_sym_true] = ACTIONS(4928), [anon_sym_false] = ACTIONS(4928), - [anon_sym_none] = ACTIONS(4928), + [anon_sym_null] = ACTIONS(4928), [anon_sym_undefined] = ACTIONS(4928), [sym_sink] = ACTIONS(4928), [sym_integer] = ACTIONS(4928), @@ -215209,7 +215209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4930), [anon_sym_true] = ACTIONS(4932), [anon_sym_false] = ACTIONS(4932), - [anon_sym_none] = ACTIONS(4932), + [anon_sym_null] = ACTIONS(4932), [anon_sym_undefined] = ACTIONS(4932), [sym_sink] = ACTIONS(4932), [sym_integer] = ACTIONS(4932), @@ -215288,7 +215288,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4934), [anon_sym_true] = ACTIONS(4936), [anon_sym_false] = ACTIONS(4936), - [anon_sym_none] = ACTIONS(4936), + [anon_sym_null] = ACTIONS(4936), [anon_sym_undefined] = ACTIONS(4936), [sym_sink] = ACTIONS(4936), [sym_integer] = ACTIONS(4936), @@ -215367,7 +215367,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4938), [anon_sym_true] = ACTIONS(4940), [anon_sym_false] = ACTIONS(4940), - [anon_sym_none] = ACTIONS(4940), + [anon_sym_null] = ACTIONS(4940), [anon_sym_undefined] = ACTIONS(4940), [sym_sink] = ACTIONS(4940), [sym_integer] = ACTIONS(4940), @@ -215446,7 +215446,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4942), [anon_sym_true] = ACTIONS(4944), [anon_sym_false] = ACTIONS(4944), - [anon_sym_none] = ACTIONS(4944), + [anon_sym_null] = ACTIONS(4944), [anon_sym_undefined] = ACTIONS(4944), [sym_sink] = ACTIONS(4944), [sym_integer] = ACTIONS(4944), @@ -215525,7 +215525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4946), [anon_sym_true] = ACTIONS(4948), [anon_sym_false] = ACTIONS(4948), - [anon_sym_none] = ACTIONS(4948), + [anon_sym_null] = ACTIONS(4948), [anon_sym_undefined] = ACTIONS(4948), [sym_sink] = ACTIONS(4948), [sym_integer] = ACTIONS(4948), @@ -215604,7 +215604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4950), [anon_sym_true] = ACTIONS(4952), [anon_sym_false] = ACTIONS(4952), - [anon_sym_none] = ACTIONS(4952), + [anon_sym_null] = ACTIONS(4952), [anon_sym_undefined] = ACTIONS(4952), [sym_sink] = ACTIONS(4952), [sym_integer] = ACTIONS(4952), @@ -215683,7 +215683,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4954), [anon_sym_true] = ACTIONS(4956), [anon_sym_false] = ACTIONS(4956), - [anon_sym_none] = ACTIONS(4956), + [anon_sym_null] = ACTIONS(4956), [anon_sym_undefined] = ACTIONS(4956), [sym_sink] = ACTIONS(4956), [sym_integer] = ACTIONS(4956), @@ -215762,7 +215762,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4958), [anon_sym_true] = ACTIONS(4960), [anon_sym_false] = ACTIONS(4960), - [anon_sym_none] = ACTIONS(4960), + [anon_sym_null] = ACTIONS(4960), [anon_sym_undefined] = ACTIONS(4960), [sym_sink] = ACTIONS(4960), [sym_integer] = ACTIONS(4960), @@ -215841,7 +215841,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4962), [anon_sym_true] = ACTIONS(4964), [anon_sym_false] = ACTIONS(4964), - [anon_sym_none] = ACTIONS(4964), + [anon_sym_null] = ACTIONS(4964), [anon_sym_undefined] = ACTIONS(4964), [sym_sink] = ACTIONS(4964), [sym_integer] = ACTIONS(4964), @@ -215920,7 +215920,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4966), [anon_sym_true] = ACTIONS(4968), [anon_sym_false] = ACTIONS(4968), - [anon_sym_none] = ACTIONS(4968), + [anon_sym_null] = ACTIONS(4968), [anon_sym_undefined] = ACTIONS(4968), [sym_sink] = ACTIONS(4968), [sym_integer] = ACTIONS(4968), @@ -215999,7 +215999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4970), [anon_sym_true] = ACTIONS(4972), [anon_sym_false] = ACTIONS(4972), - [anon_sym_none] = ACTIONS(4972), + [anon_sym_null] = ACTIONS(4972), [anon_sym_undefined] = ACTIONS(4972), [sym_sink] = ACTIONS(4972), [sym_integer] = ACTIONS(4972), @@ -216078,7 +216078,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4974), [anon_sym_true] = ACTIONS(4976), [anon_sym_false] = ACTIONS(4976), - [anon_sym_none] = ACTIONS(4976), + [anon_sym_null] = ACTIONS(4976), [anon_sym_undefined] = ACTIONS(4976), [sym_sink] = ACTIONS(4976), [sym_integer] = ACTIONS(4976), @@ -216157,7 +216157,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4978), [anon_sym_true] = ACTIONS(4980), [anon_sym_false] = ACTIONS(4980), - [anon_sym_none] = ACTIONS(4980), + [anon_sym_null] = ACTIONS(4980), [anon_sym_undefined] = ACTIONS(4980), [sym_sink] = ACTIONS(4980), [sym_integer] = ACTIONS(4980), @@ -216236,7 +216236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4982), [anon_sym_true] = ACTIONS(4984), [anon_sym_false] = ACTIONS(4984), - [anon_sym_none] = ACTIONS(4984), + [anon_sym_null] = ACTIONS(4984), [anon_sym_undefined] = ACTIONS(4984), [sym_sink] = ACTIONS(4984), [sym_integer] = ACTIONS(4984), @@ -216315,7 +216315,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4986), [anon_sym_true] = ACTIONS(4988), [anon_sym_false] = ACTIONS(4988), - [anon_sym_none] = ACTIONS(4988), + [anon_sym_null] = ACTIONS(4988), [anon_sym_undefined] = ACTIONS(4988), [sym_sink] = ACTIONS(4988), [sym_integer] = ACTIONS(4988), @@ -216394,7 +216394,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4990), [anon_sym_true] = ACTIONS(4992), [anon_sym_false] = ACTIONS(4992), - [anon_sym_none] = ACTIONS(4992), + [anon_sym_null] = ACTIONS(4992), [anon_sym_undefined] = ACTIONS(4992), [sym_sink] = ACTIONS(4992), [sym_integer] = ACTIONS(4992), @@ -216473,7 +216473,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4994), [anon_sym_true] = ACTIONS(4996), [anon_sym_false] = ACTIONS(4996), - [anon_sym_none] = ACTIONS(4996), + [anon_sym_null] = ACTIONS(4996), [anon_sym_undefined] = ACTIONS(4996), [sym_sink] = ACTIONS(4996), [sym_integer] = ACTIONS(4996), @@ -216552,7 +216552,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4998), [anon_sym_true] = ACTIONS(5000), [anon_sym_false] = ACTIONS(5000), - [anon_sym_none] = ACTIONS(5000), + [anon_sym_null] = ACTIONS(5000), [anon_sym_undefined] = ACTIONS(5000), [sym_sink] = ACTIONS(5000), [sym_integer] = ACTIONS(5000), @@ -216631,7 +216631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5002), [anon_sym_true] = ACTIONS(5004), [anon_sym_false] = ACTIONS(5004), - [anon_sym_none] = ACTIONS(5004), + [anon_sym_null] = ACTIONS(5004), [anon_sym_undefined] = ACTIONS(5004), [sym_sink] = ACTIONS(5004), [sym_integer] = ACTIONS(5004), @@ -216710,7 +216710,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5006), [anon_sym_true] = ACTIONS(5008), [anon_sym_false] = ACTIONS(5008), - [anon_sym_none] = ACTIONS(5008), + [anon_sym_null] = ACTIONS(5008), [anon_sym_undefined] = ACTIONS(5008), [sym_sink] = ACTIONS(5008), [sym_integer] = ACTIONS(5008), @@ -216789,7 +216789,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5010), [anon_sym_true] = ACTIONS(5012), [anon_sym_false] = ACTIONS(5012), - [anon_sym_none] = ACTIONS(5012), + [anon_sym_null] = ACTIONS(5012), [anon_sym_undefined] = ACTIONS(5012), [sym_sink] = ACTIONS(5012), [sym_integer] = ACTIONS(5012), @@ -216868,7 +216868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5014), [anon_sym_true] = ACTIONS(5016), [anon_sym_false] = ACTIONS(5016), - [anon_sym_none] = ACTIONS(5016), + [anon_sym_null] = ACTIONS(5016), [anon_sym_undefined] = ACTIONS(5016), [sym_sink] = ACTIONS(5016), [sym_integer] = ACTIONS(5016), @@ -216947,7 +216947,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5018), [anon_sym_true] = ACTIONS(5020), [anon_sym_false] = ACTIONS(5020), - [anon_sym_none] = ACTIONS(5020), + [anon_sym_null] = ACTIONS(5020), [anon_sym_undefined] = ACTIONS(5020), [sym_sink] = ACTIONS(5020), [sym_integer] = ACTIONS(5020), @@ -217026,7 +217026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5022), [anon_sym_true] = ACTIONS(5024), [anon_sym_false] = ACTIONS(5024), - [anon_sym_none] = ACTIONS(5024), + [anon_sym_null] = ACTIONS(5024), [anon_sym_undefined] = ACTIONS(5024), [sym_sink] = ACTIONS(5024), [sym_integer] = ACTIONS(5024), @@ -217105,7 +217105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5026), [anon_sym_true] = ACTIONS(5028), [anon_sym_false] = ACTIONS(5028), - [anon_sym_none] = ACTIONS(5028), + [anon_sym_null] = ACTIONS(5028), [anon_sym_undefined] = ACTIONS(5028), [sym_sink] = ACTIONS(5028), [sym_integer] = ACTIONS(5028), @@ -217184,7 +217184,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5030), [anon_sym_true] = ACTIONS(5032), [anon_sym_false] = ACTIONS(5032), - [anon_sym_none] = ACTIONS(5032), + [anon_sym_null] = ACTIONS(5032), [anon_sym_undefined] = ACTIONS(5032), [sym_sink] = ACTIONS(5032), [sym_integer] = ACTIONS(5032), @@ -217263,7 +217263,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5034), [anon_sym_true] = ACTIONS(5036), [anon_sym_false] = ACTIONS(5036), - [anon_sym_none] = ACTIONS(5036), + [anon_sym_null] = ACTIONS(5036), [anon_sym_undefined] = ACTIONS(5036), [sym_sink] = ACTIONS(5036), [sym_integer] = ACTIONS(5036), @@ -217342,7 +217342,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5038), [anon_sym_true] = ACTIONS(5040), [anon_sym_false] = ACTIONS(5040), - [anon_sym_none] = ACTIONS(5040), + [anon_sym_null] = ACTIONS(5040), [anon_sym_undefined] = ACTIONS(5040), [sym_sink] = ACTIONS(5040), [sym_integer] = ACTIONS(5040), @@ -217421,7 +217421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5042), [anon_sym_true] = ACTIONS(5044), [anon_sym_false] = ACTIONS(5044), - [anon_sym_none] = ACTIONS(5044), + [anon_sym_null] = ACTIONS(5044), [anon_sym_undefined] = ACTIONS(5044), [sym_sink] = ACTIONS(5044), [sym_integer] = ACTIONS(5044), @@ -217500,7 +217500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5046), [anon_sym_true] = ACTIONS(5048), [anon_sym_false] = ACTIONS(5048), - [anon_sym_none] = ACTIONS(5048), + [anon_sym_null] = ACTIONS(5048), [anon_sym_undefined] = ACTIONS(5048), [sym_sink] = ACTIONS(5048), [sym_integer] = ACTIONS(5048), @@ -217579,7 +217579,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5050), [anon_sym_true] = ACTIONS(5052), [anon_sym_false] = ACTIONS(5052), - [anon_sym_none] = ACTIONS(5052), + [anon_sym_null] = ACTIONS(5052), [anon_sym_undefined] = ACTIONS(5052), [sym_sink] = ACTIONS(5052), [sym_integer] = ACTIONS(5052), @@ -217658,7 +217658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5054), [anon_sym_true] = ACTIONS(5056), [anon_sym_false] = ACTIONS(5056), - [anon_sym_none] = ACTIONS(5056), + [anon_sym_null] = ACTIONS(5056), [anon_sym_undefined] = ACTIONS(5056), [sym_sink] = ACTIONS(5056), [sym_integer] = ACTIONS(5056), @@ -217737,7 +217737,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5058), [anon_sym_true] = ACTIONS(5060), [anon_sym_false] = ACTIONS(5060), - [anon_sym_none] = ACTIONS(5060), + [anon_sym_null] = ACTIONS(5060), [anon_sym_undefined] = ACTIONS(5060), [sym_sink] = ACTIONS(5060), [sym_integer] = ACTIONS(5060), @@ -217816,7 +217816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5062), [anon_sym_true] = ACTIONS(5064), [anon_sym_false] = ACTIONS(5064), - [anon_sym_none] = ACTIONS(5064), + [anon_sym_null] = ACTIONS(5064), [anon_sym_undefined] = ACTIONS(5064), [sym_sink] = ACTIONS(5064), [sym_integer] = ACTIONS(5064), @@ -217895,7 +217895,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5066), [anon_sym_true] = ACTIONS(5068), [anon_sym_false] = ACTIONS(5068), - [anon_sym_none] = ACTIONS(5068), + [anon_sym_null] = ACTIONS(5068), [anon_sym_undefined] = ACTIONS(5068), [sym_sink] = ACTIONS(5068), [sym_integer] = ACTIONS(5068), @@ -217974,7 +217974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5070), [anon_sym_true] = ACTIONS(5072), [anon_sym_false] = ACTIONS(5072), - [anon_sym_none] = ACTIONS(5072), + [anon_sym_null] = ACTIONS(5072), [anon_sym_undefined] = ACTIONS(5072), [sym_sink] = ACTIONS(5072), [sym_integer] = ACTIONS(5072), @@ -218053,7 +218053,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5074), [anon_sym_true] = ACTIONS(5076), [anon_sym_false] = ACTIONS(5076), - [anon_sym_none] = ACTIONS(5076), + [anon_sym_null] = ACTIONS(5076), [anon_sym_undefined] = ACTIONS(5076), [sym_sink] = ACTIONS(5076), [sym_integer] = ACTIONS(5076), @@ -218132,7 +218132,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5078), [anon_sym_true] = ACTIONS(5080), [anon_sym_false] = ACTIONS(5080), - [anon_sym_none] = ACTIONS(5080), + [anon_sym_null] = ACTIONS(5080), [anon_sym_undefined] = ACTIONS(5080), [sym_sink] = ACTIONS(5080), [sym_integer] = ACTIONS(5080), @@ -218211,7 +218211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5082), [anon_sym_true] = ACTIONS(5084), [anon_sym_false] = ACTIONS(5084), - [anon_sym_none] = ACTIONS(5084), + [anon_sym_null] = ACTIONS(5084), [anon_sym_undefined] = ACTIONS(5084), [sym_sink] = ACTIONS(5084), [sym_integer] = ACTIONS(5084), @@ -218290,7 +218290,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5086), [anon_sym_true] = ACTIONS(5088), [anon_sym_false] = ACTIONS(5088), - [anon_sym_none] = ACTIONS(5088), + [anon_sym_null] = ACTIONS(5088), [anon_sym_undefined] = ACTIONS(5088), [sym_sink] = ACTIONS(5088), [sym_integer] = ACTIONS(5088), @@ -218369,7 +218369,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5090), [anon_sym_true] = ACTIONS(5092), [anon_sym_false] = ACTIONS(5092), - [anon_sym_none] = ACTIONS(5092), + [anon_sym_null] = ACTIONS(5092), [anon_sym_undefined] = ACTIONS(5092), [sym_sink] = ACTIONS(5092), [sym_integer] = ACTIONS(5092), @@ -218448,7 +218448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5094), [anon_sym_true] = ACTIONS(5096), [anon_sym_false] = ACTIONS(5096), - [anon_sym_none] = ACTIONS(5096), + [anon_sym_null] = ACTIONS(5096), [anon_sym_undefined] = ACTIONS(5096), [sym_sink] = ACTIONS(5096), [sym_integer] = ACTIONS(5096), @@ -218527,7 +218527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5098), [anon_sym_true] = ACTIONS(5100), [anon_sym_false] = ACTIONS(5100), - [anon_sym_none] = ACTIONS(5100), + [anon_sym_null] = ACTIONS(5100), [anon_sym_undefined] = ACTIONS(5100), [sym_sink] = ACTIONS(5100), [sym_integer] = ACTIONS(5100), @@ -218606,7 +218606,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5102), [anon_sym_true] = ACTIONS(5104), [anon_sym_false] = ACTIONS(5104), - [anon_sym_none] = ACTIONS(5104), + [anon_sym_null] = ACTIONS(5104), [anon_sym_undefined] = ACTIONS(5104), [sym_sink] = ACTIONS(5104), [sym_integer] = ACTIONS(5104), @@ -218685,7 +218685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5106), [anon_sym_true] = ACTIONS(5108), [anon_sym_false] = ACTIONS(5108), - [anon_sym_none] = ACTIONS(5108), + [anon_sym_null] = ACTIONS(5108), [anon_sym_undefined] = ACTIONS(5108), [sym_sink] = ACTIONS(5108), [sym_integer] = ACTIONS(5108), @@ -218764,7 +218764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5110), [anon_sym_true] = ACTIONS(5112), [anon_sym_false] = ACTIONS(5112), - [anon_sym_none] = ACTIONS(5112), + [anon_sym_null] = ACTIONS(5112), [anon_sym_undefined] = ACTIONS(5112), [sym_sink] = ACTIONS(5112), [sym_integer] = ACTIONS(5112), @@ -218843,7 +218843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5114), [anon_sym_true] = ACTIONS(5116), [anon_sym_false] = ACTIONS(5116), - [anon_sym_none] = ACTIONS(5116), + [anon_sym_null] = ACTIONS(5116), [anon_sym_undefined] = ACTIONS(5116), [sym_sink] = ACTIONS(5116), [sym_integer] = ACTIONS(5116), @@ -218922,7 +218922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5118), [anon_sym_true] = ACTIONS(5120), [anon_sym_false] = ACTIONS(5120), - [anon_sym_none] = ACTIONS(5120), + [anon_sym_null] = ACTIONS(5120), [anon_sym_undefined] = ACTIONS(5120), [sym_sink] = ACTIONS(5120), [sym_integer] = ACTIONS(5120), @@ -219001,7 +219001,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5122), [anon_sym_true] = ACTIONS(5124), [anon_sym_false] = ACTIONS(5124), - [anon_sym_none] = ACTIONS(5124), + [anon_sym_null] = ACTIONS(5124), [anon_sym_undefined] = ACTIONS(5124), [sym_sink] = ACTIONS(5124), [sym_integer] = ACTIONS(5124), @@ -219080,7 +219080,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5126), [anon_sym_true] = ACTIONS(5128), [anon_sym_false] = ACTIONS(5128), - [anon_sym_none] = ACTIONS(5128), + [anon_sym_null] = ACTIONS(5128), [anon_sym_undefined] = ACTIONS(5128), [sym_sink] = ACTIONS(5128), [sym_integer] = ACTIONS(5128), @@ -219159,7 +219159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5130), [anon_sym_true] = ACTIONS(5132), [anon_sym_false] = ACTIONS(5132), - [anon_sym_none] = ACTIONS(5132), + [anon_sym_null] = ACTIONS(5132), [anon_sym_undefined] = ACTIONS(5132), [sym_sink] = ACTIONS(5132), [sym_integer] = ACTIONS(5132), @@ -219238,7 +219238,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5134), [anon_sym_true] = ACTIONS(5136), [anon_sym_false] = ACTIONS(5136), - [anon_sym_none] = ACTIONS(5136), + [anon_sym_null] = ACTIONS(5136), [anon_sym_undefined] = ACTIONS(5136), [sym_sink] = ACTIONS(5136), [sym_integer] = ACTIONS(5136), @@ -219317,7 +219317,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5138), [anon_sym_true] = ACTIONS(5140), [anon_sym_false] = ACTIONS(5140), - [anon_sym_none] = ACTIONS(5140), + [anon_sym_null] = ACTIONS(5140), [anon_sym_undefined] = ACTIONS(5140), [sym_sink] = ACTIONS(5140), [sym_integer] = ACTIONS(5140), @@ -219396,7 +219396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5142), [anon_sym_true] = ACTIONS(5144), [anon_sym_false] = ACTIONS(5144), - [anon_sym_none] = ACTIONS(5144), + [anon_sym_null] = ACTIONS(5144), [anon_sym_undefined] = ACTIONS(5144), [sym_sink] = ACTIONS(5144), [sym_integer] = ACTIONS(5144), @@ -219475,7 +219475,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5146), [anon_sym_true] = ACTIONS(5148), [anon_sym_false] = ACTIONS(5148), - [anon_sym_none] = ACTIONS(5148), + [anon_sym_null] = ACTIONS(5148), [anon_sym_undefined] = ACTIONS(5148), [sym_sink] = ACTIONS(5148), [sym_integer] = ACTIONS(5148), @@ -219554,7 +219554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5150), [anon_sym_true] = ACTIONS(5152), [anon_sym_false] = ACTIONS(5152), - [anon_sym_none] = ACTIONS(5152), + [anon_sym_null] = ACTIONS(5152), [anon_sym_undefined] = ACTIONS(5152), [sym_sink] = ACTIONS(5152), [sym_integer] = ACTIONS(5152), @@ -219633,7 +219633,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5154), [anon_sym_true] = ACTIONS(5156), [anon_sym_false] = ACTIONS(5156), - [anon_sym_none] = ACTIONS(5156), + [anon_sym_null] = ACTIONS(5156), [anon_sym_undefined] = ACTIONS(5156), [sym_sink] = ACTIONS(5156), [sym_integer] = ACTIONS(5156), @@ -219712,7 +219712,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5158), [anon_sym_true] = ACTIONS(5160), [anon_sym_false] = ACTIONS(5160), - [anon_sym_none] = ACTIONS(5160), + [anon_sym_null] = ACTIONS(5160), [anon_sym_undefined] = ACTIONS(5160), [sym_sink] = ACTIONS(5160), [sym_integer] = ACTIONS(5160), @@ -219791,7 +219791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5162), [anon_sym_true] = ACTIONS(5164), [anon_sym_false] = ACTIONS(5164), - [anon_sym_none] = ACTIONS(5164), + [anon_sym_null] = ACTIONS(5164), [anon_sym_undefined] = ACTIONS(5164), [sym_sink] = ACTIONS(5164), [sym_integer] = ACTIONS(5164), @@ -219870,7 +219870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5166), [anon_sym_true] = ACTIONS(5168), [anon_sym_false] = ACTIONS(5168), - [anon_sym_none] = ACTIONS(5168), + [anon_sym_null] = ACTIONS(5168), [anon_sym_undefined] = ACTIONS(5168), [sym_sink] = ACTIONS(5168), [sym_integer] = ACTIONS(5168), @@ -219949,7 +219949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5170), [anon_sym_true] = ACTIONS(5172), [anon_sym_false] = ACTIONS(5172), - [anon_sym_none] = ACTIONS(5172), + [anon_sym_null] = ACTIONS(5172), [anon_sym_undefined] = ACTIONS(5172), [sym_sink] = ACTIONS(5172), [sym_integer] = ACTIONS(5172), @@ -220028,7 +220028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5174), [anon_sym_true] = ACTIONS(5176), [anon_sym_false] = ACTIONS(5176), - [anon_sym_none] = ACTIONS(5176), + [anon_sym_null] = ACTIONS(5176), [anon_sym_undefined] = ACTIONS(5176), [sym_sink] = ACTIONS(5176), [sym_integer] = ACTIONS(5176), @@ -220107,7 +220107,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5178), [anon_sym_true] = ACTIONS(5180), [anon_sym_false] = ACTIONS(5180), - [anon_sym_none] = ACTIONS(5180), + [anon_sym_null] = ACTIONS(5180), [anon_sym_undefined] = ACTIONS(5180), [sym_sink] = ACTIONS(5180), [sym_integer] = ACTIONS(5180), @@ -220186,7 +220186,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5182), [anon_sym_true] = ACTIONS(5184), [anon_sym_false] = ACTIONS(5184), - [anon_sym_none] = ACTIONS(5184), + [anon_sym_null] = ACTIONS(5184), [anon_sym_undefined] = ACTIONS(5184), [sym_sink] = ACTIONS(5184), [sym_integer] = ACTIONS(5184), @@ -220265,7 +220265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5186), [anon_sym_true] = ACTIONS(5188), [anon_sym_false] = ACTIONS(5188), - [anon_sym_none] = ACTIONS(5188), + [anon_sym_null] = ACTIONS(5188), [anon_sym_undefined] = ACTIONS(5188), [sym_sink] = ACTIONS(5188), [sym_integer] = ACTIONS(5188), @@ -220344,7 +220344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5190), [anon_sym_true] = ACTIONS(5192), [anon_sym_false] = ACTIONS(5192), - [anon_sym_none] = ACTIONS(5192), + [anon_sym_null] = ACTIONS(5192), [anon_sym_undefined] = ACTIONS(5192), [sym_sink] = ACTIONS(5192), [sym_integer] = ACTIONS(5192), @@ -220428,7 +220428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5198), @@ -220506,7 +220506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -220584,7 +220584,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -220662,7 +220662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5202), @@ -220740,7 +220740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -220818,7 +220818,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5206), @@ -220896,7 +220896,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5208), @@ -220974,7 +220974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -221052,7 +221052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -221130,7 +221130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -221208,7 +221208,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5214), @@ -221286,7 +221286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5216), @@ -221364,7 +221364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -221442,7 +221442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -221520,7 +221520,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5220), @@ -221598,7 +221598,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -221676,7 +221676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -221754,7 +221754,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5226), @@ -221832,7 +221832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5228), @@ -221910,7 +221910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5232), @@ -221988,7 +221988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -222066,7 +222066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5236), @@ -222144,7 +222144,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5238), @@ -222222,7 +222222,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -222300,7 +222300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -222378,7 +222378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5242), @@ -222456,7 +222456,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5244), @@ -222534,7 +222534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5248), @@ -222612,7 +222612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -222690,7 +222690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -222768,7 +222768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5252), @@ -222846,7 +222846,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -222924,7 +222924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -223002,7 +223002,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5256), @@ -223080,7 +223080,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -223158,7 +223158,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5260), @@ -223236,7 +223236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5262), @@ -223314,7 +223314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5264), @@ -223392,7 +223392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -223470,7 +223470,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -223548,7 +223548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -223626,7 +223626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5270), @@ -223704,7 +223704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5272), @@ -223782,7 +223782,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5276), @@ -223860,7 +223860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -223938,7 +223938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -224016,7 +224016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5280), @@ -224094,7 +224094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -224172,7 +224172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5286), @@ -224250,7 +224250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -224328,7 +224328,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5292), @@ -224406,7 +224406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -224484,7 +224484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5296), @@ -224562,7 +224562,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5298), @@ -224640,7 +224640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -224718,7 +224718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5300), @@ -224796,7 +224796,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5304), @@ -224874,7 +224874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -224952,7 +224952,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -225030,7 +225030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5308), @@ -225108,7 +225108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5310), @@ -225186,7 +225186,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5314), @@ -225264,7 +225264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -225342,7 +225342,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -225420,7 +225420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -225498,7 +225498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -225576,7 +225576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5320), @@ -225654,7 +225654,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -225732,7 +225732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5324), @@ -225810,7 +225810,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5326), @@ -225888,7 +225888,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -225966,7 +225966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5328), @@ -226044,7 +226044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -226122,7 +226122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -226200,7 +226200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -226278,7 +226278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5334), @@ -226356,7 +226356,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5336), @@ -226434,7 +226434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -226512,7 +226512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -226590,7 +226590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -226668,7 +226668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5342), @@ -226746,7 +226746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -226824,7 +226824,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5346), @@ -226902,7 +226902,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5350), @@ -226980,7 +226980,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -227058,7 +227058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -227136,7 +227136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5354), @@ -227214,7 +227214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5356), @@ -227292,7 +227292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -227370,7 +227370,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -227448,7 +227448,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -227526,7 +227526,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -227604,7 +227604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5362), @@ -227682,7 +227682,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5366), @@ -227760,7 +227760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5368), @@ -227838,7 +227838,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -227916,7 +227916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -227994,7 +227994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5372), @@ -228072,7 +228072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -228150,7 +228150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5376), @@ -228228,7 +228228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5380), @@ -228306,7 +228306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -228384,7 +228384,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -228462,7 +228462,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5384), @@ -228540,7 +228540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5386), @@ -228618,7 +228618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -228696,7 +228696,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5390), @@ -228774,7 +228774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5394), @@ -228852,7 +228852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -228930,7 +228930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -229008,7 +229008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5398), @@ -229086,7 +229086,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5400), @@ -229164,7 +229164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5404), @@ -229242,7 +229242,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -229320,7 +229320,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5408), @@ -229398,7 +229398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5410), @@ -229476,7 +229476,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -229554,7 +229554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -229632,7 +229632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5414), @@ -229710,7 +229710,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -229788,7 +229788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -229866,7 +229866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5420), @@ -229944,7 +229944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5422), @@ -230022,7 +230022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -230100,7 +230100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -230178,7 +230178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -230256,7 +230256,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5428), @@ -230334,7 +230334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5430), @@ -230412,7 +230412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -230490,7 +230490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -230568,7 +230568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -230646,7 +230646,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5436), @@ -230724,7 +230724,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5438), @@ -230802,7 +230802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5440), @@ -230880,7 +230880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5442), @@ -230958,7 +230958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -231036,7 +231036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -231114,7 +231114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5448), @@ -231192,7 +231192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5450), @@ -231270,7 +231270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5454), @@ -231348,7 +231348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -231426,7 +231426,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -231504,7 +231504,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -231582,7 +231582,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5458), @@ -231659,7 +231659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5460), @@ -231736,7 +231736,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -231813,7 +231813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(5462), @@ -231890,7 +231890,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_try] = ACTIONS(263), [anon_sym_true] = ACTIONS(263), [anon_sym_false] = ACTIONS(263), - [anon_sym_none] = ACTIONS(263), + [anon_sym_null] = ACTIONS(263), [anon_sym_undefined] = ACTIONS(263), [sym_comment] = ACTIONS(3), [sym__newline] = ACTIONS(582), @@ -232034,7 +232034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5468), [anon_sym_true] = ACTIONS(5466), [anon_sym_false] = ACTIONS(5466), - [anon_sym_none] = ACTIONS(5466), + [anon_sym_null] = ACTIONS(5466), [anon_sym_undefined] = ACTIONS(5466), [sym_sink] = ACTIONS(5466), [sym_integer] = ACTIONS(5466), @@ -232109,7 +232109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5477), [anon_sym_true] = ACTIONS(5475), [anon_sym_false] = ACTIONS(5475), - [anon_sym_none] = ACTIONS(5475), + [anon_sym_null] = ACTIONS(5475), [anon_sym_undefined] = ACTIONS(5475), [sym_sink] = ACTIONS(5475), [sym_integer] = ACTIONS(5475), @@ -232259,7 +232259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4134), [anon_sym_true] = ACTIONS(4136), [anon_sym_false] = ACTIONS(4136), - [anon_sym_none] = ACTIONS(4136), + [anon_sym_null] = ACTIONS(4136), [anon_sym_undefined] = ACTIONS(4136), [sym_sink] = ACTIONS(4136), [sym_integer] = ACTIONS(4136), @@ -232334,7 +232334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5486), [anon_sym_true] = ACTIONS(5484), [anon_sym_false] = ACTIONS(5484), - [anon_sym_none] = ACTIONS(5484), + [anon_sym_null] = ACTIONS(5484), [anon_sym_undefined] = ACTIONS(5484), [sym_sink] = ACTIONS(5484), [sym_integer] = ACTIONS(5484), @@ -232409,7 +232409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5495), [anon_sym_true] = ACTIONS(5493), [anon_sym_false] = ACTIONS(5493), - [anon_sym_none] = ACTIONS(5493), + [anon_sym_null] = ACTIONS(5493), [anon_sym_undefined] = ACTIONS(5493), [sym_sink] = ACTIONS(5493), [sym_integer] = ACTIONS(5493), @@ -232559,7 +232559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5505), [anon_sym_true] = ACTIONS(5503), [anon_sym_false] = ACTIONS(5503), - [anon_sym_none] = ACTIONS(5503), + [anon_sym_null] = ACTIONS(5503), [anon_sym_undefined] = ACTIONS(5503), [sym_sink] = ACTIONS(5503), [sym_integer] = ACTIONS(5503), @@ -232634,7 +232634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(4140), [anon_sym_true] = ACTIONS(4142), [anon_sym_false] = ACTIONS(4142), - [anon_sym_none] = ACTIONS(4142), + [anon_sym_null] = ACTIONS(4142), [anon_sym_undefined] = ACTIONS(4142), [sym_sink] = ACTIONS(4142), [sym_integer] = ACTIONS(4142), @@ -232784,7 +232784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5495), [anon_sym_true] = ACTIONS(5493), [anon_sym_false] = ACTIONS(5493), - [anon_sym_none] = ACTIONS(5493), + [anon_sym_null] = ACTIONS(5493), [anon_sym_undefined] = ACTIONS(5493), [sym_sink] = ACTIONS(5493), [sym_integer] = ACTIONS(5493), @@ -232859,7 +232859,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5486), [anon_sym_true] = ACTIONS(5484), [anon_sym_false] = ACTIONS(5484), - [anon_sym_none] = ACTIONS(5484), + [anon_sym_null] = ACTIONS(5484), [anon_sym_undefined] = ACTIONS(5484), [sym_sink] = ACTIONS(5484), [sym_integer] = ACTIONS(5484), @@ -232934,7 +232934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5505), [anon_sym_true] = ACTIONS(5503), [anon_sym_false] = ACTIONS(5503), - [anon_sym_none] = ACTIONS(5503), + [anon_sym_null] = ACTIONS(5503), [anon_sym_undefined] = ACTIONS(5503), [sym_sink] = ACTIONS(5503), [sym_integer] = ACTIONS(5503), @@ -233084,7 +233084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5477), [anon_sym_true] = ACTIONS(5475), [anon_sym_false] = ACTIONS(5475), - [anon_sym_none] = ACTIONS(5475), + [anon_sym_null] = ACTIONS(5475), [anon_sym_undefined] = ACTIONS(5475), [sym_sink] = ACTIONS(5475), [sym_integer] = ACTIONS(5475), @@ -233234,7 +233234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5468), [anon_sym_true] = ACTIONS(5466), [anon_sym_false] = ACTIONS(5466), - [anon_sym_none] = ACTIONS(5466), + [anon_sym_null] = ACTIONS(5466), [anon_sym_undefined] = ACTIONS(5466), [sym_sink] = ACTIONS(5466), [sym_integer] = ACTIONS(5466), @@ -233309,7 +233309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5550), [anon_sym_true] = ACTIONS(5548), [anon_sym_false] = ACTIONS(5548), - [anon_sym_none] = ACTIONS(5548), + [anon_sym_null] = ACTIONS(5548), [anon_sym_undefined] = ACTIONS(5548), [sym_sink] = ACTIONS(5548), [sym_integer] = ACTIONS(5548), @@ -233384,7 +233384,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5550), [anon_sym_true] = ACTIONS(5548), [anon_sym_false] = ACTIONS(5548), - [anon_sym_none] = ACTIONS(5548), + [anon_sym_null] = ACTIONS(5548), [anon_sym_undefined] = ACTIONS(5548), [sym_sink] = ACTIONS(5548), [sym_integer] = ACTIONS(5548), @@ -245656,7 +245656,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5613), [anon_sym_true] = ACTIONS(5611), [anon_sym_false] = ACTIONS(5611), - [anon_sym_none] = ACTIONS(5611), + [anon_sym_null] = ACTIONS(5611), [anon_sym_undefined] = ACTIONS(5611), [sym_sink] = ACTIONS(5611), [sym_integer] = ACTIONS(5611), @@ -245728,7 +245728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5617), [anon_sym_true] = ACTIONS(5615), [anon_sym_false] = ACTIONS(5615), - [anon_sym_none] = ACTIONS(5615), + [anon_sym_null] = ACTIONS(5615), [anon_sym_undefined] = ACTIONS(5615), [sym_sink] = ACTIONS(5615), [sym_integer] = ACTIONS(5615), @@ -245800,7 +245800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(5621), [anon_sym_true] = ACTIONS(5619), [anon_sym_false] = ACTIONS(5619), - [anon_sym_none] = ACTIONS(5619), + [anon_sym_null] = ACTIONS(5619), [anon_sym_undefined] = ACTIONS(5619), [sym_sink] = ACTIONS(5619), [sym_integer] = ACTIONS(5619), @@ -245880,7 +245880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_true, anon_sym_false, - anon_sym_none, + anon_sym_null, anon_sym_undefined, sym_sink, sym_identifier, @@ -245950,7 +245950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_true, anon_sym_false, - anon_sym_none, + anon_sym_null, anon_sym_undefined, sym_sink, sym_identifier, @@ -246021,7 +246021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_true, anon_sym_false, - anon_sym_none, + anon_sym_null, anon_sym_undefined, sym_sink, sym_identifier, @@ -246091,7 +246091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_true, anon_sym_false, - anon_sym_none, + anon_sym_null, anon_sym_undefined, sym_sink, sym_identifier, @@ -246161,7 +246161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_true, anon_sym_false, - anon_sym_none, + anon_sym_null, anon_sym_undefined, sym_sink, sym_identifier, @@ -246231,7 +246231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_true, anon_sym_false, - anon_sym_none, + anon_sym_null, anon_sym_undefined, sym_sink, sym_identifier, @@ -246301,7 +246301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_true, anon_sym_false, - anon_sym_none, + anon_sym_null, anon_sym_undefined, sym_sink, sym_identifier, @@ -246371,7 +246371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_true, anon_sym_false, - anon_sym_none, + anon_sym_null, anon_sym_undefined, sym_sink, sym_identifier, @@ -246441,7 +246441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_true, anon_sym_false, - anon_sym_none, + anon_sym_null, anon_sym_undefined, sym_sink, sym_identifier, @@ -246511,7 +246511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_true, anon_sym_false, - anon_sym_none, + anon_sym_null, anon_sym_undefined, sym_sink, sym_identifier, @@ -246581,7 +246581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_true, anon_sym_false, - anon_sym_none, + anon_sym_null, anon_sym_undefined, sym_sink, sym_identifier, @@ -246651,7 +246651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_true, anon_sym_false, - anon_sym_none, + anon_sym_null, anon_sym_undefined, sym_sink, sym_identifier, @@ -246721,7 +246721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_true, anon_sym_false, - anon_sym_none, + anon_sym_null, anon_sym_undefined, sym_sink, sym_identifier, @@ -246791,7 +246791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_true, anon_sym_false, - anon_sym_none, + anon_sym_null, anon_sym_undefined, sym_sink, sym_identifier, @@ -246861,7 +246861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_true, anon_sym_false, - anon_sym_none, + anon_sym_null, anon_sym_undefined, sym_sink, sym_identifier, @@ -246931,7 +246931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_true, anon_sym_false, - anon_sym_none, + anon_sym_null, anon_sym_undefined, sym_sink, sym_identifier, @@ -247001,7 +247001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_true, anon_sym_false, - anon_sym_none, + anon_sym_null, anon_sym_undefined, sym_sink, sym_identifier, @@ -247071,7 +247071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_true, anon_sym_false, - anon_sym_none, + anon_sym_null, anon_sym_undefined, sym_sink, sym_identifier, @@ -247137,7 +247137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_true, anon_sym_false, - anon_sym_none, + anon_sym_null, anon_sym_undefined, sym_sink, sym_identifier, @@ -247203,7 +247203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_true, anon_sym_false, - anon_sym_none, + anon_sym_null, anon_sym_undefined, sym_sink, sym_identifier, @@ -247269,7 +247269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_true, anon_sym_false, - anon_sym_none, + anon_sym_null, anon_sym_undefined, sym_sink, sym_identifier, @@ -247335,7 +247335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_true, anon_sym_false, - anon_sym_none, + anon_sym_null, anon_sym_undefined, sym_sink, sym_identifier, @@ -247479,7 +247479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_true, anon_sym_false, - anon_sym_none, + anon_sym_null, anon_sym_undefined, sym_sink, sym_identifier, @@ -247545,7 +247545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_true, anon_sym_false, - anon_sym_none, + anon_sym_null, anon_sym_undefined, sym_sink, sym_identifier, @@ -247611,7 +247611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_true, anon_sym_false, - anon_sym_none, + anon_sym_null, anon_sym_undefined, sym_sink, sym_identifier, @@ -247677,7 +247677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_try, anon_sym_true, anon_sym_false, - anon_sym_none, + anon_sym_null, anon_sym_undefined, sym_sink, sym_identifier, @@ -341840,8 +341840,8 @@ static const TSParseActionEntry ts_parse_actions[] = { [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1, 0, 0), [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1, 0, 0), - [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_none, 1, 0, 0), - [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_none, 1, 0, 0), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), + [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undefined, 1, 0, 0), [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undefined, 1, 0, 0), [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), diff --git a/tree-sitter-brolang/test/corpus/syntax.txt b/tree-sitter-brolang/test/corpus/syntax.txt index 76e3ef1..b66e2d3 100644 --- a/tree-sitter-brolang/test/corpus/syntax.txt +++ b/tree-sitter-brolang/test/corpus/syntax.txt @@ -211,7 +211,7 @@ main func() void { Intrinsic type construction ================== -Generated :: alias struct_type!(.auto, {"value"}, {i32}, {none}) +Generated :: alias struct_type!(.auto, {"value"}, {i32}, {null}) --- @@ -238,7 +238,7 @@ Generated :: alias struct_type!(.auto, {"value"}, {i32}, {none}) (expression (tuple_literal (expression - (none)))))))))) + (null)))))))))) ================== Errdefer diff --git a/tree-sitter-brolang/test/highlight/types.bro b/tree-sitter-brolang/test/highlight/types.bro index eee3d8f..3df803a 100644 --- a/tree-sitter-brolang/test/highlight/types.bro +++ b/tree-sitter-brolang/test/highlight/types.bro @@ -20,5 +20,5 @@ clear func($K, $V type) void { # ^ operator } -Generated :: alias struct_type!(.auto, {"value"}, {i32}, {none}) +Generated :: alias struct_type!(.auto, {"value"}, {i32}, {null}) # ^^^^^^^^^^^^ function.builtin