From ef91f13e7b3de1c512faec3a5436fe36bd8232b6 Mon Sep 17 00:00:00 2001 From: hl-valdemar Date: Sat, 18 Jul 2026 00:12:59 +0200 Subject: [PATCH] unsigned integer constraint (uint) --- LANGUAGE.md | 9 +- TODO.md | 6 + compiler/checker/checker.odin | 132 +- compiler/lexer/lexer.odin | 1 + compiler/parser/parser.odin | 7 +- compiler/token/token.odin | 1 + compiler/types/types.odin | 24 +- compiler_tests.odin | 189 +- extension.toml | 2 +- tree-sitter-brolang/grammar.js | 2 +- tree-sitter-brolang/src/grammar.json | 4 + tree-sitter-brolang/src/node-types.json | 4 + tree-sitter-brolang/src/parser.c | 7067 ++++++++++------- tree-sitter-brolang/test/corpus/syntax.txt | 16 + .../test/highlight/intrinsics.bro | 3 + 15 files changed, 4618 insertions(+), 2849 deletions(-) diff --git a/LANGUAGE.md b/LANGUAGE.md index 134420e..977b41d 100644 --- a/LANGUAGE.md +++ b/LANGUAGE.md @@ -24,7 +24,7 @@ roadmap and milestone history. ### scalar, aggregate, and pointer types -- exact-width integers, `isize`, `usize`, `f32`, `f64`, `bool`, `void`, `anyopaque`, and contextual `int`, `float`, and `range` constraints +- exact-width integers, concrete pointer-sized `isize` / `usize`, `f32`, `f64`, `bool`, `void`, and `anyopaque`; contextual `int` accepts the whole integer family, while `uint` accepts only unsigned native and target-classified C integers - target-dependent C scalar primitives from `c_char` through `c_longdouble`, kept semantically distinct from native scalars - contextual integer/float/character literals, backward type-demand inference through names and arithmetic, and compile-time folding for numeric constant expressions - strict numeric conversion by default, widening where valid, C scalar coercions at C boundaries, and explicit scalar keyword casts such as `i32(x)` / `c_float(x)` @@ -44,16 +44,17 @@ roadmap and milestone history. #### native record constraint fields -A direct `int`, `float`, or `range` field in a named native struct or union is a +A direct `int`, `uint`, `float`, or `range` field in a named native struct or union is a program-wide constraint, not per-value polymorphism. Before record layout, all reachable keyed constructors, field assignments, and concrete uses of field reads contribute demands and the field resolves once to one concrete runtime type. Compatible scalar demands widen normally. Integer literals remain provisional until inference settles, so a later `usize` use can resolve an `int` field to `usize`; otherwise literal-only `int` fields use the widest smallest-signed type required, -and literal-only `float` fields use `f64`. +literal-only `uint` fields use the widest smallest-unsigned type required, and literal-only `float` +fields use `f64`. An undemanded field or incompatible demands are errors. This inference applies only to direct -fields of named native records. `c_struct` fields, nested constraints such as `[]int`, and fields in +fields of named native records. `c_struct` fields, nested constraints such as `[]int` / `[]uint`, and fields in anonymous generated records still require concrete runtime types. #### keyword member names diff --git a/TODO.md b/TODO.md index 784827d..5f96b6d 100644 --- a/TODO.md +++ b/TODO.md @@ -907,6 +907,12 @@ - filtering, skipping, fixtures, snapshots, parallelism, isolation, allocators, and more assertion families remain deferred +42. unsigned integer constraint (implemented) + - `uint` is the unsigned subset constraint while `int` remains the whole integer family + - literal-only values choose the smallest fitting `u8`, `u16`, `u32`, or `u64` + - native unsigned scalars and target-classified unsigned C scalars satisfy the constraint + - `isize` and `usize` remain concrete pointer-sized types + ## A word on unchecked casts For casts that bypass safety checks, Honey provides builtin functions: diff --git a/compiler/checker/checker.odin b/compiler/checker/checker.odin index cbb6dd5..991b7a5 100644 --- a/compiler/checker/checker.odin +++ b/compiler/checker/checker.odin @@ -501,7 +501,7 @@ write_type_label :: proc(checker: ^Checker, builder: ^strings.Builder, value: ty strings.write_string(builder, "enum") case .Alias, .Distinct, .Named: write_type_label(checker, builder, item.child) - case .Invalid, .Void, .Anyopaque, .Int_Constraint, .Float_Constraint, .Range_Constraint, .Scalar: + case .Invalid, .Void, .Anyopaque, .Int_Constraint, .Uint_Constraint, .Float_Constraint, .Range_Constraint, .Scalar: strings.write_string(builder, types.name(value)) } } @@ -1052,6 +1052,26 @@ fits_i64 :: proc(value: i128) -> bool { return fits_signed_type(value, types.I64) } +fits_u64 :: proc(value: i128) -> bool { + return value >= 0 && value <= i128(0xffff_ffff_ffff_ffff) +} + +constraint_integer_literal_type :: proc(constraint: types.Type, value: i128) -> types.Type { + if constraint == types.UINT { + return types.smallest_unsigned_for_literal(u64(value)) if fits_u64(value) else types.INVALID + } + return types.smallest_signed_for_literal(i64(value)) if fits_i64(value) else types.INVALID +} + +constraint_recovery_type :: proc(checker: ^Checker, constraint: types.Type) -> types.Type { + switch constraint { + case types.UINT: return types.U64 + case types.FLOAT: return types.F64 + case types.RANGE: return types.range(&checker.module.types, types.I64) + case: return types.I64 + } +} + type_from_syntax :: proc( checker: ^Checker, value: ast.Type_Syntax, @@ -2647,7 +2667,7 @@ call_arg_expected :: proc(checker: ^Checker, function: ast.Function, index: int) declared := type_from_syntax(checker, function.params[index].type, function.pkg, function.file) // A `float` param defaults to f64 so an integer-literal argument builds as a // float constant (e.g. `f(3)` -> 3.0), mirroring `pi float = 3` for locals. - // `int`/`range` constraints have no single default and keep building naturally. + // Integer/range constraints keep building naturally from their literals. if declared == types.FLOAT { return types.F64 } @@ -3624,13 +3644,21 @@ record_field_expr_candidate :: proc( } expr := checker.ast_module.exprs[expr_id] constraint := checker.record_field_constraints[slot] - if constant := eval_integer_constant_in_context(checker, expr_id, pkg, file); - constant.kind == .Value && fits_i64(constant.value) { - candidate := types.smallest_signed_for_literal(i64(constant.value)) - if constraint == types.FLOAT { - candidate = types.F64 + if !numeric_operand_is_open(checker, expr_id, locals, pkg, file) { + concrete := types.constraint_target(constraint, inferred, &checker.module.types) + if is_runtime_type(checker, concrete) { + return merge_record_field_demand(checker, slot, concrete, expr.span) + } + } + if constant := eval_integer_constant_in_context(checker, expr_id, pkg, file); + constant.kind == .Value { + candidate := constraint_integer_literal_type(constraint, constant.value) + if constraint == types.FLOAT { + candidate = types.F64 if fits_i64(constant.value) else types.INVALID + } + if types.is_valid(candidate) { + return merge_record_field_default(checker, slot, candidate, expr.span) } - return merge_record_field_default(checker, slot, candidate, expr.span) } if is_float_constant_expr(checker, expr_id) { return merge_record_field_default(checker, slot, types.F64, expr.span) @@ -3693,14 +3721,7 @@ finalize_record_field_inference :: proc(checker: ^Checker) { ) } if types.is_constraint(current) { - switch constraint { - case types.INT: - checker.module.types.fields[slot].type = types.I64 - case types.FLOAT: - checker.module.types.fields[slot].type = types.F64 - case types.RANGE: - checker.module.types.fields[slot].type = types.range(&checker.module.types, types.I64) - } + checker.module.types.fields[slot].type = constraint_recovery_type(checker, constraint) } } } @@ -3999,7 +4020,7 @@ find_spec :: proc( } // specialized_param_type maps a parameter's declared type to its monomorphized -// type for a given actual argument. A constraint param (`int`/`float`/`range`) +// type for a given actual argument. A constraint param (`int`/`uint`/`float`/`range`) // resolves to the actual's family member (INVALID if out of family), so a call // passing an out-of-family argument fails to specialize and is rejected. specialized_param_type :: proc( @@ -4426,14 +4447,16 @@ infer_expr :: proc( if expr.kind != .Name || symbol.is_valid(expr.qualifier) || !static_name { constant = eval_constant(checker, frame.expr) } - if constant.kind == .Overflow || constant.kind == .Div_By_Zero || - (constant.kind == .Value && !fits_i64(constant.value)) { + if constant.kind == .Overflow || constant.kind == .Div_By_Zero { last = types.I64 _ = pop(&stack) continue } if constant.kind == .Value { - last = types.smallest_signed_for_literal(i64(constant.value)) + last = constraint_integer_literal_type(frame.expected, constant.value) + if !types.is_valid(last) { + last = types.I64 + } _ = pop(&stack) continue } @@ -5066,7 +5089,7 @@ infer_statements :: proc( declared_local := resolve_inferred_array(checker, type_from_syntax(checker, statement.type, pkg, file), statement.expr) value_type := types.INVALID if !is_undefined_expr(checker, statement.expr) { - expected := declared_local if is_runtime_type(checker, declared_local) else types.INVALID + expected := declared_local if is_runtime_type(checker, declared_local) || declared_local == types.UINT else types.INVALID value_type = infer_expr(checker, statement.expr, locals^[:], pkg, file, demanded, local_types, expected) declared_local = resolve_inferred_array_from_type(checker, declared_local, value_type) } @@ -5082,7 +5105,8 @@ infer_statements :: proc( const_val := i128(0) if !is_runtime_type(checker, declared_local) && !is_undefined_expr(checker, statement.expr) { constant := eval_integer_constant_in_context(checker, statement.expr, pkg, file) - if constant.kind == .Value && fits_i64(constant.value) { + if constant.kind == .Value && + (fits_i64(constant.value) || declared_local == types.UINT && fits_u64(constant.value)) { open = true const_val = constant.value } else if is_float_constant_expr(checker, statement.expr) { @@ -5123,11 +5147,25 @@ infer_statements :: proc( expected_assignment := types.INVALID if statement.target != ast.INVALID_EXPR { expected_assignment = infer_expr(checker, statement.target, locals^[:], pkg, file, demanded, local_types) + target_expr := checker.ast_module.exprs[statement.target] + if target_expr.kind == .Name && !symbol.is_valid(target_expr.qualifier) { + if local_index, ok := find_infer_local_index(locals^[:], target_expr.name); ok && + locals^[local_index].declared == types.UINT { + expected_assignment = types.UINT + } else if global := find_global(checker, target_expr.name, pkg, file); global != ast.INVALID_GLOBAL { + ast_global := checker.ast_module.globals[global] + if type_from_syntax(checker, ast_global.type, ast_global.pkg, ast_global.file) == types.UINT { + expected_assignment = types.UINT + } + } + } } else if statement.name != checker.sink_symbol { if local_index, ok := find_infer_local_index(locals^[:], statement.name); ok { - expected_assignment = locals^[local_index].type + expected_assignment = types.UINT if locals^[local_index].declared == types.UINT else locals^[local_index].type } else if global := find_global(checker, statement.name, pkg, file); global != ast.INVALID_GLOBAL { - expected_assignment = checker.global_types[global] + ast_global := checker.ast_module.globals[global] + declared_global := type_from_syntax(checker, ast_global.type, ast_global.pkg, ast_global.file) + expected_assignment = types.UINT if declared_global == types.UINT else checker.global_types[global] } } value_type := infer_expr(checker, statement.expr, locals^[:], pkg, file, demanded, local_types, expected_assignment) @@ -5430,7 +5468,7 @@ infer_spec_locals_and_result :: proc( if function.pkg == 0 && function.name == checker.main_symbol && function.result == types.INT { declared = types.I32 } - result_hint := declared if is_runtime_type(checker, declared) else types.INVALID + result_hint := declared if is_runtime_type(checker, declared) || declared == types.UINT else types.INVALID locals: [dynamic]Infer_Local locals.allocator = checker.allocator @@ -5615,7 +5653,7 @@ open_const_default_type :: proc( if index, ok := find_infer_local_index(locals, expr.name); ok { local := locals[index] if local.open_const { - return types.smallest_signed_for_literal(i64(local.const_value)) + return constraint_integer_literal_type(local.declared, local.const_value) } if local.open_float { return types.F64 @@ -5633,7 +5671,9 @@ open_const_default_type :: proc( return types.INVALID } if checker.global_open_const[index] { - return types.smallest_signed_for_literal(i64(checker.global_const_value[index])) + ast_global := checker.ast_module.globals[global] + declared := type_from_syntax(checker, ast_global.type, ast_global.pkg, ast_global.file) + return constraint_integer_literal_type(declared, checker.global_const_value[index]) } if checker.global_open_float[index] { return types.F64 @@ -5899,7 +5939,8 @@ infer_all :: proc(checker: ^Checker) { } } constant := eval_integer_constant_in_context(checker, global.expr, global.pkg, global.file) - if constant.kind == .Value && fits_i64(constant.value) { + if constant.kind == .Value && + (fits_i64(constant.value) || declared == types.UINT && fits_u64(constant.value)) { checker.global_open_const[index] = true checker.global_const_value[index] = constant.value } else if is_float_constant_expr(checker, global.expr) { @@ -5947,7 +5988,7 @@ infer_all :: proc(checker: ^Checker) { type_from_syntax(checker, global.type, global.pkg, global.file), global.expr, ) - expected := declared if is_runtime_type(checker, declared) else types.INVALID + expected := declared if is_runtime_type(checker, declared) || declared == types.UINT else types.INVALID inferred := infer_expr(checker, global.expr, nil, global.pkg, global.file, expected=expected) if resolved := resolve_inferred_array_from_type(checker, declared, inferred); resolved != declared { @@ -6020,7 +6061,8 @@ infer_all :: proc(checker: ^Checker) { continue } if checker.global_open_const[index] { - checker.global_types[index] = types.smallest_signed_for_literal(i64(checker.global_const_value[index])) + declared := type_from_syntax(checker, global.type, global.pkg, global.file) + checker.global_types[index] = constraint_integer_literal_type(declared, checker.global_const_value[index]) defaulted = true } else if checker.global_open_float[index] { checker.global_types[index] = types.F64 @@ -6394,7 +6436,7 @@ build_constant_expr :: proc( return invalid_hir_expr(checker, expr.span, id, recovery_type) } if constant.kind == .Overflow || - (!types.is_concrete_integer(expected) && !fits_i64(constant.value)) { + (!types.is_concrete_integer(expected) && expected != types.UINT && !fits_i64(constant.value)) { id := source.add( checker.diagnostics, expr.span, @@ -6407,7 +6449,16 @@ build_constant_expr :: proc( if constant.value >= 0 && constant.value <= i128(0xffff_ffff_ffff_ffff) { value = transmute(i64)u64(constant.value) } - result_type := types.smallest_signed_for_literal(value) + result_type := constraint_integer_literal_type(expected, constant.value) + if expected == types.UINT && !types.is_valid(result_type) { + id := source.addf( + checker.diagnostics, + expr.span, + "integer constant %d does not satisfy uint", + constant.value, + ) + return invalid_hir_expr(checker, expr.span, id, types.U64) + } if types.is_concrete_integer(expected) { if !fits_integer_type(constant.value, expected, checker.target) { id := source.addf( @@ -12375,11 +12426,12 @@ build_globals :: proc(checker: ^Checker) { if is_runtime_type(checker, declared) { expected = declared } else if constant := eval_integer_constant_in_context(checker, global.expr, global.pkg, global.file); - constant.kind == .Value && fits_i64(constant.value) && + constant.kind == .Value && + (fits_i64(constant.value) || declared == types.UINT && fits_u64(constant.value)) && is_runtime_type(checker, checker.global_types[global_index]) { // Open integer constant: build against its demanded/defaulted type. Gated // to the infer-side open-constant condition so out-of-range constants keep - // their original "exceeds signed i64 range" diagnostic. + // their original range diagnostic. expected = checker.global_types[global_index] } else if (is_float_constant_expr(checker, global.expr) || is_numeric_arithmetic_expr(checker, global.expr)) && @@ -12401,6 +12453,18 @@ build_globals :: proc(checker: ^Checker) { global_type = types.I64 } } + if diagnostic == source.INVALID_DIAGNOSTIC && types.is_constraint(declared) && + !types.constraint_accepts(declared, global_type, &checker.module.types) { + diagnostic = source.addf( + checker.diagnostics, + global.span, + "could not resolve the '%s' constraint for global '%s'", + types.name(declared), + symbol_text(checker, global.name), + ) + global_type = constraint_recovery_type(checker, declared) + expr = invalid_hir_expr(checker, global.span, diagnostic, global_type) + } if !global.immutable && is_undefined_expr(checker, global.expr) { diagnostic = source.add( checker.diagnostics, diff --git a/compiler/lexer/lexer.odin b/compiler/lexer/lexer.odin index 40c6ccf..6339d93 100644 --- a/compiler/lexer/lexer.odin +++ b/compiler/lexer/lexer.odin @@ -52,6 +52,7 @@ keyword_kind :: proc(text: string) -> token.Kind { case "anyopaque": return .Keyword_Anyopaque case "bool": return .Keyword_Bool case "int": return .Keyword_Int + case "uint": return .Keyword_Uint case "float": return .Keyword_Float case "range": return .Keyword_Range case "i8": return .Keyword_I8 diff --git a/compiler/parser/parser.odin b/compiler/parser/parser.odin index ba79af9..9742501 100644 --- a/compiler/parser/parser.odin +++ b/compiler/parser/parser.odin @@ -146,7 +146,7 @@ invalid_expr :: proc(parser: ^Parser, span: source.Span, message: string) -> ast is_type_token :: proc(kind: token.Kind) -> bool { #partial switch kind { - case .Keyword_Int, .Keyword_Float, .Keyword_Range, .Keyword_I8, .Keyword_I16, .Keyword_I32, .Keyword_I64, + case .Keyword_Int, .Keyword_Uint, .Keyword_Float, .Keyword_Range, .Keyword_I8, .Keyword_I16, .Keyword_I32, .Keyword_I64, .Keyword_U8, .Keyword_U16, .Keyword_U32, .Keyword_U64, .Keyword_Isize, .Keyword_Usize, .Keyword_F32, .Keyword_F64, .Keyword_C_Char, .Keyword_C_Schar, .Keyword_C_Uchar, @@ -280,6 +280,9 @@ parse_type_atom :: proc(parser: ^Parser) -> ast.Type_Syntax { case .Keyword_Int: advance(parser) return types.INT + case .Keyword_Uint: + advance(parser) + return types.UINT case .Keyword_Float: advance(parser) return types.FLOAT @@ -774,7 +777,7 @@ parse_integer_magnitude :: proc(text: string) -> (u64, bool) { parse_primary :: proc(parser: ^Parser, nesting: int) -> ast.Expr_Id { tok := current(parser) #partial switch tok.kind { - case .Keyword_Int, .Keyword_Float, .Keyword_Range, .Keyword_Void, .Keyword_Anyopaque, .Keyword_Bool: + case .Keyword_Int, .Keyword_Uint, .Keyword_Float, .Keyword_Range, .Keyword_Void, .Keyword_Anyopaque, .Keyword_Bool: start := tok target := parse_type_atom(parser) return add_expr(parser, ast.Expr{ diff --git a/compiler/token/token.odin b/compiler/token/token.odin index 4f52362..90f5fcd 100644 --- a/compiler/token/token.odin +++ b/compiler/token/token.odin @@ -88,6 +88,7 @@ Kind :: enum u8 { Keyword_Anyopaque, Keyword_Bool, Keyword_Int, + Keyword_Uint, Keyword_Float, Keyword_Range, Keyword_I8, diff --git a/compiler/types/types.odin b/compiler/types/types.odin index b5794c1..9f7bed2 100644 --- a/compiler/types/types.odin +++ b/compiler/types/types.odin @@ -44,6 +44,7 @@ BOOL :: Type(29) FLOAT :: Type(30) RANGE :: Type(31) ANYOPAQUE :: Type(32) +UINT :: Type(33) DYNAMIC_START :: Type(64) @@ -59,6 +60,7 @@ Kind :: enum u8 { Void, Anyopaque, Int_Constraint, + Uint_Constraint, Float_Constraint, Range_Constraint, Scalar, @@ -595,6 +597,8 @@ kind :: proc(value: Type, store: ^Store = nil) -> Kind { return .Anyopaque case INT: return .Int_Constraint + case UINT: + return .Uint_Constraint case FLOAT: return .Float_Constraint case RANGE: @@ -642,7 +646,7 @@ is_bool :: proc(value: Type) -> bool { } is_constraint :: proc(value: Type) -> bool { - return value == INT || value == FLOAT || value == RANGE + return value == INT || value == UINT || value == FLOAT || value == RANGE } // constraint_target reports the concrete type a constraint binding (local, or a @@ -656,6 +660,8 @@ constraint_target :: proc(constraint, inferred: Type, store: ^Store = nil) -> Ty switch constraint { case INT: return inferred if is_concrete_integer(inferred) else INVALID + case UINT: + return inferred if is_unsigned(inferred) else INVALID case FLOAT: if is_float(inferred) { return inferred @@ -673,6 +679,8 @@ constraint_accepts :: proc(constraint, concrete: Type, store: ^Store = nil) -> b switch constraint { case INT: return is_concrete_integer(concrete) + case UINT: + return is_unsigned(concrete) case FLOAT: return is_float(concrete) case RANGE: @@ -1686,6 +1694,19 @@ smallest_signed_for_literal :: proc(value: i64) -> Type { return I64 } +smallest_unsigned_for_literal :: proc(value: u64) -> Type { + if value <= 255 { + return U8 + } + if value <= 65535 { + return U16 + } + if value <= 4294967295 { + return U32 + } + return U64 +} + name :: proc(value: Type) -> string { switch value { case INVALID: return "" @@ -1693,6 +1714,7 @@ name :: proc(value: Type) -> string { case ANYOPAQUE: return "anyopaque" case BOOL: return "bool" case INT: return "int" + case UINT: return "uint" case FLOAT: return "float" case RANGE: return "range" case I8: return "i8" diff --git a/compiler_tests.odin b/compiler_tests.odin index a9f8928..f7710b7 100644 --- a/compiler_tests.odin +++ b/compiler_tests.odin @@ -1485,6 +1485,7 @@ main func() void { _ = maxval!(u8, u16) _ = minval!(1) _ = maxval!(int) + _ = maxval!(uint) _ = maxval!(f32) _ = maxval!(bool) _ = maxval!(Named) @@ -1513,7 +1514,7 @@ main func() void { } testing.expect_value(t, bad_arity, 2) testing.expect(t, bad_type) - testing.expect_value(t, bad_target, 5) + testing.expect_value(t, bad_target, 6) } @(test) @@ -12876,3 +12877,189 @@ dependency_passes test { testing.expect(t, strings.contains(output, root_path)) testing.expect(t, strings.contains(output, "3 passed, 1 failed")) } + +@(test) +uint_constraint_parses_as_type_and_comptime_value :: proc(t: ^testing.T) { + text := `value uint :: 1 +Constraint :: uint +` + source_file := source.Source{path="uint.bro", text=text} + diagnostics := source.init_diagnostics(&source_file) + defer source.destroy_diagnostics(&diagnostics) + symbols := symbol.init_table() + defer symbol.destroy_table(&symbols) + stream := lexer.lex(&source_file, &diagnostics, &symbols) + defer delete(stream.items) + module := parser.parse(&stream, &source_file, &diagnostics) + defer ast.destroy_module(&module) + + testing.expect_value(t, len(diagnostics.items), 0) + testing.expect_value(t, len(module.globals), 2) + testing.expect_value(t, module.globals[0].type, types.UINT) + testing.expect_value(t, module.exprs[module.globals[1].expr].kind, ast.Expr_Kind.Type) + testing.expect_value(t, module.exprs[module.globals[1].expr].type, types.UINT) +} + +@(test) +uint_constraint_uses_smallest_unsigned_types_and_widens :: proc(t: ^testing.T) { + text := `Zero uint :: 0 +Byte uint :: 255 +Word uint :: 256 +Dword uint :: 65536 +Maximum uint :: 18446744073709551615 +Counter uint = 1 + +widen func() uint { + value uint = 1 + value = 1000 + return value +} + +widen_global func() void { Counter = 1000 } + +main func() void { + _ = Zero + _ = Byte + _ = Word + _ = Dword + _ = Maximum + _ = widen() + widen_global() +} +` + source_file := source.Source{path="uint_types.bro", text=text} + diagnostics := source.init_diagnostics(&source_file) + defer source.destroy_diagnostics(&diagnostics) + symbols := symbol.init_table() + defer symbol.destroy_table(&symbols) + stream := lexer.lex(&source_file, &diagnostics, &symbols) + defer delete(stream.items) + ast_module := parser.parse(&stream, &source_file, &diagnostics) + defer ast.destroy_module(&ast_module) + hir_module := checker.check(&ast_module, &diagnostics, &symbols) + defer hir.destroy_module(&hir_module) + + expected := []types.Type{types.U8, types.U8, types.U16, types.U32, types.U64, types.U16} + for value_type, index in expected { + testing.expect_value(t, hir_module.globals[index].type, value_type) + } + widen_symbol := symbol.intern(&symbols, "widen") + found_widen := false + for function in hir_module.functions { + if function.name != widen_symbol { + continue + } + found_widen = true + testing.expect_value(t, function.result, types.U16) + testing.expect_value(t, function.locals[0].type, types.U16) + } + testing.expect_value(t, len(diagnostics.items), 0) + testing.expect(t, found_widen) +} + +@(test) +uint_constraint_infers_boundaries_calls_and_records :: proc(t: ^testing.T) { + directory := "/tmp/brolang-test-uint-constraint" + main_path := "/tmp/brolang-test-uint-constraint/main.bro" + output := "/tmp/brolang-test-uint-constraint-output" + text := `Box :: struct { value uint } + +identity func(value uint) uint { return value } +whole func(value int) int { return value } +max_value func() uint { return 18446744073709551615 } + +make_box func(value usize) Box { return Box{value = value} } + +main func() i32 { + zero uint :: 0 + byte uint :: 255 + word uint :: 256 + word_max uint :: 65535 + dword uint :: 65536 + maximum uint :: 18446744073709551615 + platform usize = 7 + c_value c_uint = c_uint(9) + box Box = make_box(7) + signed isize = -1 + if (identity(zero) != 0) return 1 + if (identity(byte) != 255) return 2 + if (identity(word) != 256) return 3 + if (identity(word_max) != 65535) return 4 + if (identity(dword) != 65536) return 5 + if (identity(maximum) != 18446744073709551615) return 6 + if (box.value != 7) return 7 + if (signed != -1) return 8 + if (identity(platform) != 7) return 9 + if (identity(c_value) != c_value) return 10 + if (whole(word) != 256) return 11 + if (max_value() != 18446744073709551615) return 12 + return 0 +} +` + _ = os2.remove_all(directory) + defer _ = os2.remove_all(directory) + defer _ = os.remove(output) + testing.expect(t, os.make_directory(directory) == nil) + testing.expect(t, os.write_entire_file(main_path, transmute([]byte)text)) + testing.expect_value(t, compiler_core.compile_package(directory, output), 0) + state := run_executable(output) + testing.expect_value(t, state.exit_code, 0) +} + +@(test) +uint_constraint_rejects_other_families_and_recovers_records_as_u64 :: proc(t: ^testing.T) { + text := `Unresolved :: struct { value uint } +Conflict :: struct { value uint } + +take func(value uint) uint { return value } +bad_result func() uint { return -1 } + +bad func(signed i32, decimal f64) void { + _ = take(signed) + _ = take(decimal) + negative uint :: -1 + a Conflict = Conflict{value = signed} + _ = negative + _ = a +} + +Overflow uint :: 18446744073709551616 +NegativeGlobal uint :: -1 +main func() void { + bad(1, 1.0) + _ = bad_result() +} +` + source_file := source.Source{path="bad_uint.bro", text=text} + diagnostics := source.init_diagnostics(&source_file) + defer source.destroy_diagnostics(&diagnostics) + symbols := symbol.init_table() + defer symbol.destroy_table(&symbols) + stream := lexer.lex(&source_file, &diagnostics, &symbols) + defer delete(stream.items) + ast_module := parser.parse(&stream, &source_file, &diagnostics) + defer ast.destroy_module(&ast_module) + hir_module := checker.check(&ast_module, &diagnostics, &symbols) + defer hir.destroy_module(&hir_module) + + signed_error := false + float_error := false + negative_error := false + field_error := false + overflow_error := false + global_error := false + result_error := false + for diagnostic in diagnostics.items { + signed_error = signed_error || strings.contains(diagnostic.message, "cannot pass i32 to 'uint' parameter 'value'") + float_error = float_error || strings.contains(diagnostic.message, "cannot pass f64 to 'uint' parameter 'value'") + negative_error = negative_error || strings.contains(diagnostic.message, "could not resolve the 'uint' constraint for local 'negative'") + field_error = field_error || strings.contains(diagnostic.message, "type i32 does not satisfy the 'uint' constraint for field 'Conflict.value'") + overflow_error = overflow_error || strings.contains(diagnostic.message, "magnitude does not fit in u64") + global_error = global_error || strings.contains(diagnostic.message, "could not resolve the 'uint' constraint for global 'NegativeGlobal'") + result_error = result_error || strings.contains(diagnostic.message, "could not resolve a concrete result type for 'bad_result'") + } + unresolved, unresolved_ok := named_record_field_type(&hir_module, &symbols, "Unresolved", "value") + testing.expect(t, signed_error && float_error && negative_error && field_error && overflow_error && global_error && result_error) + testing.expect(t, unresolved_ok) + testing.expect_value(t, unresolved, types.U64) +} diff --git a/extension.toml b/extension.toml index cae563e..555b28f 100644 --- a/extension.toml +++ b/extension.toml @@ -9,5 +9,5 @@ languages = ["languages/brolang"] [grammars.brolang] repository = "file:///Users/valdemar/Developer/Personal/Languages/brolang" -rev = "2e8234c6a9a12326f230ea16e901ac41a1b48c99" +rev = "71357b2866d2a558f80b6d5cc65761fb853e74d3" path = "tree-sitter-brolang" diff --git a/tree-sitter-brolang/grammar.js b/tree-sitter-brolang/grammar.js index 71500cf..73f4935 100644 --- a/tree-sitter-brolang/grammar.js +++ b/tree-sitter-brolang/grammar.js @@ -228,7 +228,7 @@ module.exports = grammar({ _type_constant: $ => seq(optional('-'), choice($.integer, $.character)), builtin_type: _ => choice( - 'void', 'anyopaque', 'bool', 'int', 'float', 'range', + 'void', 'anyopaque', 'bool', 'int', 'uint', 'float', 'range', 'i8', 'i16', 'i32', 'i64', 'u8', 'u16', 'u32', 'u64', 'isize', 'usize', 'f32', 'f64', 'c_char', 'c_schar', 'c_uchar', 'c_short', 'c_ushort', diff --git a/tree-sitter-brolang/src/grammar.json b/tree-sitter-brolang/src/grammar.json index 04bdbe8..f6feb0c 100644 --- a/tree-sitter-brolang/src/grammar.json +++ b/tree-sitter-brolang/src/grammar.json @@ -1476,6 +1476,10 @@ "type": "STRING", "value": "int" }, + { + "type": "STRING", + "value": "uint" + }, { "type": "STRING", "value": "float" diff --git a/tree-sitter-brolang/src/node-types.json b/tree-sitter-brolang/src/node-types.json index b085392..bdadd8f 100644 --- a/tree-sitter-brolang/src/node-types.json +++ b/tree-sitter-brolang/src/node-types.json @@ -2815,6 +2815,10 @@ "type": "u8", "named": false }, + { + "type": "uint", + "named": false + }, { "type": "undefined", "named": true diff --git a/tree-sitter-brolang/src/parser.c b/tree-sitter-brolang/src/parser.c index 7f140a1..f55bf23 100644 --- a/tree-sitter-brolang/src/parser.c +++ b/tree-sitter-brolang/src/parser.c @@ -9,9 +9,9 @@ #define LANGUAGE_VERSION 15 #define STATE_COUNT 2376 #define LARGE_STATE_COUNT 1305 -#define SYMBOL_COUNT 208 +#define SYMBOL_COUNT 209 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 114 +#define TOKEN_COUNT 115 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 39 #define MAX_ALIAS_SEQUENCE_LENGTH 16 @@ -56,177 +56,178 @@ enum ts_symbol_identifiers { anon_sym_anyopaque = 34, anon_sym_bool = 35, anon_sym_int = 36, - anon_sym_float = 37, - anon_sym_range = 38, - anon_sym_i8 = 39, - anon_sym_i16 = 40, - anon_sym_i32 = 41, - anon_sym_i64 = 42, - anon_sym_u8 = 43, - anon_sym_u16 = 44, - anon_sym_u32 = 45, - anon_sym_u64 = 46, - anon_sym_isize = 47, - anon_sym_usize = 48, - anon_sym_f32 = 49, - anon_sym_f64 = 50, - anon_sym_c_char = 51, - anon_sym_c_schar = 52, - anon_sym_c_uchar = 53, - anon_sym_c_short = 54, - anon_sym_c_ushort = 55, - anon_sym_c_int = 56, - anon_sym_c_uint = 57, - anon_sym_c_long = 58, - anon_sym_c_ulong = 59, - anon_sym_c_longlong = 60, - anon_sym_c_ulonglong = 61, - anon_sym_c_float = 62, - anon_sym_c_double = 63, - anon_sym_c_longdouble = 64, - anon_sym_PLUS_EQ = 65, - anon_sym_DASH_EQ = 66, - anon_sym_STAR_EQ = 67, - anon_sym_SLASH_EQ = 68, - anon_sym_return = 69, - anon_sym_yield = 70, - anon_sym_COLON = 71, - anon_sym_break = 72, - anon_sym_continue = 73, - anon_sym_defer = 74, - anon_sym_errdefer = 75, - anon_sym_if = 76, - anon_sym_else = 77, - anon_sym_while = 78, - anon_sym_expand = 79, - anon_sym_for = 80, - anon_sym_match = 81, - anon_sym_DOT_DOT = 82, - anon_sym_DOT_DOT_EQ = 83, - anon_sym_orelse = 84, - anon_sym_catch = 85, - anon_sym_or = 86, - anon_sym_and = 87, - anon_sym_EQ_EQ = 88, - anon_sym_BANG_EQ = 89, - anon_sym_LT = 90, - anon_sym_LT_EQ = 91, - anon_sym_GT = 92, - anon_sym_GT_EQ = 93, - anon_sym_PLUS = 94, - anon_sym_SLASH = 95, - anon_sym_AMP = 96, - anon_sym_try = 97, - anon_sym_DOT = 98, - anon_sym_CARET = 99, - anon_sym_true = 100, - anon_sym_false = 101, - sym_none = 102, - sym_undefined = 103, - sym_sink = 104, - sym_integer = 105, - sym_float = 106, - anon_sym_DQUOTE = 107, - sym_string_content = 108, - sym_escape_sequence = 109, - sym_multiline_string = 110, - sym_character = 111, - sym_comment = 112, - sym__newline = 113, - sym_source_file = 114, - sym__top_level_declaration = 115, - sym_import_declaration = 116, - sym_test_import_declaration = 117, - sym_test_declaration = 118, - sym_function_declaration = 119, - sym_type_declaration = 120, - sym_global_constant_declaration = 121, - sym_global_variable_declaration = 122, - sym_struct_type = 123, - sym_c_struct_type = 124, - sym_distinct_type = 125, - sym_alias_type = 126, - sym_union_type = 127, - sym_enum_type = 128, - sym_record_body = 129, - sym_record_field = 130, - sym_enum_body = 131, - sym_enum_member = 132, - sym_parameter_list = 133, - sym_parameter = 134, - sym_type = 135, - sym__type_atom = 136, - sym_named_type = 137, - sym_optional_type = 138, - sym_pointer_type = 139, - sym_array_type = 140, - sym_function_type = 141, - sym__error_type = 142, - sym__type_constant = 143, - sym_builtin_type = 144, - sym_block = 145, - sym_statement = 146, - sym_constant_declaration = 147, - sym_variable_declaration = 148, - sym_assignment_statement = 149, - sym_expression_statement = 150, - sym_return_statement = 151, - sym_yield_statement = 152, - sym_break_statement = 153, - sym_continue_statement = 154, - sym_defer_statement = 155, - sym_error_capture = 156, - sym_labeled_block = 157, - sym_if_statement = 158, - sym_capture_list = 159, - sym_while_statement = 160, - sym_for_statement = 161, - sym_match_statement = 162, - sym_match_arm = 163, - sym_match_capture = 164, - sym_expand_match_capture = 165, - sym__branch_body = 166, - sym__value = 167, - sym_expression = 168, - sym_binary_expression = 169, - sym_catch_expression = 170, - sym_unary_expression = 171, - sym_field_expression = 172, - sym_intrinsic_call_expression = 173, - sym_call_expression = 174, - sym_argument_list = 175, - sym_index_expression = 176, - sym_slice_expression = 177, - sym_postfix_expression = 178, - sym_struct_literal = 179, - sym_initializer_list = 180, - sym_field_initializer = 181, - sym_tuple_literal = 182, - sym_enum_literal = 183, - sym_variant_payload = 184, - sym_keyed_field_initializer = 185, - sym_array_literal = 186, - sym_parenthesized_expression = 187, - sym_comptime_block = 188, - sym_function_literal = 189, - sym_qualified_identifier = 190, - sym_boolean = 191, - sym_string = 192, - aux_sym_source_file_repeat1 = 193, - aux_sym_import_declaration_repeat1 = 194, - aux_sym_record_body_repeat1 = 195, - aux_sym_enum_body_repeat1 = 196, - aux_sym_parameter_list_repeat1 = 197, - aux_sym_parameter_repeat1 = 198, - aux_sym_type_repeat1 = 199, - aux_sym_block_repeat1 = 200, - aux_sym_capture_list_repeat1 = 201, - aux_sym_match_statement_repeat1 = 202, - aux_sym_match_arm_repeat1 = 203, - aux_sym_initializer_list_repeat1 = 204, - aux_sym_tuple_literal_repeat1 = 205, - aux_sym_variant_payload_repeat1 = 206, - aux_sym_string_repeat1 = 207, + anon_sym_uint = 37, + anon_sym_float = 38, + anon_sym_range = 39, + anon_sym_i8 = 40, + anon_sym_i16 = 41, + anon_sym_i32 = 42, + anon_sym_i64 = 43, + anon_sym_u8 = 44, + anon_sym_u16 = 45, + anon_sym_u32 = 46, + anon_sym_u64 = 47, + anon_sym_isize = 48, + anon_sym_usize = 49, + anon_sym_f32 = 50, + anon_sym_f64 = 51, + anon_sym_c_char = 52, + anon_sym_c_schar = 53, + anon_sym_c_uchar = 54, + anon_sym_c_short = 55, + anon_sym_c_ushort = 56, + anon_sym_c_int = 57, + anon_sym_c_uint = 58, + anon_sym_c_long = 59, + anon_sym_c_ulong = 60, + anon_sym_c_longlong = 61, + anon_sym_c_ulonglong = 62, + anon_sym_c_float = 63, + anon_sym_c_double = 64, + anon_sym_c_longdouble = 65, + anon_sym_PLUS_EQ = 66, + anon_sym_DASH_EQ = 67, + anon_sym_STAR_EQ = 68, + anon_sym_SLASH_EQ = 69, + anon_sym_return = 70, + anon_sym_yield = 71, + anon_sym_COLON = 72, + anon_sym_break = 73, + anon_sym_continue = 74, + anon_sym_defer = 75, + anon_sym_errdefer = 76, + anon_sym_if = 77, + anon_sym_else = 78, + anon_sym_while = 79, + anon_sym_expand = 80, + anon_sym_for = 81, + anon_sym_match = 82, + anon_sym_DOT_DOT = 83, + anon_sym_DOT_DOT_EQ = 84, + anon_sym_orelse = 85, + anon_sym_catch = 86, + anon_sym_or = 87, + anon_sym_and = 88, + anon_sym_EQ_EQ = 89, + anon_sym_BANG_EQ = 90, + anon_sym_LT = 91, + anon_sym_LT_EQ = 92, + anon_sym_GT = 93, + anon_sym_GT_EQ = 94, + anon_sym_PLUS = 95, + anon_sym_SLASH = 96, + anon_sym_AMP = 97, + anon_sym_try = 98, + anon_sym_DOT = 99, + anon_sym_CARET = 100, + anon_sym_true = 101, + anon_sym_false = 102, + sym_none = 103, + sym_undefined = 104, + sym_sink = 105, + sym_integer = 106, + sym_float = 107, + anon_sym_DQUOTE = 108, + sym_string_content = 109, + sym_escape_sequence = 110, + sym_multiline_string = 111, + sym_character = 112, + sym_comment = 113, + sym__newline = 114, + sym_source_file = 115, + sym__top_level_declaration = 116, + sym_import_declaration = 117, + sym_test_import_declaration = 118, + sym_test_declaration = 119, + sym_function_declaration = 120, + sym_type_declaration = 121, + sym_global_constant_declaration = 122, + sym_global_variable_declaration = 123, + sym_struct_type = 124, + sym_c_struct_type = 125, + sym_distinct_type = 126, + sym_alias_type = 127, + sym_union_type = 128, + sym_enum_type = 129, + sym_record_body = 130, + sym_record_field = 131, + sym_enum_body = 132, + sym_enum_member = 133, + sym_parameter_list = 134, + sym_parameter = 135, + sym_type = 136, + sym__type_atom = 137, + sym_named_type = 138, + sym_optional_type = 139, + sym_pointer_type = 140, + sym_array_type = 141, + sym_function_type = 142, + sym__error_type = 143, + sym__type_constant = 144, + sym_builtin_type = 145, + sym_block = 146, + sym_statement = 147, + sym_constant_declaration = 148, + sym_variable_declaration = 149, + sym_assignment_statement = 150, + sym_expression_statement = 151, + sym_return_statement = 152, + sym_yield_statement = 153, + sym_break_statement = 154, + sym_continue_statement = 155, + sym_defer_statement = 156, + sym_error_capture = 157, + sym_labeled_block = 158, + sym_if_statement = 159, + sym_capture_list = 160, + sym_while_statement = 161, + sym_for_statement = 162, + sym_match_statement = 163, + sym_match_arm = 164, + sym_match_capture = 165, + sym_expand_match_capture = 166, + sym__branch_body = 167, + sym__value = 168, + sym_expression = 169, + sym_binary_expression = 170, + sym_catch_expression = 171, + sym_unary_expression = 172, + sym_field_expression = 173, + sym_intrinsic_call_expression = 174, + sym_call_expression = 175, + sym_argument_list = 176, + sym_index_expression = 177, + sym_slice_expression = 178, + sym_postfix_expression = 179, + sym_struct_literal = 180, + sym_initializer_list = 181, + sym_field_initializer = 182, + sym_tuple_literal = 183, + sym_enum_literal = 184, + sym_variant_payload = 185, + sym_keyed_field_initializer = 186, + sym_array_literal = 187, + sym_parenthesized_expression = 188, + sym_comptime_block = 189, + sym_function_literal = 190, + sym_qualified_identifier = 191, + sym_boolean = 192, + sym_string = 193, + aux_sym_source_file_repeat1 = 194, + aux_sym_import_declaration_repeat1 = 195, + aux_sym_record_body_repeat1 = 196, + aux_sym_enum_body_repeat1 = 197, + aux_sym_parameter_list_repeat1 = 198, + aux_sym_parameter_repeat1 = 199, + aux_sym_type_repeat1 = 200, + aux_sym_block_repeat1 = 201, + aux_sym_capture_list_repeat1 = 202, + aux_sym_match_statement_repeat1 = 203, + aux_sym_match_arm_repeat1 = 204, + aux_sym_initializer_list_repeat1 = 205, + aux_sym_tuple_literal_repeat1 = 206, + aux_sym_variant_payload_repeat1 = 207, + aux_sym_string_repeat1 = 208, }; static const char * const ts_symbol_names[] = { @@ -267,6 +268,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_anyopaque] = "anyopaque", [anon_sym_bool] = "bool", [anon_sym_int] = "int", + [anon_sym_uint] = "uint", [anon_sym_float] = "float", [anon_sym_range] = "range", [anon_sym_i8] = "i8", @@ -478,6 +480,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_anyopaque] = anon_sym_anyopaque, [anon_sym_bool] = anon_sym_bool, [anon_sym_int] = anon_sym_int, + [anon_sym_uint] = anon_sym_uint, [anon_sym_float] = anon_sym_float, [anon_sym_range] = anon_sym_range, [anon_sym_i8] = anon_sym_i8, @@ -800,6 +803,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_uint] = { + .visible = true, + .named = false, + }, [anon_sym_float] = { .visible = true, .named = false, @@ -6675,93 +6682,94 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == '3') ADVANCE(59); if (lookahead == '6') ADVANCE(60); if (lookahead == '8') ADVANCE(61); - if (lookahead == 'n') ADVANCE(62); - if (lookahead == 's') ADVANCE(63); + if (lookahead == 'i') ADVANCE(62); + if (lookahead == 'n') ADVANCE(63); + if (lookahead == 's') ADVANCE(64); END_STATE(); case 17: - if (lookahead == 'o') ADVANCE(64); + if (lookahead == 'o') ADVANCE(65); END_STATE(); case 18: - if (lookahead == 'h') ADVANCE(65); + if (lookahead == 'h') ADVANCE(66); END_STATE(); case 19: - if (lookahead == 'i') ADVANCE(66); - END_STATE(); - case 20: if (lookahead == 'i') ADVANCE(67); END_STATE(); + case 20: + if (lookahead == 'i') ADVANCE(68); + END_STATE(); case 21: - if (lookahead == 'd') ADVANCE(68); - if (lookahead == 'y') ADVANCE(69); + if (lookahead == 'd') ADVANCE(69); + if (lookahead == 'y') ADVANCE(70); END_STATE(); case 22: - if (lookahead == 'o') ADVANCE(70); + if (lookahead == 'o') ADVANCE(71); END_STATE(); case 23: - if (lookahead == 'e') ADVANCE(71); + if (lookahead == 'e') ADVANCE(72); END_STATE(); case 24: - if (lookahead == 'c') ADVANCE(72); - if (lookahead == 'd') ADVANCE(73); - if (lookahead == 'f') ADVANCE(74); - if (lookahead == 'i') ADVANCE(75); - if (lookahead == 'l') ADVANCE(76); - if (lookahead == 's') ADVANCE(77); - if (lookahead == 'u') ADVANCE(78); + if (lookahead == 'c') ADVANCE(73); + if (lookahead == 'd') ADVANCE(74); + if (lookahead == 'f') ADVANCE(75); + if (lookahead == 'i') ADVANCE(76); + if (lookahead == 'l') ADVANCE(77); + if (lookahead == 's') ADVANCE(78); + if (lookahead == 'u') ADVANCE(79); END_STATE(); case 25: - if (lookahead == 't') ADVANCE(79); + if (lookahead == 't') ADVANCE(80); END_STATE(); case 26: - if (lookahead == 'n') ADVANCE(80); + if (lookahead == 'n') ADVANCE(81); END_STATE(); case 27: - if (lookahead == 'f') ADVANCE(81); + if (lookahead == 'f') ADVANCE(82); END_STATE(); case 28: - if (lookahead == 's') ADVANCE(82); - END_STATE(); - case 29: if (lookahead == 's') ADVANCE(83); END_STATE(); + case 29: + if (lookahead == 's') ADVANCE(84); + END_STATE(); case 30: - if (lookahead == 'u') ADVANCE(84); + if (lookahead == 'u') ADVANCE(85); END_STATE(); case 31: - if (lookahead == 'r') ADVANCE(85); + if (lookahead == 'r') ADVANCE(86); END_STATE(); case 32: - if (lookahead == 'p') ADVANCE(86); + if (lookahead == 'p') ADVANCE(87); END_STATE(); case 33: - if (lookahead == '2') ADVANCE(87); + if (lookahead == '2') ADVANCE(88); END_STATE(); case 34: - if (lookahead == '4') ADVANCE(88); + if (lookahead == '4') ADVANCE(89); END_STATE(); case 35: - if (lookahead == 'l') ADVANCE(89); + if (lookahead == 'l') ADVANCE(90); END_STATE(); case 36: - if (lookahead == 'o') ADVANCE(90); + if (lookahead == 'o') ADVANCE(91); END_STATE(); case 37: - if (lookahead == 'r') ADVANCE(91); + if (lookahead == 'r') ADVANCE(92); END_STATE(); case 38: - if (lookahead == 'n') ADVANCE(92); + if (lookahead == 'n') ADVANCE(93); END_STATE(); case 39: - if (lookahead == 'd') ADVANCE(93); + if (lookahead == 'd') ADVANCE(94); END_STATE(); case 40: - if (lookahead == '6') ADVANCE(94); + if (lookahead == '6') ADVANCE(95); END_STATE(); case 41: - if (lookahead == '2') ADVANCE(95); + if (lookahead == '2') ADVANCE(96); END_STATE(); case 42: - if (lookahead == '4') ADVANCE(96); + if (lookahead == '4') ADVANCE(97); END_STATE(); case 43: ACCEPT_TOKEN(anon_sym_i8); @@ -6770,669 +6778,678 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 45: - if (lookahead == 'p') ADVANCE(97); + if (lookahead == 'p') ADVANCE(98); END_STATE(); case 46: - if (lookahead == 't') ADVANCE(98); + if (lookahead == 't') ADVANCE(99); END_STATE(); case 47: - if (lookahead == 'i') ADVANCE(99); + if (lookahead == 'i') ADVANCE(100); END_STATE(); case 48: - if (lookahead == 't') ADVANCE(100); - END_STATE(); - case 49: if (lookahead == 't') ADVANCE(101); END_STATE(); + case 49: + if (lookahead == 't') ADVANCE(102); + END_STATE(); case 50: - if (lookahead == 'n') ADVANCE(102); + if (lookahead == 'n') ADVANCE(103); END_STATE(); case 51: - if (lookahead == 'a') ADVANCE(103); + if (lookahead == 'a') ADVANCE(104); END_STATE(); case 52: ACCEPT_TOKEN(anon_sym_or); - if (lookahead == 'e') ADVANCE(104); + if (lookahead == 'e') ADVANCE(105); END_STATE(); case 53: - if (lookahead == 'n') ADVANCE(105); + if (lookahead == 'n') ADVANCE(106); END_STATE(); case 54: - if (lookahead == 't') ADVANCE(106); + if (lookahead == 't') ADVANCE(107); END_STATE(); case 55: - if (lookahead == 'r') ADVANCE(107); + if (lookahead == 'r') ADVANCE(108); END_STATE(); case 56: - if (lookahead == 's') ADVANCE(108); + if (lookahead == 's') ADVANCE(109); END_STATE(); case 57: - if (lookahead == 'u') ADVANCE(109); - if (lookahead == 'y') ADVANCE(110); + if (lookahead == 'u') ADVANCE(110); + if (lookahead == 'y') ADVANCE(111); END_STATE(); case 58: - if (lookahead == '6') ADVANCE(111); + if (lookahead == '6') ADVANCE(112); END_STATE(); case 59: - if (lookahead == '2') ADVANCE(112); + if (lookahead == '2') ADVANCE(113); END_STATE(); case 60: - if (lookahead == '4') ADVANCE(113); + if (lookahead == '4') ADVANCE(114); END_STATE(); case 61: ACCEPT_TOKEN(anon_sym_u8); END_STATE(); case 62: - if (lookahead == 'd') ADVANCE(114); - if (lookahead == 'i') ADVANCE(115); + if (lookahead == 'n') ADVANCE(115); END_STATE(); case 63: - if (lookahead == 'i') ADVANCE(116); - END_STATE(); - case 64: + if (lookahead == 'd') ADVANCE(116); if (lookahead == 'i') ADVANCE(117); END_STATE(); - case 65: + case 64: if (lookahead == 'i') ADVANCE(118); END_STATE(); + case 65: + if (lookahead == 'i') ADVANCE(119); + END_STATE(); case 66: - if (lookahead == 'e') ADVANCE(119); + if (lookahead == 'i') ADVANCE(120); END_STATE(); case 67: - if (lookahead == 'a') ADVANCE(120); + if (lookahead == 'e') ADVANCE(121); END_STATE(); case 68: - ACCEPT_TOKEN(anon_sym_and); + if (lookahead == 'a') ADVANCE(122); END_STATE(); case 69: - if (lookahead == 'o') ADVANCE(121); + ACCEPT_TOKEN(anon_sym_and); END_STATE(); case 70: - if (lookahead == 'l') ADVANCE(122); + if (lookahead == 'o') ADVANCE(123); END_STATE(); case 71: - if (lookahead == 'a') ADVANCE(123); + if (lookahead == 'l') ADVANCE(124); END_STATE(); case 72: - if (lookahead == 'h') ADVANCE(124); + if (lookahead == 'a') ADVANCE(125); END_STATE(); case 73: - if (lookahead == 'o') ADVANCE(125); + if (lookahead == 'h') ADVANCE(126); END_STATE(); case 74: - if (lookahead == 'l') ADVANCE(126); - if (lookahead == 'u') ADVANCE(127); + if (lookahead == 'o') ADVANCE(127); END_STATE(); case 75: - if (lookahead == 'n') ADVANCE(128); + if (lookahead == 'l') ADVANCE(128); + if (lookahead == 'u') ADVANCE(129); END_STATE(); case 76: - if (lookahead == 'o') ADVANCE(129); + if (lookahead == 'n') ADVANCE(130); END_STATE(); case 77: - if (lookahead == 'c') ADVANCE(130); - if (lookahead == 'h') ADVANCE(131); - if (lookahead == 't') ADVANCE(132); + if (lookahead == 'o') ADVANCE(131); END_STATE(); case 78: - if (lookahead == 'c') ADVANCE(133); - if (lookahead == 'i') ADVANCE(134); - if (lookahead == 'l') ADVANCE(135); - if (lookahead == 's') ADVANCE(136); + if (lookahead == 'c') ADVANCE(132); + if (lookahead == 'h') ADVANCE(133); + if (lookahead == 't') ADVANCE(134); END_STATE(); case 79: - if (lookahead == 'c') ADVANCE(137); + if (lookahead == 'c') ADVANCE(135); + if (lookahead == 'i') ADVANCE(136); + if (lookahead == 'l') ADVANCE(137); + if (lookahead == 's') ADVANCE(138); END_STATE(); case 80: - if (lookahead == 't') ADVANCE(138); + if (lookahead == 'c') ADVANCE(139); END_STATE(); case 81: - if (lookahead == 'e') ADVANCE(139); - END_STATE(); - case 82: if (lookahead == 't') ADVANCE(140); END_STATE(); - case 83: + case 82: if (lookahead == 'e') ADVANCE(141); END_STATE(); + case 83: + if (lookahead == 't') ADVANCE(142); + END_STATE(); case 84: - if (lookahead == 'm') ADVANCE(142); + if (lookahead == 'e') ADVANCE(143); END_STATE(); case 85: - if (lookahead == 'd') ADVANCE(143); + if (lookahead == 'm') ADVANCE(144); END_STATE(); case 86: - if (lookahead == 'a') ADVANCE(144); + if (lookahead == 'd') ADVANCE(145); END_STATE(); case 87: - ACCEPT_TOKEN(anon_sym_f32); - END_STATE(); - case 88: - ACCEPT_TOKEN(anon_sym_f64); - END_STATE(); - case 89: - if (lookahead == 's') ADVANCE(145); - END_STATE(); - case 90: if (lookahead == 'a') ADVANCE(146); END_STATE(); + case 88: + ACCEPT_TOKEN(anon_sym_f32); + END_STATE(); + case 89: + ACCEPT_TOKEN(anon_sym_f64); + END_STATE(); + case 90: + if (lookahead == 's') ADVANCE(147); + END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'a') ADVANCE(148); END_STATE(); case 92: - if (lookahead == 'c') ADVANCE(147); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 93: - if (lookahead == 'e') ADVANCE(148); + if (lookahead == 'c') ADVANCE(149); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_i16); + if (lookahead == 'e') ADVANCE(150); END_STATE(); case 95: - ACCEPT_TOKEN(anon_sym_i32); + ACCEPT_TOKEN(anon_sym_i16); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_i64); + ACCEPT_TOKEN(anon_sym_i32); END_STATE(); case 97: - if (lookahead == 'o') ADVANCE(149); + ACCEPT_TOKEN(anon_sym_i64); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_int); + if (lookahead == 'o') ADVANCE(151); END_STATE(); case 99: - if (lookahead == 'z') ADVANCE(150); + ACCEPT_TOKEN(anon_sym_int); END_STATE(); case 100: - if (lookahead == 'c') ADVANCE(151); + if (lookahead == 'z') ADVANCE(152); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_mut); + if (lookahead == 'c') ADVANCE(153); END_STATE(); case 102: - if (lookahead == 'e') ADVANCE(152); + ACCEPT_TOKEN(anon_sym_mut); END_STATE(); case 103: - if (lookahead == 'q') ADVANCE(153); + if (lookahead == 'e') ADVANCE(154); END_STATE(); case 104: - if (lookahead == 'l') ADVANCE(154); + if (lookahead == 'q') ADVANCE(155); END_STATE(); case 105: - if (lookahead == 'g') ADVANCE(155); + if (lookahead == 'l') ADVANCE(156); END_STATE(); case 106: - if (lookahead == 'u') ADVANCE(156); + if (lookahead == 'g') ADVANCE(157); END_STATE(); case 107: - if (lookahead == 'u') ADVANCE(157); + if (lookahead == 'u') ADVANCE(158); END_STATE(); case 108: - if (lookahead == 't') ADVANCE(158); + if (lookahead == 'u') ADVANCE(159); END_STATE(); case 109: - if (lookahead == 'e') ADVANCE(159); + if (lookahead == 't') ADVANCE(160); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_try); + if (lookahead == 'e') ADVANCE(161); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_u16); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_u32); + ACCEPT_TOKEN(anon_sym_u16); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_u64); + ACCEPT_TOKEN(anon_sym_u32); END_STATE(); case 114: - if (lookahead == 'e') ADVANCE(160); + ACCEPT_TOKEN(anon_sym_u64); END_STATE(); case 115: - if (lookahead == 'o') ADVANCE(161); + if (lookahead == 't') ADVANCE(162); END_STATE(); case 116: - if (lookahead == 'z') ADVANCE(162); + if (lookahead == 'e') ADVANCE(163); END_STATE(); case 117: - if (lookahead == 'd') ADVANCE(163); + if (lookahead == 'o') ADVANCE(164); END_STATE(); case 118: - if (lookahead == 'l') ADVANCE(164); + if (lookahead == 'z') ADVANCE(165); END_STATE(); case 119: - if (lookahead == 'l') ADVANCE(165); + if (lookahead == 'd') ADVANCE(166); END_STATE(); case 120: - if (lookahead == 's') ADVANCE(166); + if (lookahead == 'l') ADVANCE(167); END_STATE(); case 121: - if (lookahead == 'p') ADVANCE(167); + if (lookahead == 'l') ADVANCE(168); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_bool); + if (lookahead == 's') ADVANCE(169); END_STATE(); case 123: - if (lookahead == 'k') ADVANCE(168); + if (lookahead == 'p') ADVANCE(170); END_STATE(); case 124: - if (lookahead == 'a') ADVANCE(169); + ACCEPT_TOKEN(anon_sym_bool); END_STATE(); case 125: - if (lookahead == 'u') ADVANCE(170); + if (lookahead == 'k') ADVANCE(171); END_STATE(); case 126: - if (lookahead == 'o') ADVANCE(171); + if (lookahead == 'a') ADVANCE(172); END_STATE(); case 127: - if (lookahead == 'n') ADVANCE(172); + if (lookahead == 'u') ADVANCE(173); END_STATE(); case 128: - if (lookahead == 't') ADVANCE(173); + if (lookahead == 'o') ADVANCE(174); END_STATE(); case 129: - if (lookahead == 'n') ADVANCE(174); + if (lookahead == 'n') ADVANCE(175); END_STATE(); case 130: - if (lookahead == 'h') ADVANCE(175); + if (lookahead == 't') ADVANCE(176); END_STATE(); case 131: - if (lookahead == 'o') ADVANCE(176); + if (lookahead == 'n') ADVANCE(177); END_STATE(); case 132: - if (lookahead == 'r') ADVANCE(177); - END_STATE(); - case 133: if (lookahead == 'h') ADVANCE(178); END_STATE(); + case 133: + if (lookahead == 'o') ADVANCE(179); + END_STATE(); case 134: - if (lookahead == 'n') ADVANCE(179); + if (lookahead == 'r') ADVANCE(180); END_STATE(); case 135: - if (lookahead == 'o') ADVANCE(180); - END_STATE(); - case 136: if (lookahead == 'h') ADVANCE(181); END_STATE(); + case 136: + if (lookahead == 'n') ADVANCE(182); + END_STATE(); case 137: - if (lookahead == 'h') ADVANCE(182); + if (lookahead == 'o') ADVANCE(183); END_STATE(); case 138: - if (lookahead == 'i') ADVANCE(183); + if (lookahead == 'h') ADVANCE(184); END_STATE(); case 139: - if (lookahead == 'r') ADVANCE(184); + if (lookahead == 'h') ADVANCE(185); END_STATE(); case 140: - if (lookahead == 'i') ADVANCE(185); + if (lookahead == 'i') ADVANCE(186); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'r') ADVANCE(187); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_enum); + if (lookahead == 'i') ADVANCE(188); END_STATE(); case 143: - if (lookahead == 'e') ADVANCE(186); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 144: - if (lookahead == 'n') ADVANCE(187); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 145: - if (lookahead == 'e') ADVANCE(188); + if (lookahead == 'e') ADVANCE(189); END_STATE(); case 146: - if (lookahead == 't') ADVANCE(189); + if (lookahead == 'n') ADVANCE(190); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_func); - END_STATE(); - case 148: - ACCEPT_TOKEN(anon_sym_hide); - END_STATE(); - case 149: - if (lookahead == 'r') ADVANCE(190); - END_STATE(); - case 150: if (lookahead == 'e') ADVANCE(191); END_STATE(); + case 148: + if (lookahead == 't') ADVANCE(192); + END_STATE(); + case 149: + ACCEPT_TOKEN(anon_sym_func); + END_STATE(); + case 150: + ACCEPT_TOKEN(anon_sym_hide); + END_STATE(); case 151: - if (lookahead == 'h') ADVANCE(192); + if (lookahead == 'r') ADVANCE(193); END_STATE(); case 152: - ACCEPT_TOKEN(sym_none); + if (lookahead == 'e') ADVANCE(194); END_STATE(); case 153: - if (lookahead == 'u') ADVANCE(193); + if (lookahead == 'h') ADVANCE(195); END_STATE(); case 154: - if (lookahead == 's') ADVANCE(194); + ACCEPT_TOKEN(sym_none); END_STATE(); case 155: - if (lookahead == 'e') ADVANCE(195); + if (lookahead == 'u') ADVANCE(196); END_STATE(); case 156: - if (lookahead == 'r') ADVANCE(196); + if (lookahead == 's') ADVANCE(197); END_STATE(); case 157: - if (lookahead == 'c') ADVANCE(197); + if (lookahead == 'e') ADVANCE(198); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_test); + if (lookahead == 'r') ADVANCE(199); END_STATE(); case 159: - ACCEPT_TOKEN(anon_sym_true); + if (lookahead == 'c') ADVANCE(200); END_STATE(); case 160: - if (lookahead == 'f') ADVANCE(198); + ACCEPT_TOKEN(anon_sym_test); END_STATE(); case 161: - if (lookahead == 'n') ADVANCE(199); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 162: - if (lookahead == 'e') ADVANCE(200); + ACCEPT_TOKEN(anon_sym_uint); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_void); + if (lookahead == 'f') ADVANCE(201); END_STATE(); case 164: - if (lookahead == 'e') ADVANCE(201); + if (lookahead == 'n') ADVANCE(202); END_STATE(); case 165: - if (lookahead == 'd') ADVANCE(202); + if (lookahead == 'e') ADVANCE(203); END_STATE(); case 166: - ACCEPT_TOKEN(anon_sym_alias); + ACCEPT_TOKEN(anon_sym_void); END_STATE(); case 167: - if (lookahead == 'a') ADVANCE(203); + if (lookahead == 'e') ADVANCE(204); END_STATE(); case 168: - ACCEPT_TOKEN(anon_sym_break); + if (lookahead == 'd') ADVANCE(205); END_STATE(); case 169: - if (lookahead == 'r') ADVANCE(204); + ACCEPT_TOKEN(anon_sym_alias); END_STATE(); case 170: - if (lookahead == 'b') ADVANCE(205); - END_STATE(); - case 171: if (lookahead == 'a') ADVANCE(206); END_STATE(); + case 171: + ACCEPT_TOKEN(anon_sym_break); + END_STATE(); case 172: - if (lookahead == 'c') ADVANCE(207); + if (lookahead == 'r') ADVANCE(207); END_STATE(); case 173: - ACCEPT_TOKEN(anon_sym_c_int); + if (lookahead == 'b') ADVANCE(208); END_STATE(); case 174: - if (lookahead == 'g') ADVANCE(208); - END_STATE(); - case 175: if (lookahead == 'a') ADVANCE(209); END_STATE(); + case 175: + if (lookahead == 'c') ADVANCE(210); + END_STATE(); case 176: - if (lookahead == 'r') ADVANCE(210); + ACCEPT_TOKEN(anon_sym_c_int); END_STATE(); case 177: - if (lookahead == 'u') ADVANCE(211); + if (lookahead == 'g') ADVANCE(211); END_STATE(); case 178: if (lookahead == 'a') ADVANCE(212); END_STATE(); case 179: - if (lookahead == 't') ADVANCE(213); + if (lookahead == 'r') ADVANCE(213); END_STATE(); case 180: - if (lookahead == 'n') ADVANCE(214); + if (lookahead == 'u') ADVANCE(214); END_STATE(); case 181: - if (lookahead == 'o') ADVANCE(215); + if (lookahead == 'a') ADVANCE(215); END_STATE(); case 182: - ACCEPT_TOKEN(anon_sym_catch); + if (lookahead == 't') ADVANCE(216); END_STATE(); case 183: - if (lookahead == 'n') ADVANCE(216); - END_STATE(); - case 184: - ACCEPT_TOKEN(anon_sym_defer); - END_STATE(); - case 185: if (lookahead == 'n') ADVANCE(217); END_STATE(); + case 184: + if (lookahead == 'o') ADVANCE(218); + END_STATE(); + case 185: + ACCEPT_TOKEN(anon_sym_catch); + END_STATE(); case 186: - if (lookahead == 'f') ADVANCE(218); + if (lookahead == 'n') ADVANCE(219); END_STATE(); case 187: - if (lookahead == 'd') ADVANCE(219); + ACCEPT_TOKEN(anon_sym_defer); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_false); + if (lookahead == 'n') ADVANCE(220); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_float); + if (lookahead == 'f') ADVANCE(221); END_STATE(); case 190: - if (lookahead == 't') ADVANCE(220); + if (lookahead == 'd') ADVANCE(222); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_isize); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_match); + ACCEPT_TOKEN(anon_sym_float); END_STATE(); case 193: - if (lookahead == 'e') ADVANCE(221); + if (lookahead == 't') ADVANCE(223); END_STATE(); case 194: - if (lookahead == 'e') ADVANCE(222); + ACCEPT_TOKEN(anon_sym_isize); END_STATE(); case 195: - ACCEPT_TOKEN(anon_sym_range); + ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 196: - if (lookahead == 'n') ADVANCE(223); + if (lookahead == 'e') ADVANCE(224); END_STATE(); case 197: - if (lookahead == 't') ADVANCE(224); + if (lookahead == 'e') ADVANCE(225); END_STATE(); case 198: - if (lookahead == 'i') ADVANCE(225); + ACCEPT_TOKEN(anon_sym_range); END_STATE(); case 199: - ACCEPT_TOKEN(anon_sym_union); + if (lookahead == 'n') ADVANCE(226); END_STATE(); case 200: - ACCEPT_TOKEN(anon_sym_usize); + if (lookahead == 't') ADVANCE(227); END_STATE(); case 201: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 'i') ADVANCE(228); END_STATE(); case 202: - ACCEPT_TOKEN(anon_sym_yield); + ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 203: - if (lookahead == 'q') ADVANCE(226); + ACCEPT_TOKEN(anon_sym_usize); END_STATE(); case 204: - ACCEPT_TOKEN(anon_sym_c_char); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 205: - if (lookahead == 'l') ADVANCE(227); + ACCEPT_TOKEN(anon_sym_yield); END_STATE(); case 206: - if (lookahead == 't') ADVANCE(228); + if (lookahead == 'q') ADVANCE(229); END_STATE(); case 207: - ACCEPT_TOKEN(anon_sym_c_func); + ACCEPT_TOKEN(anon_sym_c_char); END_STATE(); case 208: - ACCEPT_TOKEN(anon_sym_c_long); - if (lookahead == 'd') ADVANCE(229); if (lookahead == 'l') ADVANCE(230); END_STATE(); case 209: - if (lookahead == 'r') ADVANCE(231); + if (lookahead == 't') ADVANCE(231); END_STATE(); case 210: - if (lookahead == 't') ADVANCE(232); + ACCEPT_TOKEN(anon_sym_c_func); END_STATE(); case 211: - if (lookahead == 'c') ADVANCE(233); + ACCEPT_TOKEN(anon_sym_c_long); + if (lookahead == 'd') ADVANCE(232); + if (lookahead == 'l') ADVANCE(233); END_STATE(); case 212: if (lookahead == 'r') ADVANCE(234); END_STATE(); case 213: - ACCEPT_TOKEN(anon_sym_c_uint); + if (lookahead == 't') ADVANCE(235); END_STATE(); case 214: - if (lookahead == 'g') ADVANCE(235); + if (lookahead == 'c') ADVANCE(236); END_STATE(); case 215: - if (lookahead == 'r') ADVANCE(236); + if (lookahead == 'r') ADVANCE(237); END_STATE(); case 216: - if (lookahead == 'u') ADVANCE(237); + ACCEPT_TOKEN(anon_sym_c_uint); END_STATE(); case 217: - if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'g') ADVANCE(238); END_STATE(); case 218: - if (lookahead == 'e') ADVANCE(239); + if (lookahead == 'r') ADVANCE(239); END_STATE(); case 219: - ACCEPT_TOKEN(anon_sym_expand); + if (lookahead == 'u') ADVANCE(240); END_STATE(); case 220: - ACCEPT_TOKEN(anon_sym_import); + if (lookahead == 'c') ADVANCE(241); END_STATE(); case 221: - ACCEPT_TOKEN(sym_opaque_type); - END_STATE(); - case 222: - ACCEPT_TOKEN(anon_sym_orelse); - END_STATE(); - case 223: - ACCEPT_TOKEN(anon_sym_return); - END_STATE(); - case 224: - ACCEPT_TOKEN(anon_sym_struct); - END_STATE(); - case 225: - if (lookahead == 'n') ADVANCE(240); - END_STATE(); - case 226: - if (lookahead == 'u') ADVANCE(241); - END_STATE(); - case 227: if (lookahead == 'e') ADVANCE(242); END_STATE(); + case 222: + ACCEPT_TOKEN(anon_sym_expand); + END_STATE(); + case 223: + ACCEPT_TOKEN(anon_sym_import); + END_STATE(); + case 224: + ACCEPT_TOKEN(sym_opaque_type); + END_STATE(); + case 225: + ACCEPT_TOKEN(anon_sym_orelse); + END_STATE(); + case 226: + ACCEPT_TOKEN(anon_sym_return); + END_STATE(); + case 227: + ACCEPT_TOKEN(anon_sym_struct); + END_STATE(); case 228: - ACCEPT_TOKEN(anon_sym_c_float); + if (lookahead == 'n') ADVANCE(243); END_STATE(); case 229: - if (lookahead == 'o') ADVANCE(243); + if (lookahead == 'u') ADVANCE(244); END_STATE(); case 230: - if (lookahead == 'o') ADVANCE(244); + if (lookahead == 'e') ADVANCE(245); END_STATE(); case 231: - ACCEPT_TOKEN(anon_sym_c_schar); + ACCEPT_TOKEN(anon_sym_c_float); END_STATE(); case 232: - ACCEPT_TOKEN(anon_sym_c_short); + if (lookahead == 'o') ADVANCE(246); END_STATE(); case 233: - if (lookahead == 't') ADVANCE(245); + if (lookahead == 'o') ADVANCE(247); END_STATE(); case 234: - ACCEPT_TOKEN(anon_sym_c_uchar); + ACCEPT_TOKEN(anon_sym_c_schar); END_STATE(); case 235: - ACCEPT_TOKEN(anon_sym_c_ulong); - if (lookahead == 'l') ADVANCE(246); + ACCEPT_TOKEN(anon_sym_c_short); END_STATE(); case 236: - if (lookahead == 't') ADVANCE(247); + if (lookahead == 't') ADVANCE(248); END_STATE(); case 237: - if (lookahead == 'e') ADVANCE(248); + ACCEPT_TOKEN(anon_sym_c_uchar); END_STATE(); case 238: - if (lookahead == 't') ADVANCE(249); + ACCEPT_TOKEN(anon_sym_c_ulong); + if (lookahead == 'l') ADVANCE(249); END_STATE(); case 239: - if (lookahead == 'r') ADVANCE(250); + if (lookahead == 't') ADVANCE(250); END_STATE(); case 240: if (lookahead == 'e') ADVANCE(251); END_STATE(); case 241: - if (lookahead == 'e') ADVANCE(252); + if (lookahead == 't') ADVANCE(252); END_STATE(); case 242: - ACCEPT_TOKEN(anon_sym_c_double); + if (lookahead == 'r') ADVANCE(253); END_STATE(); case 243: - if (lookahead == 'u') ADVANCE(253); + if (lookahead == 'e') ADVANCE(254); END_STATE(); case 244: - if (lookahead == 'n') ADVANCE(254); + if (lookahead == 'e') ADVANCE(255); END_STATE(); case 245: - ACCEPT_TOKEN(anon_sym_c_struct); + ACCEPT_TOKEN(anon_sym_c_double); END_STATE(); case 246: - if (lookahead == 'o') ADVANCE(255); + if (lookahead == 'u') ADVANCE(256); END_STATE(); case 247: - ACCEPT_TOKEN(anon_sym_c_ushort); + if (lookahead == 'n') ADVANCE(257); END_STATE(); case 248: - ACCEPT_TOKEN(anon_sym_continue); + ACCEPT_TOKEN(anon_sym_c_struct); END_STATE(); case 249: - ACCEPT_TOKEN(anon_sym_distinct); + if (lookahead == 'o') ADVANCE(258); END_STATE(); case 250: - ACCEPT_TOKEN(anon_sym_errdefer); + ACCEPT_TOKEN(anon_sym_c_ushort); END_STATE(); case 251: - if (lookahead == 'd') ADVANCE(256); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 252: - ACCEPT_TOKEN(anon_sym_anyopaque); + ACCEPT_TOKEN(anon_sym_distinct); END_STATE(); case 253: - if (lookahead == 'b') ADVANCE(257); + ACCEPT_TOKEN(anon_sym_errdefer); END_STATE(); case 254: - if (lookahead == 'g') ADVANCE(258); + if (lookahead == 'd') ADVANCE(259); END_STATE(); case 255: - if (lookahead == 'n') ADVANCE(259); + ACCEPT_TOKEN(anon_sym_anyopaque); END_STATE(); case 256: - ACCEPT_TOKEN(sym_undefined); + if (lookahead == 'b') ADVANCE(260); END_STATE(); case 257: - if (lookahead == 'l') ADVANCE(260); - END_STATE(); - case 258: - ACCEPT_TOKEN(anon_sym_c_longlong); - END_STATE(); - case 259: if (lookahead == 'g') ADVANCE(261); END_STATE(); + case 258: + if (lookahead == 'n') ADVANCE(262); + END_STATE(); + case 259: + ACCEPT_TOKEN(sym_undefined); + END_STATE(); case 260: - if (lookahead == 'e') ADVANCE(262); + if (lookahead == 'l') ADVANCE(263); END_STATE(); case 261: - ACCEPT_TOKEN(anon_sym_c_ulonglong); + ACCEPT_TOKEN(anon_sym_c_longlong); END_STATE(); case 262: + if (lookahead == 'g') ADVANCE(264); + END_STATE(); + case 263: + if (lookahead == 'e') ADVANCE(265); + END_STATE(); + case 264: + ACCEPT_TOKEN(anon_sym_c_ulonglong); + END_STATE(); + case 265: ACCEPT_TOKEN(anon_sym_c_longdouble); END_STATE(); default: @@ -9857,6 +9874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1), [anon_sym_bool] = ACTIONS(1), [anon_sym_int] = ACTIONS(1), + [anon_sym_uint] = ACTIONS(1), [anon_sym_float] = ACTIONS(1), [anon_sym_range] = ACTIONS(1), [anon_sym_i8] = ACTIONS(1), @@ -10013,6 +10031,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -10143,6 +10162,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -10273,6 +10293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -10403,6 +10424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -10533,6 +10555,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -10663,6 +10686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -10793,6 +10817,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -10923,6 +10948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -11053,6 +11079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -11183,6 +11210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -11313,6 +11341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -11443,6 +11472,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -11573,6 +11603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -11703,6 +11734,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -11833,6 +11865,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -11963,6 +11996,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -12093,6 +12127,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -12223,6 +12258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -12349,6 +12385,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -12440,6 +12477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(231), [anon_sym_bool] = ACTIONS(231), [anon_sym_int] = ACTIONS(231), + [anon_sym_uint] = ACTIONS(231), [anon_sym_float] = ACTIONS(231), [anon_sym_range] = ACTIONS(231), [anon_sym_i8] = ACTIONS(231), @@ -12551,6 +12589,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(245), [anon_sym_bool] = ACTIONS(245), [anon_sym_int] = ACTIONS(245), + [anon_sym_uint] = ACTIONS(245), [anon_sym_float] = ACTIONS(245), [anon_sym_range] = ACTIONS(245), [anon_sym_i8] = ACTIONS(245), @@ -12682,6 +12721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -12793,6 +12833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -12904,6 +12945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -13015,6 +13057,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -13106,6 +13149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(318), [anon_sym_bool] = ACTIONS(318), [anon_sym_int] = ACTIONS(318), + [anon_sym_uint] = ACTIONS(318), [anon_sym_float] = ACTIONS(318), [anon_sym_range] = ACTIONS(318), [anon_sym_i8] = ACTIONS(318), @@ -13237,6 +13281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -13328,6 +13373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(342), [anon_sym_bool] = ACTIONS(342), [anon_sym_int] = ACTIONS(342), + [anon_sym_uint] = ACTIONS(342), [anon_sym_float] = ACTIONS(342), [anon_sym_range] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), @@ -13439,6 +13485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(342), [anon_sym_bool] = ACTIONS(342), [anon_sym_int] = ACTIONS(342), + [anon_sym_uint] = ACTIONS(342), [anon_sym_float] = ACTIONS(342), [anon_sym_range] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), @@ -13570,6 +13617,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -13661,6 +13709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(366), [anon_sym_bool] = ACTIONS(366), [anon_sym_int] = ACTIONS(366), + [anon_sym_uint] = ACTIONS(366), [anon_sym_float] = ACTIONS(366), [anon_sym_range] = ACTIONS(366), [anon_sym_i8] = ACTIONS(366), @@ -13772,6 +13821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(366), [anon_sym_bool] = ACTIONS(366), [anon_sym_int] = ACTIONS(366), + [anon_sym_uint] = ACTIONS(366), [anon_sym_float] = ACTIONS(366), [anon_sym_range] = ACTIONS(366), [anon_sym_i8] = ACTIONS(366), @@ -13883,6 +13933,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(388), [anon_sym_bool] = ACTIONS(388), [anon_sym_int] = ACTIONS(388), + [anon_sym_uint] = ACTIONS(388), [anon_sym_float] = ACTIONS(388), [anon_sym_range] = ACTIONS(388), [anon_sym_i8] = ACTIONS(388), @@ -14014,6 +14065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -14105,6 +14157,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(391), [anon_sym_bool] = ACTIONS(391), [anon_sym_int] = ACTIONS(391), + [anon_sym_uint] = ACTIONS(391), [anon_sym_float] = ACTIONS(391), [anon_sym_range] = ACTIONS(391), [anon_sym_i8] = ACTIONS(391), @@ -14236,6 +14289,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -14327,6 +14381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(397), [anon_sym_bool] = ACTIONS(397), [anon_sym_int] = ACTIONS(397), + [anon_sym_uint] = ACTIONS(397), [anon_sym_float] = ACTIONS(397), [anon_sym_range] = ACTIONS(397), [anon_sym_i8] = ACTIONS(397), @@ -14458,6 +14513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -14569,6 +14625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -14680,6 +14737,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -14791,6 +14849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -14902,6 +14961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -15013,6 +15073,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -15124,6 +15185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -15235,6 +15297,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -15346,6 +15409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -15457,6 +15521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -15567,6 +15632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -15677,6 +15743,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(467), [anon_sym_bool] = ACTIONS(467), [anon_sym_int] = ACTIONS(467), + [anon_sym_uint] = ACTIONS(467), [anon_sym_float] = ACTIONS(467), [anon_sym_range] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), @@ -15787,6 +15854,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -15897,6 +15965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -16007,6 +16076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -16117,6 +16187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -16227,6 +16298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -16337,6 +16409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -16447,6 +16520,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -16557,6 +16631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -16667,6 +16742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -16777,6 +16853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -16887,6 +16964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -16997,6 +17075,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -17107,6 +17186,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -17217,6 +17297,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -17327,6 +17408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -17437,6 +17519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -17547,6 +17630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -17657,6 +17741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -17767,6 +17852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -17877,6 +17963,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -17987,6 +18074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -18097,6 +18185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -18207,6 +18296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -18317,6 +18407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -18427,6 +18518,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -18537,6 +18629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -18647,6 +18740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -18757,6 +18851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -18867,6 +18962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -18977,6 +19073,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -19087,6 +19184,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -19197,6 +19295,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -19307,6 +19406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -19417,6 +19517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -19527,6 +19628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -19637,6 +19739,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -19747,6 +19850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -19857,6 +19961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -19967,6 +20072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -20077,6 +20183,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -20187,6 +20294,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -20297,6 +20405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -20407,6 +20516,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -20517,6 +20627,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -20627,6 +20738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -20737,6 +20849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -20847,6 +20960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -20957,6 +21071,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -21067,6 +21182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -21177,6 +21293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -21287,6 +21404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -21397,6 +21515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -21507,6 +21626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -21617,6 +21737,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -21727,6 +21848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -21837,6 +21959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -21947,6 +22070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -22057,6 +22181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -22167,6 +22292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -22277,6 +22403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -22387,6 +22514,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -22497,6 +22625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -22607,6 +22736,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -22717,6 +22847,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -22827,6 +22958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -22937,6 +23069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -23047,6 +23180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -23157,6 +23291,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -23267,6 +23402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -23377,6 +23513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -23487,6 +23624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -23597,6 +23735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -23707,6 +23846,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -23817,6 +23957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -23927,6 +24068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -24037,6 +24179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -24147,6 +24290,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -24257,6 +24401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -24367,6 +24512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -24477,6 +24623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -24587,6 +24734,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -24697,6 +24845,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -24807,6 +24956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -24917,6 +25067,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -25027,6 +25178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -25137,6 +25289,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -25247,6 +25400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -25357,6 +25511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -25467,6 +25622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -25577,6 +25733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -25687,6 +25844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -25797,6 +25955,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -25907,6 +26066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -26017,6 +26177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -26127,6 +26288,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -26237,6 +26399,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -26347,6 +26510,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -26457,6 +26621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -26567,6 +26732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -26677,6 +26843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -26787,6 +26954,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -26897,6 +27065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -27007,6 +27176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -27117,6 +27287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -27227,6 +27398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -27337,6 +27509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -27447,6 +27620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -27557,6 +27731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -27667,6 +27842,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -27777,6 +27953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -27887,6 +28064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -27997,6 +28175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -28107,6 +28286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -28217,6 +28397,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -28327,6 +28508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -28437,6 +28619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -28547,6 +28730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -28657,6 +28841,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -28767,6 +28952,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -28877,6 +29063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -28987,6 +29174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -29097,6 +29285,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -29207,6 +29396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -29317,6 +29507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -29427,6 +29618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -29537,6 +29729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -29647,6 +29840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -29757,6 +29951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -29867,6 +30062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -29977,6 +30173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -30087,6 +30284,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -30197,6 +30395,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -30307,6 +30506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -30417,6 +30617,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -30527,6 +30728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -30637,6 +30839,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -30747,6 +30950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -30857,6 +31061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -30967,6 +31172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -31077,6 +31283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -31187,6 +31394,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -31297,6 +31505,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -31407,6 +31616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -31517,6 +31727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -31627,6 +31838,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -31737,6 +31949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -31847,6 +32060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -31957,6 +32171,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -32067,6 +32282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -32177,6 +32393,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -32287,6 +32504,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -32397,6 +32615,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -32507,6 +32726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -32617,6 +32837,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -32727,6 +32948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -32837,6 +33059,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -32947,6 +33170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -33057,6 +33281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -33167,6 +33392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -33277,6 +33503,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -33387,6 +33614,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -33497,6 +33725,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -33607,6 +33836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -33717,6 +33947,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -33827,6 +34058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -33937,6 +34169,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -34047,6 +34280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -34157,6 +34391,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -34267,6 +34502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -34377,6 +34613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -34487,6 +34724,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -34597,6 +34835,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -34707,6 +34946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -34817,6 +35057,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -34927,6 +35168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -35037,6 +35279,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -35147,6 +35390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -35257,6 +35501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -35367,6 +35612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -35477,6 +35723,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -35587,6 +35834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -35697,6 +35945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -35807,6 +36056,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -35917,6 +36167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -36027,6 +36278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -36137,6 +36389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -36247,6 +36500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -36357,6 +36611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -36467,6 +36722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -36577,6 +36833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -36687,6 +36944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -36797,6 +37055,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -36907,6 +37166,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -37017,6 +37277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -37127,6 +37388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -37237,6 +37499,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -37347,6 +37610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -37457,6 +37721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -37567,6 +37832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -37677,6 +37943,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -37787,6 +38054,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -37897,6 +38165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -38007,6 +38276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -38117,6 +38387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -38227,6 +38498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -38337,6 +38609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -38447,6 +38720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -38557,6 +38831,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -38667,6 +38942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -38777,6 +39053,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -38887,6 +39164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -38997,6 +39275,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -39107,6 +39386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -39217,6 +39497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -39327,6 +39608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -39437,6 +39719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -39547,6 +39830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -39657,6 +39941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -39767,6 +40052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -39877,6 +40163,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -39987,6 +40274,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -40097,6 +40385,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -40207,6 +40496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -40317,6 +40607,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -40427,6 +40718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -40537,6 +40829,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -40647,6 +40940,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -40757,6 +41051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -40867,6 +41162,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -40977,6 +41273,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -41087,6 +41384,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -41197,6 +41495,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -41307,6 +41606,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -41417,6 +41717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -41527,6 +41828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -41637,6 +41939,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -41747,6 +42050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -41857,6 +42161,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -41967,6 +42272,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -42077,6 +42383,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -42187,6 +42494,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -42297,6 +42605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -42407,6 +42716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -42517,6 +42827,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -42627,6 +42938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -42737,6 +43049,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -42847,6 +43160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -42957,6 +43271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -43067,6 +43382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -43177,6 +43493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -43287,6 +43604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -43397,6 +43715,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -43507,6 +43826,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -43617,6 +43937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -43727,6 +44048,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -43837,6 +44159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -43947,6 +44270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -44057,6 +44381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -44167,6 +44492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -44277,6 +44603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -44387,6 +44714,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -44497,6 +44825,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -44607,6 +44936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -44717,6 +45047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -44827,6 +45158,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -44937,6 +45269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -45047,6 +45380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -45157,6 +45491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -45267,6 +45602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -45377,6 +45713,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -45487,6 +45824,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -45597,6 +45935,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -45707,6 +46046,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -45817,6 +46157,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -45927,6 +46268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -46037,6 +46379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -46147,6 +46490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -46257,6 +46601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -46367,6 +46712,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -46477,6 +46823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -46587,6 +46934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -46696,6 +47044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -46805,6 +47154,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -46914,6 +47264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -47023,6 +47374,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -47132,6 +47484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -47241,6 +47594,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -47350,6 +47704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -47459,6 +47814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -47568,6 +47924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -47677,6 +48034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -47786,6 +48144,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -47895,6 +48254,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -48004,6 +48364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -48113,6 +48474,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -48222,6 +48584,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -48331,6 +48694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -48440,6 +48804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -48549,6 +48914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -48658,6 +49024,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -48767,6 +49134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -48876,6 +49244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -48985,6 +49354,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -49094,6 +49464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -49203,6 +49574,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -49312,6 +49684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -49421,6 +49794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -49530,6 +49904,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -49639,6 +50014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -49748,6 +50124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -49857,6 +50234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -49966,6 +50344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -50075,6 +50454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -50184,6 +50564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -50293,6 +50674,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -50402,6 +50784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -50511,6 +50894,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -50620,6 +51004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -50729,6 +51114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -50838,6 +51224,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -50947,6 +51334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -51056,6 +51444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -51165,6 +51554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -51274,6 +51664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -51383,6 +51774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -51492,6 +51884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -51601,6 +51994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -51710,6 +52104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -51819,6 +52214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -51928,6 +52324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -52037,6 +52434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -52146,6 +52544,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -52255,6 +52654,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -52364,6 +52764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -52473,6 +52874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -52559,6 +52961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(853), [anon_sym_bool] = ACTIONS(853), [anon_sym_int] = ACTIONS(853), + [anon_sym_uint] = ACTIONS(853), [anon_sym_float] = ACTIONS(853), [anon_sym_range] = ACTIONS(853), [anon_sym_i8] = ACTIONS(853), @@ -52666,6 +53069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(857), [anon_sym_bool] = ACTIONS(857), [anon_sym_int] = ACTIONS(857), + [anon_sym_uint] = ACTIONS(857), [anon_sym_float] = ACTIONS(857), [anon_sym_range] = ACTIONS(857), [anon_sym_i8] = ACTIONS(857), @@ -52773,6 +53177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(853), [anon_sym_bool] = ACTIONS(853), [anon_sym_int] = ACTIONS(853), + [anon_sym_uint] = ACTIONS(853), [anon_sym_float] = ACTIONS(853), [anon_sym_range] = ACTIONS(853), [anon_sym_i8] = ACTIONS(853), @@ -52880,6 +53285,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(863), [anon_sym_bool] = ACTIONS(863), [anon_sym_int] = ACTIONS(863), + [anon_sym_uint] = ACTIONS(863), [anon_sym_float] = ACTIONS(863), [anon_sym_range] = ACTIONS(863), [anon_sym_i8] = ACTIONS(863), @@ -52987,6 +53393,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(870), [anon_sym_bool] = ACTIONS(870), [anon_sym_int] = ACTIONS(870), + [anon_sym_uint] = ACTIONS(870), [anon_sym_float] = ACTIONS(870), [anon_sym_range] = ACTIONS(870), [anon_sym_i8] = ACTIONS(870), @@ -53094,6 +53501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(857), [anon_sym_bool] = ACTIONS(857), [anon_sym_int] = ACTIONS(857), + [anon_sym_uint] = ACTIONS(857), [anon_sym_float] = ACTIONS(857), [anon_sym_range] = ACTIONS(857), [anon_sym_i8] = ACTIONS(857), @@ -53200,6 +53608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(876), [anon_sym_bool] = ACTIONS(876), [anon_sym_int] = ACTIONS(876), + [anon_sym_uint] = ACTIONS(876), [anon_sym_float] = ACTIONS(876), [anon_sym_range] = ACTIONS(876), [anon_sym_i8] = ACTIONS(876), @@ -53306,6 +53715,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(880), [anon_sym_bool] = ACTIONS(880), [anon_sym_int] = ACTIONS(880), + [anon_sym_uint] = ACTIONS(880), [anon_sym_float] = ACTIONS(880), [anon_sym_range] = ACTIONS(880), [anon_sym_i8] = ACTIONS(880), @@ -53412,6 +53822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(884), [anon_sym_bool] = ACTIONS(884), [anon_sym_int] = ACTIONS(884), + [anon_sym_uint] = ACTIONS(884), [anon_sym_float] = ACTIONS(884), [anon_sym_range] = ACTIONS(884), [anon_sym_i8] = ACTIONS(884), @@ -53518,6 +53929,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(888), [anon_sym_bool] = ACTIONS(888), [anon_sym_int] = ACTIONS(888), + [anon_sym_uint] = ACTIONS(888), [anon_sym_float] = ACTIONS(888), [anon_sym_range] = ACTIONS(888), [anon_sym_i8] = ACTIONS(888), @@ -53624,6 +54036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(892), [anon_sym_bool] = ACTIONS(892), [anon_sym_int] = ACTIONS(892), + [anon_sym_uint] = ACTIONS(892), [anon_sym_float] = ACTIONS(892), [anon_sym_range] = ACTIONS(892), [anon_sym_i8] = ACTIONS(892), @@ -53730,6 +54143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(896), [anon_sym_bool] = ACTIONS(896), [anon_sym_int] = ACTIONS(896), + [anon_sym_uint] = ACTIONS(896), [anon_sym_float] = ACTIONS(896), [anon_sym_range] = ACTIONS(896), [anon_sym_i8] = ACTIONS(896), @@ -53836,6 +54250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(902), [anon_sym_bool] = ACTIONS(902), [anon_sym_int] = ACTIONS(902), + [anon_sym_uint] = ACTIONS(902), [anon_sym_float] = ACTIONS(902), [anon_sym_range] = ACTIONS(902), [anon_sym_i8] = ACTIONS(902), @@ -53942,6 +54357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(906), [anon_sym_bool] = ACTIONS(906), [anon_sym_int] = ACTIONS(906), + [anon_sym_uint] = ACTIONS(906), [anon_sym_float] = ACTIONS(906), [anon_sym_range] = ACTIONS(906), [anon_sym_i8] = ACTIONS(906), @@ -54048,6 +54464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(910), [anon_sym_bool] = ACTIONS(910), [anon_sym_int] = ACTIONS(910), + [anon_sym_uint] = ACTIONS(910), [anon_sym_float] = ACTIONS(910), [anon_sym_range] = ACTIONS(910), [anon_sym_i8] = ACTIONS(910), @@ -54154,6 +54571,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(914), [anon_sym_bool] = ACTIONS(914), [anon_sym_int] = ACTIONS(914), + [anon_sym_uint] = ACTIONS(914), [anon_sym_float] = ACTIONS(914), [anon_sym_range] = ACTIONS(914), [anon_sym_i8] = ACTIONS(914), @@ -54260,6 +54678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(918), [anon_sym_bool] = ACTIONS(918), [anon_sym_int] = ACTIONS(918), + [anon_sym_uint] = ACTIONS(918), [anon_sym_float] = ACTIONS(918), [anon_sym_range] = ACTIONS(918), [anon_sym_i8] = ACTIONS(918), @@ -54366,6 +54785,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(922), [anon_sym_bool] = ACTIONS(922), [anon_sym_int] = ACTIONS(922), + [anon_sym_uint] = ACTIONS(922), [anon_sym_float] = ACTIONS(922), [anon_sym_range] = ACTIONS(922), [anon_sym_i8] = ACTIONS(922), @@ -54472,6 +54892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(926), [anon_sym_bool] = ACTIONS(926), [anon_sym_int] = ACTIONS(926), + [anon_sym_uint] = ACTIONS(926), [anon_sym_float] = ACTIONS(926), [anon_sym_range] = ACTIONS(926), [anon_sym_i8] = ACTIONS(926), @@ -54578,6 +54999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(930), [anon_sym_bool] = ACTIONS(930), [anon_sym_int] = ACTIONS(930), + [anon_sym_uint] = ACTIONS(930), [anon_sym_float] = ACTIONS(930), [anon_sym_range] = ACTIONS(930), [anon_sym_i8] = ACTIONS(930), @@ -54684,6 +55106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(934), [anon_sym_bool] = ACTIONS(934), [anon_sym_int] = ACTIONS(934), + [anon_sym_uint] = ACTIONS(934), [anon_sym_float] = ACTIONS(934), [anon_sym_range] = ACTIONS(934), [anon_sym_i8] = ACTIONS(934), @@ -54791,6 +55214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(318), [anon_sym_bool] = ACTIONS(318), [anon_sym_int] = ACTIONS(318), + [anon_sym_uint] = ACTIONS(318), [anon_sym_float] = ACTIONS(318), [anon_sym_range] = ACTIONS(318), [anon_sym_i8] = ACTIONS(318), @@ -54896,6 +55320,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(940), [anon_sym_bool] = ACTIONS(940), [anon_sym_int] = ACTIONS(940), + [anon_sym_uint] = ACTIONS(940), [anon_sym_float] = ACTIONS(940), [anon_sym_range] = ACTIONS(940), [anon_sym_i8] = ACTIONS(940), @@ -55002,6 +55427,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(944), [anon_sym_bool] = ACTIONS(944), [anon_sym_int] = ACTIONS(944), + [anon_sym_uint] = ACTIONS(944), [anon_sym_float] = ACTIONS(944), [anon_sym_range] = ACTIONS(944), [anon_sym_i8] = ACTIONS(944), @@ -55108,6 +55534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(948), [anon_sym_bool] = ACTIONS(948), [anon_sym_int] = ACTIONS(948), + [anon_sym_uint] = ACTIONS(948), [anon_sym_float] = ACTIONS(948), [anon_sym_range] = ACTIONS(948), [anon_sym_i8] = ACTIONS(948), @@ -55214,6 +55641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(952), [anon_sym_bool] = ACTIONS(952), [anon_sym_int] = ACTIONS(952), + [anon_sym_uint] = ACTIONS(952), [anon_sym_float] = ACTIONS(952), [anon_sym_range] = ACTIONS(952), [anon_sym_i8] = ACTIONS(952), @@ -55321,6 +55749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(342), [anon_sym_bool] = ACTIONS(342), [anon_sym_int] = ACTIONS(342), + [anon_sym_uint] = ACTIONS(342), [anon_sym_float] = ACTIONS(342), [anon_sym_range] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), @@ -55427,6 +55856,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(342), [anon_sym_bool] = ACTIONS(342), [anon_sym_int] = ACTIONS(342), + [anon_sym_uint] = ACTIONS(342), [anon_sym_float] = ACTIONS(342), [anon_sym_range] = ACTIONS(342), [anon_sym_i8] = ACTIONS(342), @@ -55532,6 +55962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(863), [anon_sym_bool] = ACTIONS(863), [anon_sym_int] = ACTIONS(863), + [anon_sym_uint] = ACTIONS(863), [anon_sym_float] = ACTIONS(863), [anon_sym_range] = ACTIONS(863), [anon_sym_i8] = ACTIONS(863), @@ -55638,6 +56069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(958), [anon_sym_bool] = ACTIONS(958), [anon_sym_int] = ACTIONS(958), + [anon_sym_uint] = ACTIONS(958), [anon_sym_float] = ACTIONS(958), [anon_sym_range] = ACTIONS(958), [anon_sym_i8] = ACTIONS(958), @@ -55744,6 +56176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(962), [anon_sym_bool] = ACTIONS(962), [anon_sym_int] = ACTIONS(962), + [anon_sym_uint] = ACTIONS(962), [anon_sym_float] = ACTIONS(962), [anon_sym_range] = ACTIONS(962), [anon_sym_i8] = ACTIONS(962), @@ -55850,6 +56283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(966), [anon_sym_bool] = ACTIONS(966), [anon_sym_int] = ACTIONS(966), + [anon_sym_uint] = ACTIONS(966), [anon_sym_float] = ACTIONS(966), [anon_sym_range] = ACTIONS(966), [anon_sym_i8] = ACTIONS(966), @@ -55956,6 +56390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(970), [anon_sym_bool] = ACTIONS(970), [anon_sym_int] = ACTIONS(970), + [anon_sym_uint] = ACTIONS(970), [anon_sym_float] = ACTIONS(970), [anon_sym_range] = ACTIONS(970), [anon_sym_i8] = ACTIONS(970), @@ -56063,6 +56498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(366), [anon_sym_bool] = ACTIONS(366), [anon_sym_int] = ACTIONS(366), + [anon_sym_uint] = ACTIONS(366), [anon_sym_float] = ACTIONS(366), [anon_sym_range] = ACTIONS(366), [anon_sym_i8] = ACTIONS(366), @@ -56168,6 +56604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(974), [anon_sym_bool] = ACTIONS(974), [anon_sym_int] = ACTIONS(974), + [anon_sym_uint] = ACTIONS(974), [anon_sym_float] = ACTIONS(974), [anon_sym_range] = ACTIONS(974), [anon_sym_i8] = ACTIONS(974), @@ -56274,6 +56711,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(978), [anon_sym_bool] = ACTIONS(978), [anon_sym_int] = ACTIONS(978), + [anon_sym_uint] = ACTIONS(978), [anon_sym_float] = ACTIONS(978), [anon_sym_range] = ACTIONS(978), [anon_sym_i8] = ACTIONS(978), @@ -56380,6 +56818,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(982), [anon_sym_bool] = ACTIONS(982), [anon_sym_int] = ACTIONS(982), + [anon_sym_uint] = ACTIONS(982), [anon_sym_float] = ACTIONS(982), [anon_sym_range] = ACTIONS(982), [anon_sym_i8] = ACTIONS(982), @@ -56486,6 +56925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(986), [anon_sym_bool] = ACTIONS(986), [anon_sym_int] = ACTIONS(986), + [anon_sym_uint] = ACTIONS(986), [anon_sym_float] = ACTIONS(986), [anon_sym_range] = ACTIONS(986), [anon_sym_i8] = ACTIONS(986), @@ -56592,6 +57032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(990), [anon_sym_bool] = ACTIONS(990), [anon_sym_int] = ACTIONS(990), + [anon_sym_uint] = ACTIONS(990), [anon_sym_float] = ACTIONS(990), [anon_sym_range] = ACTIONS(990), [anon_sym_i8] = ACTIONS(990), @@ -56698,6 +57139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(994), [anon_sym_bool] = ACTIONS(994), [anon_sym_int] = ACTIONS(994), + [anon_sym_uint] = ACTIONS(994), [anon_sym_float] = ACTIONS(994), [anon_sym_range] = ACTIONS(994), [anon_sym_i8] = ACTIONS(994), @@ -56805,6 +57247,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1022), [anon_sym_bool] = ACTIONS(1022), [anon_sym_int] = ACTIONS(1022), + [anon_sym_uint] = ACTIONS(1022), [anon_sym_float] = ACTIONS(1022), [anon_sym_range] = ACTIONS(1022), [anon_sym_i8] = ACTIONS(1022), @@ -56911,6 +57354,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(366), [anon_sym_bool] = ACTIONS(366), [anon_sym_int] = ACTIONS(366), + [anon_sym_uint] = ACTIONS(366), [anon_sym_float] = ACTIONS(366), [anon_sym_range] = ACTIONS(366), [anon_sym_i8] = ACTIONS(366), @@ -57016,6 +57460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1032), [anon_sym_bool] = ACTIONS(1032), [anon_sym_int] = ACTIONS(1032), + [anon_sym_uint] = ACTIONS(1032), [anon_sym_float] = ACTIONS(1032), [anon_sym_range] = ACTIONS(1032), [anon_sym_i8] = ACTIONS(1032), @@ -57122,6 +57567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1036), [anon_sym_bool] = ACTIONS(1036), [anon_sym_int] = ACTIONS(1036), + [anon_sym_uint] = ACTIONS(1036), [anon_sym_float] = ACTIONS(1036), [anon_sym_range] = ACTIONS(1036), [anon_sym_i8] = ACTIONS(1036), @@ -57228,6 +57674,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1040), [anon_sym_bool] = ACTIONS(1040), [anon_sym_int] = ACTIONS(1040), + [anon_sym_uint] = ACTIONS(1040), [anon_sym_float] = ACTIONS(1040), [anon_sym_range] = ACTIONS(1040), [anon_sym_i8] = ACTIONS(1040), @@ -57335,6 +57782,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(388), [anon_sym_bool] = ACTIONS(388), [anon_sym_int] = ACTIONS(388), + [anon_sym_uint] = ACTIONS(388), [anon_sym_float] = ACTIONS(388), [anon_sym_range] = ACTIONS(388), [anon_sym_i8] = ACTIONS(388), @@ -57440,6 +57888,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1044), [anon_sym_bool] = ACTIONS(1044), [anon_sym_int] = ACTIONS(1044), + [anon_sym_uint] = ACTIONS(1044), [anon_sym_float] = ACTIONS(1044), [anon_sym_range] = ACTIONS(1044), [anon_sym_i8] = ACTIONS(1044), @@ -57546,6 +57995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1048), [anon_sym_bool] = ACTIONS(1048), [anon_sym_int] = ACTIONS(1048), + [anon_sym_uint] = ACTIONS(1048), [anon_sym_float] = ACTIONS(1048), [anon_sym_range] = ACTIONS(1048), [anon_sym_i8] = ACTIONS(1048), @@ -57652,6 +58102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1052), [anon_sym_bool] = ACTIONS(1052), [anon_sym_int] = ACTIONS(1052), + [anon_sym_uint] = ACTIONS(1052), [anon_sym_float] = ACTIONS(1052), [anon_sym_range] = ACTIONS(1052), [anon_sym_i8] = ACTIONS(1052), @@ -57758,6 +58209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1056), [anon_sym_bool] = ACTIONS(1056), [anon_sym_int] = ACTIONS(1056), + [anon_sym_uint] = ACTIONS(1056), [anon_sym_float] = ACTIONS(1056), [anon_sym_range] = ACTIONS(1056), [anon_sym_i8] = ACTIONS(1056), @@ -57864,6 +58316,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1062), [anon_sym_bool] = ACTIONS(1062), [anon_sym_int] = ACTIONS(1062), + [anon_sym_uint] = ACTIONS(1062), [anon_sym_float] = ACTIONS(1062), [anon_sym_range] = ACTIONS(1062), [anon_sym_i8] = ACTIONS(1062), @@ -57970,6 +58423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1066), [anon_sym_bool] = ACTIONS(1066), [anon_sym_int] = ACTIONS(1066), + [anon_sym_uint] = ACTIONS(1066), [anon_sym_float] = ACTIONS(1066), [anon_sym_range] = ACTIONS(1066), [anon_sym_i8] = ACTIONS(1066), @@ -58076,6 +58530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1070), [anon_sym_bool] = ACTIONS(1070), [anon_sym_int] = ACTIONS(1070), + [anon_sym_uint] = ACTIONS(1070), [anon_sym_float] = ACTIONS(1070), [anon_sym_range] = ACTIONS(1070), [anon_sym_i8] = ACTIONS(1070), @@ -58182,6 +58637,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1074), [anon_sym_bool] = ACTIONS(1074), [anon_sym_int] = ACTIONS(1074), + [anon_sym_uint] = ACTIONS(1074), [anon_sym_float] = ACTIONS(1074), [anon_sym_range] = ACTIONS(1074), [anon_sym_i8] = ACTIONS(1074), @@ -58288,6 +58744,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1078), [anon_sym_bool] = ACTIONS(1078), [anon_sym_int] = ACTIONS(1078), + [anon_sym_uint] = ACTIONS(1078), [anon_sym_float] = ACTIONS(1078), [anon_sym_range] = ACTIONS(1078), [anon_sym_i8] = ACTIONS(1078), @@ -58394,6 +58851,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1022), [anon_sym_bool] = ACTIONS(1022), [anon_sym_int] = ACTIONS(1022), + [anon_sym_uint] = ACTIONS(1022), [anon_sym_float] = ACTIONS(1022), [anon_sym_range] = ACTIONS(1022), [anon_sym_i8] = ACTIONS(1022), @@ -58500,6 +58958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1084), [anon_sym_bool] = ACTIONS(1084), [anon_sym_int] = ACTIONS(1084), + [anon_sym_uint] = ACTIONS(1084), [anon_sym_float] = ACTIONS(1084), [anon_sym_range] = ACTIONS(1084), [anon_sym_i8] = ACTIONS(1084), @@ -58606,6 +59065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1088), [anon_sym_bool] = ACTIONS(1088), [anon_sym_int] = ACTIONS(1088), + [anon_sym_uint] = ACTIONS(1088), [anon_sym_float] = ACTIONS(1088), [anon_sym_range] = ACTIONS(1088), [anon_sym_i8] = ACTIONS(1088), @@ -58712,6 +59172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1092), [anon_sym_bool] = ACTIONS(1092), [anon_sym_int] = ACTIONS(1092), + [anon_sym_uint] = ACTIONS(1092), [anon_sym_float] = ACTIONS(1092), [anon_sym_range] = ACTIONS(1092), [anon_sym_i8] = ACTIONS(1092), @@ -58845,6 +59306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -58924,6 +59386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1112), [anon_sym_bool] = ACTIONS(1112), [anon_sym_int] = ACTIONS(1112), + [anon_sym_uint] = ACTIONS(1112), [anon_sym_float] = ACTIONS(1112), [anon_sym_range] = ACTIONS(1112), [anon_sym_i8] = ACTIONS(1112), @@ -59030,6 +59493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1116), [anon_sym_bool] = ACTIONS(1116), [anon_sym_int] = ACTIONS(1116), + [anon_sym_uint] = ACTIONS(1116), [anon_sym_float] = ACTIONS(1116), [anon_sym_range] = ACTIONS(1116), [anon_sym_i8] = ACTIONS(1116), @@ -59136,6 +59600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1120), [anon_sym_bool] = ACTIONS(1120), [anon_sym_int] = ACTIONS(1120), + [anon_sym_uint] = ACTIONS(1120), [anon_sym_float] = ACTIONS(1120), [anon_sym_range] = ACTIONS(1120), [anon_sym_i8] = ACTIONS(1120), @@ -59242,6 +59707,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1126), [anon_sym_bool] = ACTIONS(1126), [anon_sym_int] = ACTIONS(1126), + [anon_sym_uint] = ACTIONS(1126), [anon_sym_float] = ACTIONS(1126), [anon_sym_range] = ACTIONS(1126), [anon_sym_i8] = ACTIONS(1126), @@ -59375,6 +59841,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -59454,6 +59921,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1136), [anon_sym_bool] = ACTIONS(1136), [anon_sym_int] = ACTIONS(1136), + [anon_sym_uint] = ACTIONS(1136), [anon_sym_float] = ACTIONS(1136), [anon_sym_range] = ACTIONS(1136), [anon_sym_i8] = ACTIONS(1136), @@ -59560,6 +60028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1140), [anon_sym_bool] = ACTIONS(1140), [anon_sym_int] = ACTIONS(1140), + [anon_sym_uint] = ACTIONS(1140), [anon_sym_float] = ACTIONS(1140), [anon_sym_range] = ACTIONS(1140), [anon_sym_i8] = ACTIONS(1140), @@ -59666,6 +60135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1144), [anon_sym_bool] = ACTIONS(1144), [anon_sym_int] = ACTIONS(1144), + [anon_sym_uint] = ACTIONS(1144), [anon_sym_float] = ACTIONS(1144), [anon_sym_range] = ACTIONS(1144), [anon_sym_i8] = ACTIONS(1144), @@ -59772,6 +60242,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1148), [anon_sym_bool] = ACTIONS(1148), [anon_sym_int] = ACTIONS(1148), + [anon_sym_uint] = ACTIONS(1148), [anon_sym_float] = ACTIONS(1148), [anon_sym_range] = ACTIONS(1148), [anon_sym_i8] = ACTIONS(1148), @@ -59878,6 +60349,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1152), [anon_sym_bool] = ACTIONS(1152), [anon_sym_int] = ACTIONS(1152), + [anon_sym_uint] = ACTIONS(1152), [anon_sym_float] = ACTIONS(1152), [anon_sym_range] = ACTIONS(1152), [anon_sym_i8] = ACTIONS(1152), @@ -59984,6 +60456,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1156), [anon_sym_bool] = ACTIONS(1156), [anon_sym_int] = ACTIONS(1156), + [anon_sym_uint] = ACTIONS(1156), [anon_sym_float] = ACTIONS(1156), [anon_sym_range] = ACTIONS(1156), [anon_sym_i8] = ACTIONS(1156), @@ -60090,6 +60563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1160), [anon_sym_bool] = ACTIONS(1160), [anon_sym_int] = ACTIONS(1160), + [anon_sym_uint] = ACTIONS(1160), [anon_sym_float] = ACTIONS(1160), [anon_sym_range] = ACTIONS(1160), [anon_sym_i8] = ACTIONS(1160), @@ -60222,6 +60696,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -60302,6 +60777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1022), [anon_sym_bool] = ACTIONS(1022), [anon_sym_int] = ACTIONS(1022), + [anon_sym_uint] = ACTIONS(1022), [anon_sym_float] = ACTIONS(1022), [anon_sym_range] = ACTIONS(1022), [anon_sym_i8] = ACTIONS(1022), @@ -60405,6 +60881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1168), [anon_sym_bool] = ACTIONS(1168), [anon_sym_int] = ACTIONS(1168), + [anon_sym_uint] = ACTIONS(1168), [anon_sym_float] = ACTIONS(1168), [anon_sym_range] = ACTIONS(1168), [anon_sym_i8] = ACTIONS(1168), @@ -60537,6 +61014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -60615,6 +61093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1174), [anon_sym_bool] = ACTIONS(1174), [anon_sym_int] = ACTIONS(1174), + [anon_sym_uint] = ACTIONS(1174), [anon_sym_float] = ACTIONS(1174), [anon_sym_range] = ACTIONS(1174), [anon_sym_i8] = ACTIONS(1174), @@ -60721,6 +61200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1022), [anon_sym_bool] = ACTIONS(1022), [anon_sym_int] = ACTIONS(1022), + [anon_sym_uint] = ACTIONS(1022), [anon_sym_float] = ACTIONS(1022), [anon_sym_range] = ACTIONS(1022), [anon_sym_i8] = ACTIONS(1022), @@ -60824,6 +61304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1178), [anon_sym_bool] = ACTIONS(1178), [anon_sym_int] = ACTIONS(1178), + [anon_sym_uint] = ACTIONS(1178), [anon_sym_float] = ACTIONS(1178), [anon_sym_range] = ACTIONS(1178), [anon_sym_i8] = ACTIONS(1178), @@ -60928,6 +61409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1186), [anon_sym_bool] = ACTIONS(1186), [anon_sym_int] = ACTIONS(1186), + [anon_sym_uint] = ACTIONS(1186), [anon_sym_float] = ACTIONS(1186), [anon_sym_range] = ACTIONS(1186), [anon_sym_i8] = ACTIONS(1186), @@ -61032,6 +61514,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1190), [anon_sym_bool] = ACTIONS(1190), [anon_sym_int] = ACTIONS(1190), + [anon_sym_uint] = ACTIONS(1190), [anon_sym_float] = ACTIONS(1190), [anon_sym_range] = ACTIONS(1190), [anon_sym_i8] = ACTIONS(1190), @@ -61136,6 +61619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1194), [anon_sym_bool] = ACTIONS(1194), [anon_sym_int] = ACTIONS(1194), + [anon_sym_uint] = ACTIONS(1194), [anon_sym_float] = ACTIONS(1194), [anon_sym_range] = ACTIONS(1194), [anon_sym_i8] = ACTIONS(1194), @@ -61239,6 +61723,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(247), [anon_sym_bool] = ACTIONS(247), [anon_sym_int] = ACTIONS(247), + [anon_sym_uint] = ACTIONS(247), [anon_sym_float] = ACTIONS(247), [anon_sym_range] = ACTIONS(247), [anon_sym_i8] = ACTIONS(247), @@ -61342,6 +61827,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1198), [anon_sym_bool] = ACTIONS(1198), [anon_sym_int] = ACTIONS(1198), + [anon_sym_uint] = ACTIONS(1198), [anon_sym_float] = ACTIONS(1198), [anon_sym_range] = ACTIONS(1198), [anon_sym_i8] = ACTIONS(1198), @@ -61445,6 +61931,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1202), [anon_sym_bool] = ACTIONS(1202), [anon_sym_int] = ACTIONS(1202), + [anon_sym_uint] = ACTIONS(1202), [anon_sym_float] = ACTIONS(1202), [anon_sym_range] = ACTIONS(1202), [anon_sym_i8] = ACTIONS(1202), @@ -61548,6 +62035,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1206), [anon_sym_bool] = ACTIONS(1206), [anon_sym_int] = ACTIONS(1206), + [anon_sym_uint] = ACTIONS(1206), [anon_sym_float] = ACTIONS(1206), [anon_sym_range] = ACTIONS(1206), [anon_sym_i8] = ACTIONS(1206), @@ -61651,6 +62139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1210), [anon_sym_bool] = ACTIONS(1210), [anon_sym_int] = ACTIONS(1210), + [anon_sym_uint] = ACTIONS(1210), [anon_sym_float] = ACTIONS(1210), [anon_sym_range] = ACTIONS(1210), [anon_sym_i8] = ACTIONS(1210), @@ -61754,6 +62243,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1214), [anon_sym_bool] = ACTIONS(1214), [anon_sym_int] = ACTIONS(1214), + [anon_sym_uint] = ACTIONS(1214), [anon_sym_float] = ACTIONS(1214), [anon_sym_range] = ACTIONS(1214), [anon_sym_i8] = ACTIONS(1214), @@ -61857,6 +62347,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1218), [anon_sym_bool] = ACTIONS(1218), [anon_sym_int] = ACTIONS(1218), + [anon_sym_uint] = ACTIONS(1218), [anon_sym_float] = ACTIONS(1218), [anon_sym_range] = ACTIONS(1218), [anon_sym_i8] = ACTIONS(1218), @@ -61960,6 +62451,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1222), [anon_sym_bool] = ACTIONS(1222), [anon_sym_int] = ACTIONS(1222), + [anon_sym_uint] = ACTIONS(1222), [anon_sym_float] = ACTIONS(1222), [anon_sym_range] = ACTIONS(1222), [anon_sym_i8] = ACTIONS(1222), @@ -62063,6 +62555,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1226), [anon_sym_bool] = ACTIONS(1226), [anon_sym_int] = ACTIONS(1226), + [anon_sym_uint] = ACTIONS(1226), [anon_sym_float] = ACTIONS(1226), [anon_sym_range] = ACTIONS(1226), [anon_sym_i8] = ACTIONS(1226), @@ -62166,6 +62659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1230), [anon_sym_bool] = ACTIONS(1230), [anon_sym_int] = ACTIONS(1230), + [anon_sym_uint] = ACTIONS(1230), [anon_sym_float] = ACTIONS(1230), [anon_sym_range] = ACTIONS(1230), [anon_sym_i8] = ACTIONS(1230), @@ -62269,6 +62763,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1234), [anon_sym_bool] = ACTIONS(1234), [anon_sym_int] = ACTIONS(1234), + [anon_sym_uint] = ACTIONS(1234), [anon_sym_float] = ACTIONS(1234), [anon_sym_range] = ACTIONS(1234), [anon_sym_i8] = ACTIONS(1234), @@ -62372,6 +62867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1238), [anon_sym_bool] = ACTIONS(1238), [anon_sym_int] = ACTIONS(1238), + [anon_sym_uint] = ACTIONS(1238), [anon_sym_float] = ACTIONS(1238), [anon_sym_range] = ACTIONS(1238), [anon_sym_i8] = ACTIONS(1238), @@ -62475,6 +62971,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1242), [anon_sym_bool] = ACTIONS(1242), [anon_sym_int] = ACTIONS(1242), + [anon_sym_uint] = ACTIONS(1242), [anon_sym_float] = ACTIONS(1242), [anon_sym_range] = ACTIONS(1242), [anon_sym_i8] = ACTIONS(1242), @@ -62578,6 +63075,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1246), [anon_sym_bool] = ACTIONS(1246), [anon_sym_int] = ACTIONS(1246), + [anon_sym_uint] = ACTIONS(1246), [anon_sym_float] = ACTIONS(1246), [anon_sym_range] = ACTIONS(1246), [anon_sym_i8] = ACTIONS(1246), @@ -62681,6 +63179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1250), [anon_sym_bool] = ACTIONS(1250), [anon_sym_int] = ACTIONS(1250), + [anon_sym_uint] = ACTIONS(1250), [anon_sym_float] = ACTIONS(1250), [anon_sym_range] = ACTIONS(1250), [anon_sym_i8] = ACTIONS(1250), @@ -62784,6 +63283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1254), [anon_sym_bool] = ACTIONS(1254), [anon_sym_int] = ACTIONS(1254), + [anon_sym_uint] = ACTIONS(1254), [anon_sym_float] = ACTIONS(1254), [anon_sym_range] = ACTIONS(1254), [anon_sym_i8] = ACTIONS(1254), @@ -62887,6 +63387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1258), [anon_sym_bool] = ACTIONS(1258), [anon_sym_int] = ACTIONS(1258), + [anon_sym_uint] = ACTIONS(1258), [anon_sym_float] = ACTIONS(1258), [anon_sym_range] = ACTIONS(1258), [anon_sym_i8] = ACTIONS(1258), @@ -62990,6 +63491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(397), [anon_sym_bool] = ACTIONS(397), [anon_sym_int] = ACTIONS(397), + [anon_sym_uint] = ACTIONS(397), [anon_sym_float] = ACTIONS(397), [anon_sym_range] = ACTIONS(397), [anon_sym_i8] = ACTIONS(397), @@ -63093,6 +63595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(231), [anon_sym_bool] = ACTIONS(231), [anon_sym_int] = ACTIONS(231), + [anon_sym_uint] = ACTIONS(231), [anon_sym_float] = ACTIONS(231), [anon_sym_range] = ACTIONS(231), [anon_sym_i8] = ACTIONS(231), @@ -63196,6 +63699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1262), [anon_sym_bool] = ACTIONS(1262), [anon_sym_int] = ACTIONS(1262), + [anon_sym_uint] = ACTIONS(1262), [anon_sym_float] = ACTIONS(1262), [anon_sym_range] = ACTIONS(1262), [anon_sym_i8] = ACTIONS(1262), @@ -63299,6 +63803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1266), [anon_sym_bool] = ACTIONS(1266), [anon_sym_int] = ACTIONS(1266), + [anon_sym_uint] = ACTIONS(1266), [anon_sym_float] = ACTIONS(1266), [anon_sym_range] = ACTIONS(1266), [anon_sym_i8] = ACTIONS(1266), @@ -63402,6 +63907,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1270), [anon_sym_bool] = ACTIONS(1270), [anon_sym_int] = ACTIONS(1270), + [anon_sym_uint] = ACTIONS(1270), [anon_sym_float] = ACTIONS(1270), [anon_sym_range] = ACTIONS(1270), [anon_sym_i8] = ACTIONS(1270), @@ -63505,6 +64011,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1274), [anon_sym_bool] = ACTIONS(1274), [anon_sym_int] = ACTIONS(1274), + [anon_sym_uint] = ACTIONS(1274), [anon_sym_float] = ACTIONS(1274), [anon_sym_range] = ACTIONS(1274), [anon_sym_i8] = ACTIONS(1274), @@ -63608,6 +64115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1278), [anon_sym_bool] = ACTIONS(1278), [anon_sym_int] = ACTIONS(1278), + [anon_sym_uint] = ACTIONS(1278), [anon_sym_float] = ACTIONS(1278), [anon_sym_range] = ACTIONS(1278), [anon_sym_i8] = ACTIONS(1278), @@ -63711,6 +64219,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1282), [anon_sym_bool] = ACTIONS(1282), [anon_sym_int] = ACTIONS(1282), + [anon_sym_uint] = ACTIONS(1282), [anon_sym_float] = ACTIONS(1282), [anon_sym_range] = ACTIONS(1282), [anon_sym_i8] = ACTIONS(1282), @@ -63814,6 +64323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1286), [anon_sym_bool] = ACTIONS(1286), [anon_sym_int] = ACTIONS(1286), + [anon_sym_uint] = ACTIONS(1286), [anon_sym_float] = ACTIONS(1286), [anon_sym_range] = ACTIONS(1286), [anon_sym_i8] = ACTIONS(1286), @@ -63917,6 +64427,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1006), [anon_sym_bool] = ACTIONS(1006), [anon_sym_int] = ACTIONS(1006), + [anon_sym_uint] = ACTIONS(1006), [anon_sym_float] = ACTIONS(1006), [anon_sym_range] = ACTIONS(1006), [anon_sym_i8] = ACTIONS(1006), @@ -64020,6 +64531,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1290), [anon_sym_bool] = ACTIONS(1290), [anon_sym_int] = ACTIONS(1290), + [anon_sym_uint] = ACTIONS(1290), [anon_sym_float] = ACTIONS(1290), [anon_sym_range] = ACTIONS(1290), [anon_sym_i8] = ACTIONS(1290), @@ -64123,6 +64635,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1294), [anon_sym_bool] = ACTIONS(1294), [anon_sym_int] = ACTIONS(1294), + [anon_sym_uint] = ACTIONS(1294), [anon_sym_float] = ACTIONS(1294), [anon_sym_range] = ACTIONS(1294), [anon_sym_i8] = ACTIONS(1294), @@ -64226,6 +64739,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1298), [anon_sym_bool] = ACTIONS(1298), [anon_sym_int] = ACTIONS(1298), + [anon_sym_uint] = ACTIONS(1298), [anon_sym_float] = ACTIONS(1298), [anon_sym_range] = ACTIONS(1298), [anon_sym_i8] = ACTIONS(1298), @@ -64329,6 +64843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1302), [anon_sym_bool] = ACTIONS(1302), [anon_sym_int] = ACTIONS(1302), + [anon_sym_uint] = ACTIONS(1302), [anon_sym_float] = ACTIONS(1302), [anon_sym_range] = ACTIONS(1302), [anon_sym_i8] = ACTIONS(1302), @@ -64432,6 +64947,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1306), [anon_sym_bool] = ACTIONS(1306), [anon_sym_int] = ACTIONS(1306), + [anon_sym_uint] = ACTIONS(1306), [anon_sym_float] = ACTIONS(1306), [anon_sym_range] = ACTIONS(1306), [anon_sym_i8] = ACTIONS(1306), @@ -64535,6 +65051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1310), [anon_sym_bool] = ACTIONS(1310), [anon_sym_int] = ACTIONS(1310), + [anon_sym_uint] = ACTIONS(1310), [anon_sym_float] = ACTIONS(1310), [anon_sym_range] = ACTIONS(1310), [anon_sym_i8] = ACTIONS(1310), @@ -64638,6 +65155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1314), [anon_sym_bool] = ACTIONS(1314), [anon_sym_int] = ACTIONS(1314), + [anon_sym_uint] = ACTIONS(1314), [anon_sym_float] = ACTIONS(1314), [anon_sym_range] = ACTIONS(1314), [anon_sym_i8] = ACTIONS(1314), @@ -64741,6 +65259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1318), [anon_sym_bool] = ACTIONS(1318), [anon_sym_int] = ACTIONS(1318), + [anon_sym_uint] = ACTIONS(1318), [anon_sym_float] = ACTIONS(1318), [anon_sym_range] = ACTIONS(1318), [anon_sym_i8] = ACTIONS(1318), @@ -64844,6 +65363,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1322), [anon_sym_bool] = ACTIONS(1322), [anon_sym_int] = ACTIONS(1322), + [anon_sym_uint] = ACTIONS(1322), [anon_sym_float] = ACTIONS(1322), [anon_sym_range] = ACTIONS(1322), [anon_sym_i8] = ACTIONS(1322), @@ -64947,6 +65467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(233), [anon_sym_bool] = ACTIONS(233), [anon_sym_int] = ACTIONS(233), + [anon_sym_uint] = ACTIONS(233), [anon_sym_float] = ACTIONS(233), [anon_sym_range] = ACTIONS(233), [anon_sym_i8] = ACTIONS(233), @@ -65050,6 +65571,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1326), [anon_sym_bool] = ACTIONS(1326), [anon_sym_int] = ACTIONS(1326), + [anon_sym_uint] = ACTIONS(1326), [anon_sym_float] = ACTIONS(1326), [anon_sym_range] = ACTIONS(1326), [anon_sym_i8] = ACTIONS(1326), @@ -65153,6 +65675,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1330), [anon_sym_bool] = ACTIONS(1330), [anon_sym_int] = ACTIONS(1330), + [anon_sym_uint] = ACTIONS(1330), [anon_sym_float] = ACTIONS(1330), [anon_sym_range] = ACTIONS(1330), [anon_sym_i8] = ACTIONS(1330), @@ -65256,6 +65779,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1334), [anon_sym_bool] = ACTIONS(1334), [anon_sym_int] = ACTIONS(1334), + [anon_sym_uint] = ACTIONS(1334), [anon_sym_float] = ACTIONS(1334), [anon_sym_range] = ACTIONS(1334), [anon_sym_i8] = ACTIONS(1334), @@ -65359,6 +65883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1338), [anon_sym_bool] = ACTIONS(1338), [anon_sym_int] = ACTIONS(1338), + [anon_sym_uint] = ACTIONS(1338), [anon_sym_float] = ACTIONS(1338), [anon_sym_range] = ACTIONS(1338), [anon_sym_i8] = ACTIONS(1338), @@ -65462,6 +65987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1342), [anon_sym_bool] = ACTIONS(1342), [anon_sym_int] = ACTIONS(1342), + [anon_sym_uint] = ACTIONS(1342), [anon_sym_float] = ACTIONS(1342), [anon_sym_range] = ACTIONS(1342), [anon_sym_i8] = ACTIONS(1342), @@ -65565,6 +66091,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1346), [anon_sym_bool] = ACTIONS(1346), [anon_sym_int] = ACTIONS(1346), + [anon_sym_uint] = ACTIONS(1346), [anon_sym_float] = ACTIONS(1346), [anon_sym_range] = ACTIONS(1346), [anon_sym_i8] = ACTIONS(1346), @@ -65668,6 +66195,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1350), [anon_sym_bool] = ACTIONS(1350), [anon_sym_int] = ACTIONS(1350), + [anon_sym_uint] = ACTIONS(1350), [anon_sym_float] = ACTIONS(1350), [anon_sym_range] = ACTIONS(1350), [anon_sym_i8] = ACTIONS(1350), @@ -65771,6 +66299,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1354), [anon_sym_bool] = ACTIONS(1354), [anon_sym_int] = ACTIONS(1354), + [anon_sym_uint] = ACTIONS(1354), [anon_sym_float] = ACTIONS(1354), [anon_sym_range] = ACTIONS(1354), [anon_sym_i8] = ACTIONS(1354), @@ -65874,6 +66403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1358), [anon_sym_bool] = ACTIONS(1358), [anon_sym_int] = ACTIONS(1358), + [anon_sym_uint] = ACTIONS(1358), [anon_sym_float] = ACTIONS(1358), [anon_sym_range] = ACTIONS(1358), [anon_sym_i8] = ACTIONS(1358), @@ -65977,6 +66507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1362), [anon_sym_bool] = ACTIONS(1362), [anon_sym_int] = ACTIONS(1362), + [anon_sym_uint] = ACTIONS(1362), [anon_sym_float] = ACTIONS(1362), [anon_sym_range] = ACTIONS(1362), [anon_sym_i8] = ACTIONS(1362), @@ -66080,6 +66611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1366), [anon_sym_bool] = ACTIONS(1366), [anon_sym_int] = ACTIONS(1366), + [anon_sym_uint] = ACTIONS(1366), [anon_sym_float] = ACTIONS(1366), [anon_sym_range] = ACTIONS(1366), [anon_sym_i8] = ACTIONS(1366), @@ -66183,6 +66715,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1370), [anon_sym_bool] = ACTIONS(1370), [anon_sym_int] = ACTIONS(1370), + [anon_sym_uint] = ACTIONS(1370), [anon_sym_float] = ACTIONS(1370), [anon_sym_range] = ACTIONS(1370), [anon_sym_i8] = ACTIONS(1370), @@ -66286,6 +66819,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1374), [anon_sym_bool] = ACTIONS(1374), [anon_sym_int] = ACTIONS(1374), + [anon_sym_uint] = ACTIONS(1374), [anon_sym_float] = ACTIONS(1374), [anon_sym_range] = ACTIONS(1374), [anon_sym_i8] = ACTIONS(1374), @@ -66389,6 +66923,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1378), [anon_sym_bool] = ACTIONS(1378), [anon_sym_int] = ACTIONS(1378), + [anon_sym_uint] = ACTIONS(1378), [anon_sym_float] = ACTIONS(1378), [anon_sym_range] = ACTIONS(1378), [anon_sym_i8] = ACTIONS(1378), @@ -66492,6 +67027,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1382), [anon_sym_bool] = ACTIONS(1382), [anon_sym_int] = ACTIONS(1382), + [anon_sym_uint] = ACTIONS(1382), [anon_sym_float] = ACTIONS(1382), [anon_sym_range] = ACTIONS(1382), [anon_sym_i8] = ACTIONS(1382), @@ -66595,6 +67131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1386), [anon_sym_bool] = ACTIONS(1386), [anon_sym_int] = ACTIONS(1386), + [anon_sym_uint] = ACTIONS(1386), [anon_sym_float] = ACTIONS(1386), [anon_sym_range] = ACTIONS(1386), [anon_sym_i8] = ACTIONS(1386), @@ -66698,6 +67235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1390), [anon_sym_bool] = ACTIONS(1390), [anon_sym_int] = ACTIONS(1390), + [anon_sym_uint] = ACTIONS(1390), [anon_sym_float] = ACTIONS(1390), [anon_sym_range] = ACTIONS(1390), [anon_sym_i8] = ACTIONS(1390), @@ -66801,6 +67339,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1394), [anon_sym_bool] = ACTIONS(1394), [anon_sym_int] = ACTIONS(1394), + [anon_sym_uint] = ACTIONS(1394), [anon_sym_float] = ACTIONS(1394), [anon_sym_range] = ACTIONS(1394), [anon_sym_i8] = ACTIONS(1394), @@ -66904,6 +67443,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1398), [anon_sym_bool] = ACTIONS(1398), [anon_sym_int] = ACTIONS(1398), + [anon_sym_uint] = ACTIONS(1398), [anon_sym_float] = ACTIONS(1398), [anon_sym_range] = ACTIONS(1398), [anon_sym_i8] = ACTIONS(1398), @@ -67007,6 +67547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1402), [anon_sym_bool] = ACTIONS(1402), [anon_sym_int] = ACTIONS(1402), + [anon_sym_uint] = ACTIONS(1402), [anon_sym_float] = ACTIONS(1402), [anon_sym_range] = ACTIONS(1402), [anon_sym_i8] = ACTIONS(1402), @@ -67110,6 +67651,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1406), [anon_sym_bool] = ACTIONS(1406), [anon_sym_int] = ACTIONS(1406), + [anon_sym_uint] = ACTIONS(1406), [anon_sym_float] = ACTIONS(1406), [anon_sym_range] = ACTIONS(1406), [anon_sym_i8] = ACTIONS(1406), @@ -67213,6 +67755,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1410), [anon_sym_bool] = ACTIONS(1410), [anon_sym_int] = ACTIONS(1410), + [anon_sym_uint] = ACTIONS(1410), [anon_sym_float] = ACTIONS(1410), [anon_sym_range] = ACTIONS(1410), [anon_sym_i8] = ACTIONS(1410), @@ -67316,6 +67859,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1414), [anon_sym_bool] = ACTIONS(1414), [anon_sym_int] = ACTIONS(1414), + [anon_sym_uint] = ACTIONS(1414), [anon_sym_float] = ACTIONS(1414), [anon_sym_range] = ACTIONS(1414), [anon_sym_i8] = ACTIONS(1414), @@ -67419,6 +67963,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1418), [anon_sym_bool] = ACTIONS(1418), [anon_sym_int] = ACTIONS(1418), + [anon_sym_uint] = ACTIONS(1418), [anon_sym_float] = ACTIONS(1418), [anon_sym_range] = ACTIONS(1418), [anon_sym_i8] = ACTIONS(1418), @@ -67522,6 +68067,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1422), [anon_sym_bool] = ACTIONS(1422), [anon_sym_int] = ACTIONS(1422), + [anon_sym_uint] = ACTIONS(1422), [anon_sym_float] = ACTIONS(1422), [anon_sym_range] = ACTIONS(1422), [anon_sym_i8] = ACTIONS(1422), @@ -67625,6 +68171,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1426), [anon_sym_bool] = ACTIONS(1426), [anon_sym_int] = ACTIONS(1426), + [anon_sym_uint] = ACTIONS(1426), [anon_sym_float] = ACTIONS(1426), [anon_sym_range] = ACTIONS(1426), [anon_sym_i8] = ACTIONS(1426), @@ -67728,6 +68275,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1430), [anon_sym_bool] = ACTIONS(1430), [anon_sym_int] = ACTIONS(1430), + [anon_sym_uint] = ACTIONS(1430), [anon_sym_float] = ACTIONS(1430), [anon_sym_range] = ACTIONS(1430), [anon_sym_i8] = ACTIONS(1430), @@ -67831,6 +68379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1434), [anon_sym_bool] = ACTIONS(1434), [anon_sym_int] = ACTIONS(1434), + [anon_sym_uint] = ACTIONS(1434), [anon_sym_float] = ACTIONS(1434), [anon_sym_range] = ACTIONS(1434), [anon_sym_i8] = ACTIONS(1434), @@ -67934,6 +68483,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1438), [anon_sym_bool] = ACTIONS(1438), [anon_sym_int] = ACTIONS(1438), + [anon_sym_uint] = ACTIONS(1438), [anon_sym_float] = ACTIONS(1438), [anon_sym_range] = ACTIONS(1438), [anon_sym_i8] = ACTIONS(1438), @@ -68037,6 +68587,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(391), [anon_sym_bool] = ACTIONS(391), [anon_sym_int] = ACTIONS(391), + [anon_sym_uint] = ACTIONS(391), [anon_sym_float] = ACTIONS(391), [anon_sym_range] = ACTIONS(391), [anon_sym_i8] = ACTIONS(391), @@ -68140,6 +68691,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(245), [anon_sym_bool] = ACTIONS(245), [anon_sym_int] = ACTIONS(245), + [anon_sym_uint] = ACTIONS(245), [anon_sym_float] = ACTIONS(245), [anon_sym_range] = ACTIONS(245), [anon_sym_i8] = ACTIONS(245), @@ -68243,6 +68795,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1442), [anon_sym_bool] = ACTIONS(1442), [anon_sym_int] = ACTIONS(1442), + [anon_sym_uint] = ACTIONS(1442), [anon_sym_float] = ACTIONS(1442), [anon_sym_range] = ACTIONS(1442), [anon_sym_i8] = ACTIONS(1442), @@ -68346,6 +68899,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1446), [anon_sym_bool] = ACTIONS(1446), [anon_sym_int] = ACTIONS(1446), + [anon_sym_uint] = ACTIONS(1446), [anon_sym_float] = ACTIONS(1446), [anon_sym_range] = ACTIONS(1446), [anon_sym_i8] = ACTIONS(1446), @@ -68449,6 +69003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1450), [anon_sym_bool] = ACTIONS(1450), [anon_sym_int] = ACTIONS(1450), + [anon_sym_uint] = ACTIONS(1450), [anon_sym_float] = ACTIONS(1450), [anon_sym_range] = ACTIONS(1450), [anon_sym_i8] = ACTIONS(1450), @@ -68552,6 +69107,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1454), [anon_sym_bool] = ACTIONS(1454), [anon_sym_int] = ACTIONS(1454), + [anon_sym_uint] = ACTIONS(1454), [anon_sym_float] = ACTIONS(1454), [anon_sym_range] = ACTIONS(1454), [anon_sym_i8] = ACTIONS(1454), @@ -68655,6 +69211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1198), [anon_sym_bool] = ACTIONS(1198), [anon_sym_int] = ACTIONS(1198), + [anon_sym_uint] = ACTIONS(1198), [anon_sym_float] = ACTIONS(1198), [anon_sym_range] = ACTIONS(1198), [anon_sym_i8] = ACTIONS(1198), @@ -68758,6 +69315,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1458), [anon_sym_bool] = ACTIONS(1458), [anon_sym_int] = ACTIONS(1458), + [anon_sym_uint] = ACTIONS(1458), [anon_sym_float] = ACTIONS(1458), [anon_sym_range] = ACTIONS(1458), [anon_sym_i8] = ACTIONS(1458), @@ -68861,6 +69419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1462), [anon_sym_bool] = ACTIONS(1462), [anon_sym_int] = ACTIONS(1462), + [anon_sym_uint] = ACTIONS(1462), [anon_sym_float] = ACTIONS(1462), [anon_sym_range] = ACTIONS(1462), [anon_sym_i8] = ACTIONS(1462), @@ -68963,6 +69522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1466), [anon_sym_bool] = ACTIONS(1466), [anon_sym_int] = ACTIONS(1466), + [anon_sym_uint] = ACTIONS(1466), [anon_sym_float] = ACTIONS(1466), [anon_sym_range] = ACTIONS(1466), [anon_sym_i8] = ACTIONS(1466), @@ -69084,6 +69644,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -69165,6 +69726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1006), [anon_sym_bool] = ACTIONS(1006), [anon_sym_int] = ACTIONS(1006), + [anon_sym_uint] = ACTIONS(1006), [anon_sym_float] = ACTIONS(1006), [anon_sym_range] = ACTIONS(1006), [anon_sym_i8] = ACTIONS(1006), @@ -69266,6 +69828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1178), [anon_sym_bool] = ACTIONS(1178), [anon_sym_int] = ACTIONS(1178), + [anon_sym_uint] = ACTIONS(1178), [anon_sym_float] = ACTIONS(1178), [anon_sym_range] = ACTIONS(1178), [anon_sym_i8] = ACTIONS(1178), @@ -69366,6 +69929,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1178), [anon_sym_bool] = ACTIONS(1178), [anon_sym_int] = ACTIONS(1178), + [anon_sym_uint] = ACTIONS(1178), [anon_sym_float] = ACTIONS(1178), [anon_sym_range] = ACTIONS(1178), [anon_sym_i8] = ACTIONS(1178), @@ -69466,6 +70030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1242), [anon_sym_bool] = ACTIONS(1242), [anon_sym_int] = ACTIONS(1242), + [anon_sym_uint] = ACTIONS(1242), [anon_sym_float] = ACTIONS(1242), [anon_sym_range] = ACTIONS(1242), [anon_sym_i8] = ACTIONS(1242), @@ -69586,6 +70151,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -69666,6 +70232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1178), [anon_sym_bool] = ACTIONS(1178), [anon_sym_int] = ACTIONS(1178), + [anon_sym_uint] = ACTIONS(1178), [anon_sym_float] = ACTIONS(1178), [anon_sym_range] = ACTIONS(1178), [anon_sym_i8] = ACTIONS(1178), @@ -69766,6 +70333,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1483), [anon_sym_bool] = ACTIONS(1483), [anon_sym_int] = ACTIONS(1483), + [anon_sym_uint] = ACTIONS(1483), [anon_sym_float] = ACTIONS(1483), [anon_sym_range] = ACTIONS(1483), [anon_sym_i8] = ACTIONS(1483), @@ -69866,6 +70434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1483), [anon_sym_bool] = ACTIONS(1483), [anon_sym_int] = ACTIONS(1483), + [anon_sym_uint] = ACTIONS(1483), [anon_sym_float] = ACTIONS(1483), [anon_sym_range] = ACTIONS(1483), [anon_sym_i8] = ACTIONS(1483), @@ -69966,6 +70535,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1190), [anon_sym_bool] = ACTIONS(1190), [anon_sym_int] = ACTIONS(1190), + [anon_sym_uint] = ACTIONS(1190), [anon_sym_float] = ACTIONS(1190), [anon_sym_range] = ACTIONS(1190), [anon_sym_i8] = ACTIONS(1190), @@ -70066,6 +70636,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1178), [anon_sym_bool] = ACTIONS(1178), [anon_sym_int] = ACTIONS(1178), + [anon_sym_uint] = ACTIONS(1178), [anon_sym_float] = ACTIONS(1178), [anon_sym_range] = ACTIONS(1178), [anon_sym_i8] = ACTIONS(1178), @@ -70166,6 +70737,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1190), [anon_sym_bool] = ACTIONS(1190), [anon_sym_int] = ACTIONS(1190), + [anon_sym_uint] = ACTIONS(1190), [anon_sym_float] = ACTIONS(1190), [anon_sym_range] = ACTIONS(1190), [anon_sym_i8] = ACTIONS(1190), @@ -70266,6 +70838,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1487), [anon_sym_bool] = ACTIONS(1487), [anon_sym_int] = ACTIONS(1487), + [anon_sym_uint] = ACTIONS(1487), [anon_sym_float] = ACTIONS(1487), [anon_sym_range] = ACTIONS(1487), [anon_sym_i8] = ACTIONS(1487), @@ -70366,6 +70939,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1190), [anon_sym_bool] = ACTIONS(1190), [anon_sym_int] = ACTIONS(1190), + [anon_sym_uint] = ACTIONS(1190), [anon_sym_float] = ACTIONS(1190), [anon_sym_range] = ACTIONS(1190), [anon_sym_i8] = ACTIONS(1190), @@ -70466,6 +71040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1190), [anon_sym_bool] = ACTIONS(1190), [anon_sym_int] = ACTIONS(1190), + [anon_sym_uint] = ACTIONS(1190), [anon_sym_float] = ACTIONS(1190), [anon_sym_range] = ACTIONS(1190), [anon_sym_i8] = ACTIONS(1190), @@ -70566,6 +71141,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1487), [anon_sym_bool] = ACTIONS(1487), [anon_sym_int] = ACTIONS(1487), + [anon_sym_uint] = ACTIONS(1487), [anon_sym_float] = ACTIONS(1487), [anon_sym_range] = ACTIONS(1487), [anon_sym_i8] = ACTIONS(1487), @@ -70665,6 +71241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1070), [anon_sym_bool] = ACTIONS(1070), [anon_sym_int] = ACTIONS(1070), + [anon_sym_uint] = ACTIONS(1070), [anon_sym_float] = ACTIONS(1070), [anon_sym_range] = ACTIONS(1070), [anon_sym_i8] = ACTIONS(1070), @@ -70764,6 +71341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1036), [anon_sym_bool] = ACTIONS(1036), [anon_sym_int] = ACTIONS(1036), + [anon_sym_uint] = ACTIONS(1036), [anon_sym_float] = ACTIONS(1036), [anon_sym_range] = ACTIONS(1036), [anon_sym_i8] = ACTIONS(1036), @@ -70863,6 +71441,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1140), [anon_sym_bool] = ACTIONS(1140), [anon_sym_int] = ACTIONS(1140), + [anon_sym_uint] = ACTIONS(1140), [anon_sym_float] = ACTIONS(1140), [anon_sym_range] = ACTIONS(1140), [anon_sym_i8] = ACTIONS(1140), @@ -70986,6 +71565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -71059,6 +71639,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1178), [anon_sym_bool] = ACTIONS(1178), [anon_sym_int] = ACTIONS(1178), + [anon_sym_uint] = ACTIONS(1178), [anon_sym_float] = ACTIONS(1178), [anon_sym_range] = ACTIONS(1178), [anon_sym_i8] = ACTIONS(1178), @@ -71157,6 +71738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1190), [anon_sym_bool] = ACTIONS(1190), [anon_sym_int] = ACTIONS(1190), + [anon_sym_uint] = ACTIONS(1190), [anon_sym_float] = ACTIONS(1190), [anon_sym_range] = ACTIONS(1190), [anon_sym_i8] = ACTIONS(1190), @@ -71280,6 +71862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -71359,6 +71942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1022), [anon_sym_bool] = ACTIONS(1022), [anon_sym_int] = ACTIONS(1022), + [anon_sym_uint] = ACTIONS(1022), [anon_sym_float] = ACTIONS(1022), [anon_sym_range] = ACTIONS(1022), [anon_sym_i8] = ACTIONS(1022), @@ -71445,6 +72029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1190), [anon_sym_bool] = ACTIONS(1190), [anon_sym_int] = ACTIONS(1190), + [anon_sym_uint] = ACTIONS(1190), [anon_sym_float] = ACTIONS(1190), [anon_sym_range] = ACTIONS(1190), [anon_sym_i8] = ACTIONS(1190), @@ -71565,6 +72150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -71635,6 +72221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1178), [anon_sym_bool] = ACTIONS(1178), [anon_sym_int] = ACTIONS(1178), + [anon_sym_uint] = ACTIONS(1178), [anon_sym_float] = ACTIONS(1178), [anon_sym_range] = ACTIONS(1178), [anon_sym_i8] = ACTIONS(1178), @@ -71730,6 +72317,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1190), [anon_sym_bool] = ACTIONS(1190), [anon_sym_int] = ACTIONS(1190), + [anon_sym_uint] = ACTIONS(1190), [anon_sym_float] = ACTIONS(1190), [anon_sym_range] = ACTIONS(1190), [anon_sym_i8] = ACTIONS(1190), @@ -71825,6 +72413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1178), [anon_sym_bool] = ACTIONS(1178), [anon_sym_int] = ACTIONS(1178), + [anon_sym_uint] = ACTIONS(1178), [anon_sym_float] = ACTIONS(1178), [anon_sym_range] = ACTIONS(1178), [anon_sym_i8] = ACTIONS(1178), @@ -71920,6 +72509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1487), [anon_sym_bool] = ACTIONS(1487), [anon_sym_int] = ACTIONS(1487), + [anon_sym_uint] = ACTIONS(1487), [anon_sym_float] = ACTIONS(1487), [anon_sym_range] = ACTIONS(1487), [anon_sym_i8] = ACTIONS(1487), @@ -72015,6 +72605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1186), [anon_sym_bool] = ACTIONS(1186), [anon_sym_int] = ACTIONS(1186), + [anon_sym_uint] = ACTIONS(1186), [anon_sym_float] = ACTIONS(1186), [anon_sym_range] = ACTIONS(1186), [anon_sym_i8] = ACTIONS(1186), @@ -72110,6 +72701,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1190), [anon_sym_bool] = ACTIONS(1190), [anon_sym_int] = ACTIONS(1190), + [anon_sym_uint] = ACTIONS(1190), [anon_sym_float] = ACTIONS(1190), [anon_sym_range] = ACTIONS(1190), [anon_sym_i8] = ACTIONS(1190), @@ -72205,6 +72797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1194), [anon_sym_bool] = ACTIONS(1194), [anon_sym_int] = ACTIONS(1194), + [anon_sym_uint] = ACTIONS(1194), [anon_sym_float] = ACTIONS(1194), [anon_sym_range] = ACTIONS(1194), [anon_sym_i8] = ACTIONS(1194), @@ -72300,6 +72893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1194), [anon_sym_bool] = ACTIONS(1194), [anon_sym_int] = ACTIONS(1194), + [anon_sym_uint] = ACTIONS(1194), [anon_sym_float] = ACTIONS(1194), [anon_sym_range] = ACTIONS(1194), [anon_sym_i8] = ACTIONS(1194), @@ -72395,6 +72989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1178), [anon_sym_bool] = ACTIONS(1178), [anon_sym_int] = ACTIONS(1178), + [anon_sym_uint] = ACTIONS(1178), [anon_sym_float] = ACTIONS(1178), [anon_sym_range] = ACTIONS(1178), [anon_sym_i8] = ACTIONS(1178), @@ -72490,6 +73085,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1190), [anon_sym_bool] = ACTIONS(1190), [anon_sym_int] = ACTIONS(1190), + [anon_sym_uint] = ACTIONS(1190), [anon_sym_float] = ACTIONS(1190), [anon_sym_range] = ACTIONS(1190), [anon_sym_i8] = ACTIONS(1190), @@ -72585,6 +73181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1190), [anon_sym_bool] = ACTIONS(1190), [anon_sym_int] = ACTIONS(1190), + [anon_sym_uint] = ACTIONS(1190), [anon_sym_float] = ACTIONS(1190), [anon_sym_range] = ACTIONS(1190), [anon_sym_i8] = ACTIONS(1190), @@ -72680,6 +73277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1186), [anon_sym_bool] = ACTIONS(1186), [anon_sym_int] = ACTIONS(1186), + [anon_sym_uint] = ACTIONS(1186), [anon_sym_float] = ACTIONS(1186), [anon_sym_range] = ACTIONS(1186), [anon_sym_i8] = ACTIONS(1186), @@ -72775,6 +73373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1487), [anon_sym_bool] = ACTIONS(1487), [anon_sym_int] = ACTIONS(1487), + [anon_sym_uint] = ACTIONS(1487), [anon_sym_float] = ACTIONS(1487), [anon_sym_range] = ACTIONS(1487), [anon_sym_i8] = ACTIONS(1487), @@ -72870,6 +73469,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1178), [anon_sym_bool] = ACTIONS(1178), [anon_sym_int] = ACTIONS(1178), + [anon_sym_uint] = ACTIONS(1178), [anon_sym_float] = ACTIONS(1178), [anon_sym_range] = ACTIONS(1178), [anon_sym_i8] = ACTIONS(1178), @@ -72990,6 +73590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -73060,6 +73661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1178), [anon_sym_bool] = ACTIONS(1178), [anon_sym_int] = ACTIONS(1178), + [anon_sym_uint] = ACTIONS(1178), [anon_sym_float] = ACTIONS(1178), [anon_sym_range] = ACTIONS(1178), [anon_sym_i8] = ACTIONS(1178), @@ -73155,6 +73757,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1483), [anon_sym_bool] = ACTIONS(1483), [anon_sym_int] = ACTIONS(1483), + [anon_sym_uint] = ACTIONS(1483), [anon_sym_float] = ACTIONS(1483), [anon_sym_range] = ACTIONS(1483), [anon_sym_i8] = ACTIONS(1483), @@ -73260,6 +73863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1022), [anon_sym_bool] = ACTIONS(1022), [anon_sym_int] = ACTIONS(1022), + [anon_sym_uint] = ACTIONS(1022), [anon_sym_float] = ACTIONS(1022), [anon_sym_range] = ACTIONS(1022), [anon_sym_i8] = ACTIONS(1022), @@ -73345,6 +73949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1483), [anon_sym_bool] = ACTIONS(1483), [anon_sym_int] = ACTIONS(1483), + [anon_sym_uint] = ACTIONS(1483), [anon_sym_float] = ACTIONS(1483), [anon_sym_range] = ACTIONS(1483), [anon_sym_i8] = ACTIONS(1483), @@ -73465,6 +74070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -73559,6 +74165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -73628,6 +74235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1509), [anon_sym_bool] = ACTIONS(1509), [anon_sym_int] = ACTIONS(1509), + [anon_sym_uint] = ACTIONS(1509), [anon_sym_float] = ACTIONS(1509), [anon_sym_range] = ACTIONS(1509), [anon_sym_i8] = ACTIONS(1509), @@ -73747,6 +74355,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -73841,6 +74450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -73935,6 +74545,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -74029,6 +74640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -74123,6 +74735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -74217,6 +74830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -74311,6 +74925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -74405,6 +75020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -74499,6 +75115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -74593,6 +75210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -74687,6 +75305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -74781,6 +75400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -74875,6 +75495,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -74969,6 +75590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -75063,6 +75685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -75131,6 +75754,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1190), [anon_sym_bool] = ACTIONS(1190), [anon_sym_int] = ACTIONS(1190), + [anon_sym_uint] = ACTIONS(1190), [anon_sym_float] = ACTIONS(1190), [anon_sym_range] = ACTIONS(1190), [anon_sym_i8] = ACTIONS(1190), @@ -75225,6 +75849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1178), [anon_sym_bool] = ACTIONS(1178), [anon_sym_int] = ACTIONS(1178), + [anon_sym_uint] = ACTIONS(1178), [anon_sym_float] = ACTIONS(1178), [anon_sym_range] = ACTIONS(1178), [anon_sym_i8] = ACTIONS(1178), @@ -75344,6 +75969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -75439,6 +76065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -75533,6 +76160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -75627,6 +76255,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -75721,6 +76350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -75815,6 +76445,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -75909,6 +76540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -76003,6 +76635,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -76097,6 +76730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -76191,6 +76825,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -76285,6 +76920,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -76379,6 +77015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -76473,6 +77110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -76567,6 +77205,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -76661,6 +77300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -76755,6 +77395,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -76849,6 +77490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -76943,6 +77585,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -77037,6 +77680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -77131,6 +77775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -77225,6 +77870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -77319,6 +77965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -77413,6 +78060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -77507,6 +78155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -77601,6 +78250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -77695,6 +78345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -77789,6 +78440,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -77883,6 +78535,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -77977,6 +78630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -78071,6 +78725,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -78165,6 +78820,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -78259,6 +78915,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -78353,6 +79010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -78447,6 +79105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -78541,6 +79200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -78635,6 +79295,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -78729,6 +79390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -78823,6 +79485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -78917,6 +79580,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -79011,6 +79675,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -79105,6 +79770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -79199,6 +79865,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -79293,6 +79960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -79387,6 +80055,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -79481,6 +80150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -79575,6 +80245,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -79669,6 +80340,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -79763,6 +80435,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -79857,6 +80530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -79951,6 +80625,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -80045,6 +80720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -80139,6 +80815,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -80233,6 +80910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -80327,6 +81005,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -80421,6 +81100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -80515,6 +81195,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -80609,6 +81290,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -80703,6 +81385,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -80797,6 +81480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -80891,6 +81575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -80985,6 +81670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -81053,6 +81739,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1509), [anon_sym_bool] = ACTIONS(1509), [anon_sym_int] = ACTIONS(1509), + [anon_sym_uint] = ACTIONS(1509), [anon_sym_float] = ACTIONS(1509), [anon_sym_range] = ACTIONS(1509), [anon_sym_i8] = ACTIONS(1509), @@ -81173,6 +81860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -81267,6 +81955,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -81361,6 +82050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -81455,6 +82145,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -81549,6 +82240,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -81643,6 +82335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -81737,6 +82430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -81831,6 +82525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -81924,6 +82619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -81992,6 +82688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1509), [anon_sym_bool] = ACTIONS(1509), [anon_sym_int] = ACTIONS(1509), + [anon_sym_uint] = ACTIONS(1509), [anon_sym_float] = ACTIONS(1509), [anon_sym_range] = ACTIONS(1509), [anon_sym_i8] = ACTIONS(1509), @@ -82110,6 +82807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -82203,6 +82901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -82296,6 +82995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -82389,6 +83089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -82482,6 +83183,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -82575,6 +83277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -82668,6 +83371,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -82761,6 +83465,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -82854,6 +83559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -82947,6 +83653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -83039,6 +83746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -83131,6 +83839,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -83223,6 +83932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -83315,6 +84025,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -83407,6 +84118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -83499,6 +84211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -83591,6 +84304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -83683,6 +84397,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -83749,6 +84464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1627), [anon_sym_bool] = ACTIONS(1627), [anon_sym_int] = ACTIONS(1627), + [anon_sym_uint] = ACTIONS(1627), [anon_sym_float] = ACTIONS(1627), [anon_sym_range] = ACTIONS(1627), [anon_sym_i8] = ACTIONS(1627), @@ -83837,6 +84553,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1006), [anon_sym_bool] = ACTIONS(1006), [anon_sym_int] = ACTIONS(1006), + [anon_sym_uint] = ACTIONS(1006), [anon_sym_float] = ACTIONS(1006), [anon_sym_range] = ACTIONS(1006), [anon_sym_i8] = ACTIONS(1006), @@ -83942,6 +84659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1637), [anon_sym_bool] = ACTIONS(1637), [anon_sym_int] = ACTIONS(1637), + [anon_sym_uint] = ACTIONS(1637), [anon_sym_float] = ACTIONS(1637), [anon_sym_range] = ACTIONS(1637), [anon_sym_i8] = ACTIONS(1637), @@ -84039,6 +84757,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -84124,6 +84843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -84210,6 +84930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -84296,6 +85017,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -84382,6 +85104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -84469,6 +85192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -84554,6 +85278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1712), [anon_sym_bool] = ACTIONS(1712), [anon_sym_int] = ACTIONS(1712), + [anon_sym_uint] = ACTIONS(1712), [anon_sym_float] = ACTIONS(1712), [anon_sym_range] = ACTIONS(1712), [anon_sym_i8] = ACTIONS(1712), @@ -84640,6 +85365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -84726,6 +85452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -84813,6 +85540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -84899,6 +85627,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -84985,6 +85714,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -85071,6 +85801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -85156,6 +85887,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -85242,6 +85974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -85329,6 +86062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -85414,6 +86148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -85499,6 +86234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -85584,6 +86320,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -85669,6 +86406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -85754,6 +86492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -85839,6 +86578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -85924,6 +86664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -86009,6 +86750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -86094,6 +86836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -86179,6 +86922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -86264,6 +87008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -86348,6 +87093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -86432,6 +87178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -86516,6 +87263,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -86600,6 +87348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -86684,6 +87433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -86768,6 +87518,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -86852,6 +87603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -86936,6 +87688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -87020,6 +87773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -87104,6 +87858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -87188,6 +87943,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -87272,6 +88028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -87356,6 +88113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -87419,6 +88177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(1509), [anon_sym_bool] = ACTIONS(1509), [anon_sym_int] = ACTIONS(1509), + [anon_sym_uint] = ACTIONS(1509), [anon_sym_float] = ACTIONS(1509), [anon_sym_range] = ACTIONS(1509), [anon_sym_i8] = ACTIONS(1509), @@ -87524,6 +88283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -87608,6 +88368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -87692,6 +88453,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -87767,6 +88529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -87860,6 +88623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -87944,6 +88708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -88028,6 +88793,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -88112,6 +88878,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -88196,6 +88963,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -88280,6 +89048,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -88364,6 +89133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -88448,6 +89218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -88532,6 +89303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -88616,6 +89388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -88700,6 +89473,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -88784,6 +89558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -88868,6 +89643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -88952,6 +89728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -89036,6 +89813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -89120,6 +89898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -89204,6 +89983,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -89288,6 +90068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -89372,6 +90153,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -89455,6 +90237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -89538,6 +90321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -89621,6 +90405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -89695,6 +90480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -89787,6 +90573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -89861,6 +90648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -89953,6 +90741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -90036,6 +90825,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -90119,6 +90909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -90202,6 +90993,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -90285,6 +91077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -90368,6 +91161,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -90451,6 +91245,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -90525,6 +91320,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -90617,6 +91413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -90692,6 +91489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -90783,6 +91581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -90866,6 +91665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -90949,6 +91749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -91032,6 +91833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -91115,6 +91917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -91198,6 +92001,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -91281,6 +92085,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -91364,6 +92169,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -91439,6 +92245,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -91522,6 +92329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -91613,6 +92421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -91696,6 +92505,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -91779,6 +92589,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -91862,6 +92673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -91945,6 +92757,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -92028,6 +92841,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -92111,6 +92925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -92194,6 +93009,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -92277,6 +93093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -92360,6 +93177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -92443,6 +93261,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -92526,6 +93345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -92609,6 +93429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -92684,6 +93505,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -92775,6 +93597,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -92850,6 +93673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -92941,6 +93765,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -93024,6 +93849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -93106,6 +93932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -93182,6 +94009,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -93273,6 +94101,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -93356,6 +94185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -93439,6 +94269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -93522,6 +94353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -93605,6 +94437,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -93688,6 +94521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -93762,6 +94596,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -93845,6 +94680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -93937,6 +94773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -94020,6 +94857,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -94103,6 +94941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2036), [anon_sym_bool] = ACTIONS(2036), [anon_sym_int] = ACTIONS(2036), + [anon_sym_uint] = ACTIONS(2036), [anon_sym_float] = ACTIONS(2036), [anon_sym_range] = ACTIONS(2036), [anon_sym_i8] = ACTIONS(2036), @@ -94186,6 +95025,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -94261,6 +95101,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -94352,6 +95193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -94435,6 +95277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -94518,6 +95361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -94601,6 +95445,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -94675,6 +95520,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -94767,6 +95613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -94850,6 +95697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -94933,6 +95781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -95016,6 +95865,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -95099,6 +95949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -95182,6 +96033,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -95265,6 +96117,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -95348,6 +96201,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -95431,6 +96285,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -95514,6 +96369,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -95597,6 +96453,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -95679,6 +96536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -95763,6 +96621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -95845,6 +96704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -95927,6 +96787,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -96009,6 +96870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -96091,6 +96953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -96173,6 +97036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -96255,6 +97119,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -96337,6 +97202,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -96419,6 +97285,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -96501,6 +97368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -96583,6 +97451,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -96665,6 +97534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -96747,6 +97617,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -96829,6 +97700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -96911,6 +97783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -96993,6 +97866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -97075,6 +97949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -97157,6 +98032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -97239,6 +98115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -97321,6 +98198,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -97403,6 +98281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -97485,6 +98364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -97567,6 +98447,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -97649,6 +98530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -97731,6 +98613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -97813,6 +98696,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -97895,6 +98779,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -97977,6 +98862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -98059,6 +98945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -98141,6 +99028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -98223,6 +99111,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -98305,6 +99194,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -98387,6 +99277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -98469,6 +99360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -98551,6 +99443,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -98633,6 +99526,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -98715,6 +99609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -98797,6 +99692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -98879,6 +99775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -98961,6 +99858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -99043,6 +99941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -99125,6 +100024,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -99207,6 +100107,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -99289,6 +100190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -99371,6 +100273,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -99453,6 +100356,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -99535,6 +100439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -99617,6 +100522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -99699,6 +100605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -99781,6 +100688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -99863,6 +100771,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -99945,6 +100854,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -100027,6 +100937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -100109,6 +101020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -100191,6 +101103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -100273,6 +101186,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -100355,6 +101269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -100437,6 +101352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -100519,6 +101435,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -100601,6 +101518,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -100683,6 +101601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -100765,6 +101684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -100847,6 +101767,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -100929,6 +101850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -101011,6 +101933,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -101093,6 +102016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -101175,6 +102099,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -101257,6 +102182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -101339,6 +102265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -101421,6 +102348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -101503,6 +102431,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -101585,6 +102514,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -101667,6 +102597,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -101749,6 +102680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -101831,6 +102763,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -101913,6 +102846,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -101995,6 +102929,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -102077,6 +103012,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -102159,6 +103095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -102241,6 +103178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -102323,6 +103261,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -102405,6 +103344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -102487,6 +103427,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -102569,6 +103510,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -102651,6 +103593,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -102733,6 +103676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -102815,6 +103759,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -102897,6 +103842,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -102979,6 +103925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -103061,6 +104008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -103143,6 +104091,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -103225,6 +104174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -103307,6 +104257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -103389,6 +104340,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -103471,6 +104423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -103553,6 +104506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -103635,6 +104589,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -103717,6 +104672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -103799,6 +104755,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -103881,6 +104838,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -103963,6 +104921,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -104045,6 +105004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -104127,6 +105087,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -104209,6 +105170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -104291,6 +105253,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -104373,6 +105336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -104455,6 +105419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -104537,6 +105502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -104619,6 +105585,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -104701,6 +105668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -104783,6 +105751,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -104865,6 +105834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -104947,6 +105917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -105029,6 +106000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -105111,6 +106083,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -105193,6 +106166,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -105275,6 +106249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -105357,6 +106332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -105439,6 +106415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -105521,6 +106498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -105603,6 +106581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -105685,6 +106664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -105767,6 +106747,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -105849,6 +106830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -105931,6 +106913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -106013,6 +106996,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -106095,6 +107079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -106177,6 +107162,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -106259,6 +107245,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -106341,6 +107328,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -106423,6 +107411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -106505,6 +107494,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -106587,6 +107577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -106669,6 +107660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -106751,6 +107743,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -106833,6 +107826,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -106915,6 +107909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -106997,6 +107992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -107079,6 +108075,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -107161,6 +108158,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -107243,6 +108241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -107325,6 +108324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -107407,6 +108407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -107489,6 +108490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -107571,6 +108573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -107653,6 +108656,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -107735,6 +108739,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -107817,6 +108822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -107899,6 +108905,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -107981,6 +108988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -108063,6 +109071,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -108145,6 +109154,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -108227,6 +109237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -108309,6 +109320,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -108391,6 +109403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -108473,6 +109486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -108555,6 +109569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -108637,6 +109652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -108719,6 +109735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -108801,6 +109818,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -108883,6 +109901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -108965,6 +109984,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -109047,6 +110067,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -109120,6 +110141,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -109200,6 +110222,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -109290,6 +110313,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -109361,6 +110385,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -109440,6 +110465,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -109522,6 +110548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -109610,6 +110637,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -109680,6 +110708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -109758,6 +110787,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -109836,6 +110866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -109908,6 +110939,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2243), [anon_sym_bool] = ACTIONS(2243), [anon_sym_int] = ACTIONS(2243), + [anon_sym_uint] = ACTIONS(2243), [anon_sym_float] = ACTIONS(2243), [anon_sym_range] = ACTIONS(2243), [anon_sym_i8] = ACTIONS(2243), @@ -109991,6 +111023,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -110062,6 +111095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2249), [anon_sym_bool] = ACTIONS(2249), [anon_sym_int] = ACTIONS(2249), + [anon_sym_uint] = ACTIONS(2249), [anon_sym_float] = ACTIONS(2249), [anon_sym_range] = ACTIONS(2249), [anon_sym_i8] = ACTIONS(2249), @@ -110145,6 +111179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -110216,6 +111251,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2255), [anon_sym_bool] = ACTIONS(2255), [anon_sym_int] = ACTIONS(2255), + [anon_sym_uint] = ACTIONS(2255), [anon_sym_float] = ACTIONS(2255), [anon_sym_range] = ACTIONS(2255), [anon_sym_i8] = ACTIONS(2255), @@ -110292,6 +111328,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2259), [anon_sym_bool] = ACTIONS(2259), [anon_sym_int] = ACTIONS(2259), + [anon_sym_uint] = ACTIONS(2259), [anon_sym_float] = ACTIONS(2259), [anon_sym_range] = ACTIONS(2259), [anon_sym_i8] = ACTIONS(2259), @@ -110368,6 +111405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2263), [anon_sym_bool] = ACTIONS(2263), [anon_sym_int] = ACTIONS(2263), + [anon_sym_uint] = ACTIONS(2263), [anon_sym_float] = ACTIONS(2263), [anon_sym_range] = ACTIONS(2263), [anon_sym_i8] = ACTIONS(2263), @@ -110444,6 +111482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2267), [anon_sym_bool] = ACTIONS(2267), [anon_sym_int] = ACTIONS(2267), + [anon_sym_uint] = ACTIONS(2267), [anon_sym_float] = ACTIONS(2267), [anon_sym_range] = ACTIONS(2267), [anon_sym_i8] = ACTIONS(2267), @@ -110520,6 +111559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2271), [anon_sym_bool] = ACTIONS(2271), [anon_sym_int] = ACTIONS(2271), + [anon_sym_uint] = ACTIONS(2271), [anon_sym_float] = ACTIONS(2271), [anon_sym_range] = ACTIONS(2271), [anon_sym_i8] = ACTIONS(2271), @@ -110596,6 +111636,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2275), [anon_sym_bool] = ACTIONS(2275), [anon_sym_int] = ACTIONS(2275), + [anon_sym_uint] = ACTIONS(2275), [anon_sym_float] = ACTIONS(2275), [anon_sym_range] = ACTIONS(2275), [anon_sym_i8] = ACTIONS(2275), @@ -110672,6 +111713,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2279), [anon_sym_bool] = ACTIONS(2279), [anon_sym_int] = ACTIONS(2279), + [anon_sym_uint] = ACTIONS(2279), [anon_sym_float] = ACTIONS(2279), [anon_sym_range] = ACTIONS(2279), [anon_sym_i8] = ACTIONS(2279), @@ -110748,6 +111790,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2283), [anon_sym_bool] = ACTIONS(2283), [anon_sym_int] = ACTIONS(2283), + [anon_sym_uint] = ACTIONS(2283), [anon_sym_float] = ACTIONS(2283), [anon_sym_range] = ACTIONS(2283), [anon_sym_i8] = ACTIONS(2283), @@ -110824,6 +111867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2287), [anon_sym_bool] = ACTIONS(2287), [anon_sym_int] = ACTIONS(2287), + [anon_sym_uint] = ACTIONS(2287), [anon_sym_float] = ACTIONS(2287), [anon_sym_range] = ACTIONS(2287), [anon_sym_i8] = ACTIONS(2287), @@ -110900,6 +111944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2291), [anon_sym_bool] = ACTIONS(2291), [anon_sym_int] = ACTIONS(2291), + [anon_sym_uint] = ACTIONS(2291), [anon_sym_float] = ACTIONS(2291), [anon_sym_range] = ACTIONS(2291), [anon_sym_i8] = ACTIONS(2291), @@ -110976,6 +112021,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2295), [anon_sym_bool] = ACTIONS(2295), [anon_sym_int] = ACTIONS(2295), + [anon_sym_uint] = ACTIONS(2295), [anon_sym_float] = ACTIONS(2295), [anon_sym_range] = ACTIONS(2295), [anon_sym_i8] = ACTIONS(2295), @@ -111052,6 +112098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2299), [anon_sym_bool] = ACTIONS(2299), [anon_sym_int] = ACTIONS(2299), + [anon_sym_uint] = ACTIONS(2299), [anon_sym_float] = ACTIONS(2299), [anon_sym_range] = ACTIONS(2299), [anon_sym_i8] = ACTIONS(2299), @@ -111128,6 +112175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2303), [anon_sym_bool] = ACTIONS(2303), [anon_sym_int] = ACTIONS(2303), + [anon_sym_uint] = ACTIONS(2303), [anon_sym_float] = ACTIONS(2303), [anon_sym_range] = ACTIONS(2303), [anon_sym_i8] = ACTIONS(2303), @@ -111204,6 +112252,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2307), [anon_sym_bool] = ACTIONS(2307), [anon_sym_int] = ACTIONS(2307), + [anon_sym_uint] = ACTIONS(2307), [anon_sym_float] = ACTIONS(2307), [anon_sym_range] = ACTIONS(2307), [anon_sym_i8] = ACTIONS(2307), @@ -111280,6 +112329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2311), [anon_sym_bool] = ACTIONS(2311), [anon_sym_int] = ACTIONS(2311), + [anon_sym_uint] = ACTIONS(2311), [anon_sym_float] = ACTIONS(2311), [anon_sym_range] = ACTIONS(2311), [anon_sym_i8] = ACTIONS(2311), @@ -111356,6 +112406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2315), [anon_sym_bool] = ACTIONS(2315), [anon_sym_int] = ACTIONS(2315), + [anon_sym_uint] = ACTIONS(2315), [anon_sym_float] = ACTIONS(2315), [anon_sym_range] = ACTIONS(2315), [anon_sym_i8] = ACTIONS(2315), @@ -111432,6 +112483,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2319), [anon_sym_bool] = ACTIONS(2319), [anon_sym_int] = ACTIONS(2319), + [anon_sym_uint] = ACTIONS(2319), [anon_sym_float] = ACTIONS(2319), [anon_sym_range] = ACTIONS(2319), [anon_sym_i8] = ACTIONS(2319), @@ -111508,6 +112560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2323), [anon_sym_bool] = ACTIONS(2323), [anon_sym_int] = ACTIONS(2323), + [anon_sym_uint] = ACTIONS(2323), [anon_sym_float] = ACTIONS(2323), [anon_sym_range] = ACTIONS(2323), [anon_sym_i8] = ACTIONS(2323), @@ -111584,6 +112637,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2327), [anon_sym_bool] = ACTIONS(2327), [anon_sym_int] = ACTIONS(2327), + [anon_sym_uint] = ACTIONS(2327), [anon_sym_float] = ACTIONS(2327), [anon_sym_range] = ACTIONS(2327), [anon_sym_i8] = ACTIONS(2327), @@ -111660,6 +112714,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2331), [anon_sym_bool] = ACTIONS(2331), [anon_sym_int] = ACTIONS(2331), + [anon_sym_uint] = ACTIONS(2331), [anon_sym_float] = ACTIONS(2331), [anon_sym_range] = ACTIONS(2331), [anon_sym_i8] = ACTIONS(2331), @@ -111736,6 +112791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2335), [anon_sym_bool] = ACTIONS(2335), [anon_sym_int] = ACTIONS(2335), + [anon_sym_uint] = ACTIONS(2335), [anon_sym_float] = ACTIONS(2335), [anon_sym_range] = ACTIONS(2335), [anon_sym_i8] = ACTIONS(2335), @@ -111812,6 +112868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2339), [anon_sym_bool] = ACTIONS(2339), [anon_sym_int] = ACTIONS(2339), + [anon_sym_uint] = ACTIONS(2339), [anon_sym_float] = ACTIONS(2339), [anon_sym_range] = ACTIONS(2339), [anon_sym_i8] = ACTIONS(2339), @@ -111888,6 +112945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2343), [anon_sym_bool] = ACTIONS(2343), [anon_sym_int] = ACTIONS(2343), + [anon_sym_uint] = ACTIONS(2343), [anon_sym_float] = ACTIONS(2343), [anon_sym_range] = ACTIONS(2343), [anon_sym_i8] = ACTIONS(2343), @@ -111964,6 +113022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2347), [anon_sym_bool] = ACTIONS(2347), [anon_sym_int] = ACTIONS(2347), + [anon_sym_uint] = ACTIONS(2347), [anon_sym_float] = ACTIONS(2347), [anon_sym_range] = ACTIONS(2347), [anon_sym_i8] = ACTIONS(2347), @@ -112040,6 +113099,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2351), [anon_sym_bool] = ACTIONS(2351), [anon_sym_int] = ACTIONS(2351), + [anon_sym_uint] = ACTIONS(2351), [anon_sym_float] = ACTIONS(2351), [anon_sym_range] = ACTIONS(2351), [anon_sym_i8] = ACTIONS(2351), @@ -112116,6 +113176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2355), [anon_sym_bool] = ACTIONS(2355), [anon_sym_int] = ACTIONS(2355), + [anon_sym_uint] = ACTIONS(2355), [anon_sym_float] = ACTIONS(2355), [anon_sym_range] = ACTIONS(2355), [anon_sym_i8] = ACTIONS(2355), @@ -112192,6 +113253,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2359), [anon_sym_bool] = ACTIONS(2359), [anon_sym_int] = ACTIONS(2359), + [anon_sym_uint] = ACTIONS(2359), [anon_sym_float] = ACTIONS(2359), [anon_sym_range] = ACTIONS(2359), [anon_sym_i8] = ACTIONS(2359), @@ -112268,6 +113330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2363), [anon_sym_bool] = ACTIONS(2363), [anon_sym_int] = ACTIONS(2363), + [anon_sym_uint] = ACTIONS(2363), [anon_sym_float] = ACTIONS(2363), [anon_sym_range] = ACTIONS(2363), [anon_sym_i8] = ACTIONS(2363), @@ -112344,6 +113407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2367), [anon_sym_bool] = ACTIONS(2367), [anon_sym_int] = ACTIONS(2367), + [anon_sym_uint] = ACTIONS(2367), [anon_sym_float] = ACTIONS(2367), [anon_sym_range] = ACTIONS(2367), [anon_sym_i8] = ACTIONS(2367), @@ -112420,6 +113484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2371), [anon_sym_bool] = ACTIONS(2371), [anon_sym_int] = ACTIONS(2371), + [anon_sym_uint] = ACTIONS(2371), [anon_sym_float] = ACTIONS(2371), [anon_sym_range] = ACTIONS(2371), [anon_sym_i8] = ACTIONS(2371), @@ -112496,6 +113561,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2375), [anon_sym_bool] = ACTIONS(2375), [anon_sym_int] = ACTIONS(2375), + [anon_sym_uint] = ACTIONS(2375), [anon_sym_float] = ACTIONS(2375), [anon_sym_range] = ACTIONS(2375), [anon_sym_i8] = ACTIONS(2375), @@ -112572,6 +113638,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2379), [anon_sym_bool] = ACTIONS(2379), [anon_sym_int] = ACTIONS(2379), + [anon_sym_uint] = ACTIONS(2379), [anon_sym_float] = ACTIONS(2379), [anon_sym_range] = ACTIONS(2379), [anon_sym_i8] = ACTIONS(2379), @@ -112648,6 +113715,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2383), [anon_sym_bool] = ACTIONS(2383), [anon_sym_int] = ACTIONS(2383), + [anon_sym_uint] = ACTIONS(2383), [anon_sym_float] = ACTIONS(2383), [anon_sym_range] = ACTIONS(2383), [anon_sym_i8] = ACTIONS(2383), @@ -112724,6 +113792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2387), [anon_sym_bool] = ACTIONS(2387), [anon_sym_int] = ACTIONS(2387), + [anon_sym_uint] = ACTIONS(2387), [anon_sym_float] = ACTIONS(2387), [anon_sym_range] = ACTIONS(2387), [anon_sym_i8] = ACTIONS(2387), @@ -112800,6 +113869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2391), [anon_sym_bool] = ACTIONS(2391), [anon_sym_int] = ACTIONS(2391), + [anon_sym_uint] = ACTIONS(2391), [anon_sym_float] = ACTIONS(2391), [anon_sym_range] = ACTIONS(2391), [anon_sym_i8] = ACTIONS(2391), @@ -112876,6 +113946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2395), [anon_sym_bool] = ACTIONS(2395), [anon_sym_int] = ACTIONS(2395), + [anon_sym_uint] = ACTIONS(2395), [anon_sym_float] = ACTIONS(2395), [anon_sym_range] = ACTIONS(2395), [anon_sym_i8] = ACTIONS(2395), @@ -112952,6 +114023,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2399), [anon_sym_bool] = ACTIONS(2399), [anon_sym_int] = ACTIONS(2399), + [anon_sym_uint] = ACTIONS(2399), [anon_sym_float] = ACTIONS(2399), [anon_sym_range] = ACTIONS(2399), [anon_sym_i8] = ACTIONS(2399), @@ -113028,6 +114100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2403), [anon_sym_bool] = ACTIONS(2403), [anon_sym_int] = ACTIONS(2403), + [anon_sym_uint] = ACTIONS(2403), [anon_sym_float] = ACTIONS(2403), [anon_sym_range] = ACTIONS(2403), [anon_sym_i8] = ACTIONS(2403), @@ -113104,6 +114177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2407), [anon_sym_bool] = ACTIONS(2407), [anon_sym_int] = ACTIONS(2407), + [anon_sym_uint] = ACTIONS(2407), [anon_sym_float] = ACTIONS(2407), [anon_sym_range] = ACTIONS(2407), [anon_sym_i8] = ACTIONS(2407), @@ -113180,6 +114254,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2411), [anon_sym_bool] = ACTIONS(2411), [anon_sym_int] = ACTIONS(2411), + [anon_sym_uint] = ACTIONS(2411), [anon_sym_float] = ACTIONS(2411), [anon_sym_range] = ACTIONS(2411), [anon_sym_i8] = ACTIONS(2411), @@ -113256,6 +114331,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2415), [anon_sym_bool] = ACTIONS(2415), [anon_sym_int] = ACTIONS(2415), + [anon_sym_uint] = ACTIONS(2415), [anon_sym_float] = ACTIONS(2415), [anon_sym_range] = ACTIONS(2415), [anon_sym_i8] = ACTIONS(2415), @@ -113332,6 +114408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2419), [anon_sym_bool] = ACTIONS(2419), [anon_sym_int] = ACTIONS(2419), + [anon_sym_uint] = ACTIONS(2419), [anon_sym_float] = ACTIONS(2419), [anon_sym_range] = ACTIONS(2419), [anon_sym_i8] = ACTIONS(2419), @@ -113408,6 +114485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2423), [anon_sym_bool] = ACTIONS(2423), [anon_sym_int] = ACTIONS(2423), + [anon_sym_uint] = ACTIONS(2423), [anon_sym_float] = ACTIONS(2423), [anon_sym_range] = ACTIONS(2423), [anon_sym_i8] = ACTIONS(2423), @@ -113484,6 +114562,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2427), [anon_sym_bool] = ACTIONS(2427), [anon_sym_int] = ACTIONS(2427), + [anon_sym_uint] = ACTIONS(2427), [anon_sym_float] = ACTIONS(2427), [anon_sym_range] = ACTIONS(2427), [anon_sym_i8] = ACTIONS(2427), @@ -113560,6 +114639,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2431), [anon_sym_bool] = ACTIONS(2431), [anon_sym_int] = ACTIONS(2431), + [anon_sym_uint] = ACTIONS(2431), [anon_sym_float] = ACTIONS(2431), [anon_sym_range] = ACTIONS(2431), [anon_sym_i8] = ACTIONS(2431), @@ -113636,6 +114716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2435), [anon_sym_bool] = ACTIONS(2435), [anon_sym_int] = ACTIONS(2435), + [anon_sym_uint] = ACTIONS(2435), [anon_sym_float] = ACTIONS(2435), [anon_sym_range] = ACTIONS(2435), [anon_sym_i8] = ACTIONS(2435), @@ -113712,6 +114793,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2439), [anon_sym_bool] = ACTIONS(2439), [anon_sym_int] = ACTIONS(2439), + [anon_sym_uint] = ACTIONS(2439), [anon_sym_float] = ACTIONS(2439), [anon_sym_range] = ACTIONS(2439), [anon_sym_i8] = ACTIONS(2439), @@ -113788,6 +114870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2443), [anon_sym_bool] = ACTIONS(2443), [anon_sym_int] = ACTIONS(2443), + [anon_sym_uint] = ACTIONS(2443), [anon_sym_float] = ACTIONS(2443), [anon_sym_range] = ACTIONS(2443), [anon_sym_i8] = ACTIONS(2443), @@ -113864,6 +114947,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2447), [anon_sym_bool] = ACTIONS(2447), [anon_sym_int] = ACTIONS(2447), + [anon_sym_uint] = ACTIONS(2447), [anon_sym_float] = ACTIONS(2447), [anon_sym_range] = ACTIONS(2447), [anon_sym_i8] = ACTIONS(2447), @@ -113940,6 +115024,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2451), [anon_sym_bool] = ACTIONS(2451), [anon_sym_int] = ACTIONS(2451), + [anon_sym_uint] = ACTIONS(2451), [anon_sym_float] = ACTIONS(2451), [anon_sym_range] = ACTIONS(2451), [anon_sym_i8] = ACTIONS(2451), @@ -114016,6 +115101,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2455), [anon_sym_bool] = ACTIONS(2455), [anon_sym_int] = ACTIONS(2455), + [anon_sym_uint] = ACTIONS(2455), [anon_sym_float] = ACTIONS(2455), [anon_sym_range] = ACTIONS(2455), [anon_sym_i8] = ACTIONS(2455), @@ -114092,6 +115178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2459), [anon_sym_bool] = ACTIONS(2459), [anon_sym_int] = ACTIONS(2459), + [anon_sym_uint] = ACTIONS(2459), [anon_sym_float] = ACTIONS(2459), [anon_sym_range] = ACTIONS(2459), [anon_sym_i8] = ACTIONS(2459), @@ -114168,6 +115255,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2463), [anon_sym_bool] = ACTIONS(2463), [anon_sym_int] = ACTIONS(2463), + [anon_sym_uint] = ACTIONS(2463), [anon_sym_float] = ACTIONS(2463), [anon_sym_range] = ACTIONS(2463), [anon_sym_i8] = ACTIONS(2463), @@ -114244,6 +115332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2467), [anon_sym_bool] = ACTIONS(2467), [anon_sym_int] = ACTIONS(2467), + [anon_sym_uint] = ACTIONS(2467), [anon_sym_float] = ACTIONS(2467), [anon_sym_range] = ACTIONS(2467), [anon_sym_i8] = ACTIONS(2467), @@ -114320,6 +115409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2471), [anon_sym_bool] = ACTIONS(2471), [anon_sym_int] = ACTIONS(2471), + [anon_sym_uint] = ACTIONS(2471), [anon_sym_float] = ACTIONS(2471), [anon_sym_range] = ACTIONS(2471), [anon_sym_i8] = ACTIONS(2471), @@ -114396,6 +115486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2475), [anon_sym_bool] = ACTIONS(2475), [anon_sym_int] = ACTIONS(2475), + [anon_sym_uint] = ACTIONS(2475), [anon_sym_float] = ACTIONS(2475), [anon_sym_range] = ACTIONS(2475), [anon_sym_i8] = ACTIONS(2475), @@ -114472,6 +115563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2479), [anon_sym_bool] = ACTIONS(2479), [anon_sym_int] = ACTIONS(2479), + [anon_sym_uint] = ACTIONS(2479), [anon_sym_float] = ACTIONS(2479), [anon_sym_range] = ACTIONS(2479), [anon_sym_i8] = ACTIONS(2479), @@ -114548,6 +115640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2483), [anon_sym_bool] = ACTIONS(2483), [anon_sym_int] = ACTIONS(2483), + [anon_sym_uint] = ACTIONS(2483), [anon_sym_float] = ACTIONS(2483), [anon_sym_range] = ACTIONS(2483), [anon_sym_i8] = ACTIONS(2483), @@ -114624,6 +115717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2487), [anon_sym_bool] = ACTIONS(2487), [anon_sym_int] = ACTIONS(2487), + [anon_sym_uint] = ACTIONS(2487), [anon_sym_float] = ACTIONS(2487), [anon_sym_range] = ACTIONS(2487), [anon_sym_i8] = ACTIONS(2487), @@ -114700,6 +115794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2491), [anon_sym_bool] = ACTIONS(2491), [anon_sym_int] = ACTIONS(2491), + [anon_sym_uint] = ACTIONS(2491), [anon_sym_float] = ACTIONS(2491), [anon_sym_range] = ACTIONS(2491), [anon_sym_i8] = ACTIONS(2491), @@ -114776,6 +115871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2495), [anon_sym_bool] = ACTIONS(2495), [anon_sym_int] = ACTIONS(2495), + [anon_sym_uint] = ACTIONS(2495), [anon_sym_float] = ACTIONS(2495), [anon_sym_range] = ACTIONS(2495), [anon_sym_i8] = ACTIONS(2495), @@ -114852,6 +115948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2499), [anon_sym_bool] = ACTIONS(2499), [anon_sym_int] = ACTIONS(2499), + [anon_sym_uint] = ACTIONS(2499), [anon_sym_float] = ACTIONS(2499), [anon_sym_range] = ACTIONS(2499), [anon_sym_i8] = ACTIONS(2499), @@ -114928,6 +116025,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2503), [anon_sym_bool] = ACTIONS(2503), [anon_sym_int] = ACTIONS(2503), + [anon_sym_uint] = ACTIONS(2503), [anon_sym_float] = ACTIONS(2503), [anon_sym_range] = ACTIONS(2503), [anon_sym_i8] = ACTIONS(2503), @@ -115004,6 +116102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2507), [anon_sym_bool] = ACTIONS(2507), [anon_sym_int] = ACTIONS(2507), + [anon_sym_uint] = ACTIONS(2507), [anon_sym_float] = ACTIONS(2507), [anon_sym_range] = ACTIONS(2507), [anon_sym_i8] = ACTIONS(2507), @@ -115080,6 +116179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2511), [anon_sym_bool] = ACTIONS(2511), [anon_sym_int] = ACTIONS(2511), + [anon_sym_uint] = ACTIONS(2511), [anon_sym_float] = ACTIONS(2511), [anon_sym_range] = ACTIONS(2511), [anon_sym_i8] = ACTIONS(2511), @@ -115156,6 +116256,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2515), [anon_sym_bool] = ACTIONS(2515), [anon_sym_int] = ACTIONS(2515), + [anon_sym_uint] = ACTIONS(2515), [anon_sym_float] = ACTIONS(2515), [anon_sym_range] = ACTIONS(2515), [anon_sym_i8] = ACTIONS(2515), @@ -115232,6 +116333,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2519), [anon_sym_bool] = ACTIONS(2519), [anon_sym_int] = ACTIONS(2519), + [anon_sym_uint] = ACTIONS(2519), [anon_sym_float] = ACTIONS(2519), [anon_sym_range] = ACTIONS(2519), [anon_sym_i8] = ACTIONS(2519), @@ -115308,6 +116410,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2523), [anon_sym_bool] = ACTIONS(2523), [anon_sym_int] = ACTIONS(2523), + [anon_sym_uint] = ACTIONS(2523), [anon_sym_float] = ACTIONS(2523), [anon_sym_range] = ACTIONS(2523), [anon_sym_i8] = ACTIONS(2523), @@ -115384,6 +116487,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2527), [anon_sym_bool] = ACTIONS(2527), [anon_sym_int] = ACTIONS(2527), + [anon_sym_uint] = ACTIONS(2527), [anon_sym_float] = ACTIONS(2527), [anon_sym_range] = ACTIONS(2527), [anon_sym_i8] = ACTIONS(2527), @@ -115460,6 +116564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2531), [anon_sym_bool] = ACTIONS(2531), [anon_sym_int] = ACTIONS(2531), + [anon_sym_uint] = ACTIONS(2531), [anon_sym_float] = ACTIONS(2531), [anon_sym_range] = ACTIONS(2531), [anon_sym_i8] = ACTIONS(2531), @@ -115536,6 +116641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2535), [anon_sym_bool] = ACTIONS(2535), [anon_sym_int] = ACTIONS(2535), + [anon_sym_uint] = ACTIONS(2535), [anon_sym_float] = ACTIONS(2535), [anon_sym_range] = ACTIONS(2535), [anon_sym_i8] = ACTIONS(2535), @@ -115612,6 +116718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2539), [anon_sym_bool] = ACTIONS(2539), [anon_sym_int] = ACTIONS(2539), + [anon_sym_uint] = ACTIONS(2539), [anon_sym_float] = ACTIONS(2539), [anon_sym_range] = ACTIONS(2539), [anon_sym_i8] = ACTIONS(2539), @@ -115688,6 +116795,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2543), [anon_sym_bool] = ACTIONS(2543), [anon_sym_int] = ACTIONS(2543), + [anon_sym_uint] = ACTIONS(2543), [anon_sym_float] = ACTIONS(2543), [anon_sym_range] = ACTIONS(2543), [anon_sym_i8] = ACTIONS(2543), @@ -115764,6 +116872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2547), [anon_sym_bool] = ACTIONS(2547), [anon_sym_int] = ACTIONS(2547), + [anon_sym_uint] = ACTIONS(2547), [anon_sym_float] = ACTIONS(2547), [anon_sym_range] = ACTIONS(2547), [anon_sym_i8] = ACTIONS(2547), @@ -115840,6 +116949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2551), [anon_sym_bool] = ACTIONS(2551), [anon_sym_int] = ACTIONS(2551), + [anon_sym_uint] = ACTIONS(2551), [anon_sym_float] = ACTIONS(2551), [anon_sym_range] = ACTIONS(2551), [anon_sym_i8] = ACTIONS(2551), @@ -115916,6 +117026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2555), [anon_sym_bool] = ACTIONS(2555), [anon_sym_int] = ACTIONS(2555), + [anon_sym_uint] = ACTIONS(2555), [anon_sym_float] = ACTIONS(2555), [anon_sym_range] = ACTIONS(2555), [anon_sym_i8] = ACTIONS(2555), @@ -115992,6 +117103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2559), [anon_sym_bool] = ACTIONS(2559), [anon_sym_int] = ACTIONS(2559), + [anon_sym_uint] = ACTIONS(2559), [anon_sym_float] = ACTIONS(2559), [anon_sym_range] = ACTIONS(2559), [anon_sym_i8] = ACTIONS(2559), @@ -116068,6 +117180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2563), [anon_sym_bool] = ACTIONS(2563), [anon_sym_int] = ACTIONS(2563), + [anon_sym_uint] = ACTIONS(2563), [anon_sym_float] = ACTIONS(2563), [anon_sym_range] = ACTIONS(2563), [anon_sym_i8] = ACTIONS(2563), @@ -116144,6 +117257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2567), [anon_sym_bool] = ACTIONS(2567), [anon_sym_int] = ACTIONS(2567), + [anon_sym_uint] = ACTIONS(2567), [anon_sym_float] = ACTIONS(2567), [anon_sym_range] = ACTIONS(2567), [anon_sym_i8] = ACTIONS(2567), @@ -116220,6 +117334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2571), [anon_sym_bool] = ACTIONS(2571), [anon_sym_int] = ACTIONS(2571), + [anon_sym_uint] = ACTIONS(2571), [anon_sym_float] = ACTIONS(2571), [anon_sym_range] = ACTIONS(2571), [anon_sym_i8] = ACTIONS(2571), @@ -116296,6 +117411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2575), [anon_sym_bool] = ACTIONS(2575), [anon_sym_int] = ACTIONS(2575), + [anon_sym_uint] = ACTIONS(2575), [anon_sym_float] = ACTIONS(2575), [anon_sym_range] = ACTIONS(2575), [anon_sym_i8] = ACTIONS(2575), @@ -116372,6 +117488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2579), [anon_sym_bool] = ACTIONS(2579), [anon_sym_int] = ACTIONS(2579), + [anon_sym_uint] = ACTIONS(2579), [anon_sym_float] = ACTIONS(2579), [anon_sym_range] = ACTIONS(2579), [anon_sym_i8] = ACTIONS(2579), @@ -116448,6 +117565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2583), [anon_sym_bool] = ACTIONS(2583), [anon_sym_int] = ACTIONS(2583), + [anon_sym_uint] = ACTIONS(2583), [anon_sym_float] = ACTIONS(2583), [anon_sym_range] = ACTIONS(2583), [anon_sym_i8] = ACTIONS(2583), @@ -116524,6 +117642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2587), [anon_sym_bool] = ACTIONS(2587), [anon_sym_int] = ACTIONS(2587), + [anon_sym_uint] = ACTIONS(2587), [anon_sym_float] = ACTIONS(2587), [anon_sym_range] = ACTIONS(2587), [anon_sym_i8] = ACTIONS(2587), @@ -116600,6 +117719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2591), [anon_sym_bool] = ACTIONS(2591), [anon_sym_int] = ACTIONS(2591), + [anon_sym_uint] = ACTIONS(2591), [anon_sym_float] = ACTIONS(2591), [anon_sym_range] = ACTIONS(2591), [anon_sym_i8] = ACTIONS(2591), @@ -116676,6 +117796,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2595), [anon_sym_bool] = ACTIONS(2595), [anon_sym_int] = ACTIONS(2595), + [anon_sym_uint] = ACTIONS(2595), [anon_sym_float] = ACTIONS(2595), [anon_sym_range] = ACTIONS(2595), [anon_sym_i8] = ACTIONS(2595), @@ -116752,6 +117873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2599), [anon_sym_bool] = ACTIONS(2599), [anon_sym_int] = ACTIONS(2599), + [anon_sym_uint] = ACTIONS(2599), [anon_sym_float] = ACTIONS(2599), [anon_sym_range] = ACTIONS(2599), [anon_sym_i8] = ACTIONS(2599), @@ -116828,6 +117950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2603), [anon_sym_bool] = ACTIONS(2603), [anon_sym_int] = ACTIONS(2603), + [anon_sym_uint] = ACTIONS(2603), [anon_sym_float] = ACTIONS(2603), [anon_sym_range] = ACTIONS(2603), [anon_sym_i8] = ACTIONS(2603), @@ -116904,6 +118027,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2607), [anon_sym_bool] = ACTIONS(2607), [anon_sym_int] = ACTIONS(2607), + [anon_sym_uint] = ACTIONS(2607), [anon_sym_float] = ACTIONS(2607), [anon_sym_range] = ACTIONS(2607), [anon_sym_i8] = ACTIONS(2607), @@ -116980,6 +118104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2611), [anon_sym_bool] = ACTIONS(2611), [anon_sym_int] = ACTIONS(2611), + [anon_sym_uint] = ACTIONS(2611), [anon_sym_float] = ACTIONS(2611), [anon_sym_range] = ACTIONS(2611), [anon_sym_i8] = ACTIONS(2611), @@ -117056,6 +118181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2615), [anon_sym_bool] = ACTIONS(2615), [anon_sym_int] = ACTIONS(2615), + [anon_sym_uint] = ACTIONS(2615), [anon_sym_float] = ACTIONS(2615), [anon_sym_range] = ACTIONS(2615), [anon_sym_i8] = ACTIONS(2615), @@ -117132,6 +118258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2619), [anon_sym_bool] = ACTIONS(2619), [anon_sym_int] = ACTIONS(2619), + [anon_sym_uint] = ACTIONS(2619), [anon_sym_float] = ACTIONS(2619), [anon_sym_range] = ACTIONS(2619), [anon_sym_i8] = ACTIONS(2619), @@ -117208,6 +118335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2623), [anon_sym_bool] = ACTIONS(2623), [anon_sym_int] = ACTIONS(2623), + [anon_sym_uint] = ACTIONS(2623), [anon_sym_float] = ACTIONS(2623), [anon_sym_range] = ACTIONS(2623), [anon_sym_i8] = ACTIONS(2623), @@ -117284,6 +118412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2627), [anon_sym_bool] = ACTIONS(2627), [anon_sym_int] = ACTIONS(2627), + [anon_sym_uint] = ACTIONS(2627), [anon_sym_float] = ACTIONS(2627), [anon_sym_range] = ACTIONS(2627), [anon_sym_i8] = ACTIONS(2627), @@ -117360,6 +118489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2631), [anon_sym_bool] = ACTIONS(2631), [anon_sym_int] = ACTIONS(2631), + [anon_sym_uint] = ACTIONS(2631), [anon_sym_float] = ACTIONS(2631), [anon_sym_range] = ACTIONS(2631), [anon_sym_i8] = ACTIONS(2631), @@ -117436,6 +118566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2635), [anon_sym_bool] = ACTIONS(2635), [anon_sym_int] = ACTIONS(2635), + [anon_sym_uint] = ACTIONS(2635), [anon_sym_float] = ACTIONS(2635), [anon_sym_range] = ACTIONS(2635), [anon_sym_i8] = ACTIONS(2635), @@ -117512,6 +118643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2639), [anon_sym_bool] = ACTIONS(2639), [anon_sym_int] = ACTIONS(2639), + [anon_sym_uint] = ACTIONS(2639), [anon_sym_float] = ACTIONS(2639), [anon_sym_range] = ACTIONS(2639), [anon_sym_i8] = ACTIONS(2639), @@ -117588,6 +118720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2643), [anon_sym_bool] = ACTIONS(2643), [anon_sym_int] = ACTIONS(2643), + [anon_sym_uint] = ACTIONS(2643), [anon_sym_float] = ACTIONS(2643), [anon_sym_range] = ACTIONS(2643), [anon_sym_i8] = ACTIONS(2643), @@ -117664,6 +118797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2647), [anon_sym_bool] = ACTIONS(2647), [anon_sym_int] = ACTIONS(2647), + [anon_sym_uint] = ACTIONS(2647), [anon_sym_float] = ACTIONS(2647), [anon_sym_range] = ACTIONS(2647), [anon_sym_i8] = ACTIONS(2647), @@ -117740,6 +118874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2651), [anon_sym_bool] = ACTIONS(2651), [anon_sym_int] = ACTIONS(2651), + [anon_sym_uint] = ACTIONS(2651), [anon_sym_float] = ACTIONS(2651), [anon_sym_range] = ACTIONS(2651), [anon_sym_i8] = ACTIONS(2651), @@ -117816,6 +118951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2655), [anon_sym_bool] = ACTIONS(2655), [anon_sym_int] = ACTIONS(2655), + [anon_sym_uint] = ACTIONS(2655), [anon_sym_float] = ACTIONS(2655), [anon_sym_range] = ACTIONS(2655), [anon_sym_i8] = ACTIONS(2655), @@ -117892,6 +119028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2659), [anon_sym_bool] = ACTIONS(2659), [anon_sym_int] = ACTIONS(2659), + [anon_sym_uint] = ACTIONS(2659), [anon_sym_float] = ACTIONS(2659), [anon_sym_range] = ACTIONS(2659), [anon_sym_i8] = ACTIONS(2659), @@ -117968,6 +119105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2663), [anon_sym_bool] = ACTIONS(2663), [anon_sym_int] = ACTIONS(2663), + [anon_sym_uint] = ACTIONS(2663), [anon_sym_float] = ACTIONS(2663), [anon_sym_range] = ACTIONS(2663), [anon_sym_i8] = ACTIONS(2663), @@ -118044,6 +119182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2667), [anon_sym_bool] = ACTIONS(2667), [anon_sym_int] = ACTIONS(2667), + [anon_sym_uint] = ACTIONS(2667), [anon_sym_float] = ACTIONS(2667), [anon_sym_range] = ACTIONS(2667), [anon_sym_i8] = ACTIONS(2667), @@ -118120,6 +119259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2671), [anon_sym_bool] = ACTIONS(2671), [anon_sym_int] = ACTIONS(2671), + [anon_sym_uint] = ACTIONS(2671), [anon_sym_float] = ACTIONS(2671), [anon_sym_range] = ACTIONS(2671), [anon_sym_i8] = ACTIONS(2671), @@ -118196,6 +119336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2675), [anon_sym_bool] = ACTIONS(2675), [anon_sym_int] = ACTIONS(2675), + [anon_sym_uint] = ACTIONS(2675), [anon_sym_float] = ACTIONS(2675), [anon_sym_range] = ACTIONS(2675), [anon_sym_i8] = ACTIONS(2675), @@ -118272,6 +119413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2679), [anon_sym_bool] = ACTIONS(2679), [anon_sym_int] = ACTIONS(2679), + [anon_sym_uint] = ACTIONS(2679), [anon_sym_float] = ACTIONS(2679), [anon_sym_range] = ACTIONS(2679), [anon_sym_i8] = ACTIONS(2679), @@ -118348,6 +119490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2683), [anon_sym_bool] = ACTIONS(2683), [anon_sym_int] = ACTIONS(2683), + [anon_sym_uint] = ACTIONS(2683), [anon_sym_float] = ACTIONS(2683), [anon_sym_range] = ACTIONS(2683), [anon_sym_i8] = ACTIONS(2683), @@ -118424,6 +119567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2687), [anon_sym_bool] = ACTIONS(2687), [anon_sym_int] = ACTIONS(2687), + [anon_sym_uint] = ACTIONS(2687), [anon_sym_float] = ACTIONS(2687), [anon_sym_range] = ACTIONS(2687), [anon_sym_i8] = ACTIONS(2687), @@ -118500,6 +119644,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2691), [anon_sym_bool] = ACTIONS(2691), [anon_sym_int] = ACTIONS(2691), + [anon_sym_uint] = ACTIONS(2691), [anon_sym_float] = ACTIONS(2691), [anon_sym_range] = ACTIONS(2691), [anon_sym_i8] = ACTIONS(2691), @@ -118576,6 +119721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2695), [anon_sym_bool] = ACTIONS(2695), [anon_sym_int] = ACTIONS(2695), + [anon_sym_uint] = ACTIONS(2695), [anon_sym_float] = ACTIONS(2695), [anon_sym_range] = ACTIONS(2695), [anon_sym_i8] = ACTIONS(2695), @@ -118652,6 +119798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2699), [anon_sym_bool] = ACTIONS(2699), [anon_sym_int] = ACTIONS(2699), + [anon_sym_uint] = ACTIONS(2699), [anon_sym_float] = ACTIONS(2699), [anon_sym_range] = ACTIONS(2699), [anon_sym_i8] = ACTIONS(2699), @@ -118728,6 +119875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2703), [anon_sym_bool] = ACTIONS(2703), [anon_sym_int] = ACTIONS(2703), + [anon_sym_uint] = ACTIONS(2703), [anon_sym_float] = ACTIONS(2703), [anon_sym_range] = ACTIONS(2703), [anon_sym_i8] = ACTIONS(2703), @@ -118804,6 +119952,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2707), [anon_sym_bool] = ACTIONS(2707), [anon_sym_int] = ACTIONS(2707), + [anon_sym_uint] = ACTIONS(2707), [anon_sym_float] = ACTIONS(2707), [anon_sym_range] = ACTIONS(2707), [anon_sym_i8] = ACTIONS(2707), @@ -118880,6 +120029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2711), [anon_sym_bool] = ACTIONS(2711), [anon_sym_int] = ACTIONS(2711), + [anon_sym_uint] = ACTIONS(2711), [anon_sym_float] = ACTIONS(2711), [anon_sym_range] = ACTIONS(2711), [anon_sym_i8] = ACTIONS(2711), @@ -118956,6 +120106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2715), [anon_sym_bool] = ACTIONS(2715), [anon_sym_int] = ACTIONS(2715), + [anon_sym_uint] = ACTIONS(2715), [anon_sym_float] = ACTIONS(2715), [anon_sym_range] = ACTIONS(2715), [anon_sym_i8] = ACTIONS(2715), @@ -119032,6 +120183,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2719), [anon_sym_bool] = ACTIONS(2719), [anon_sym_int] = ACTIONS(2719), + [anon_sym_uint] = ACTIONS(2719), [anon_sym_float] = ACTIONS(2719), [anon_sym_range] = ACTIONS(2719), [anon_sym_i8] = ACTIONS(2719), @@ -119108,6 +120260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2723), [anon_sym_bool] = ACTIONS(2723), [anon_sym_int] = ACTIONS(2723), + [anon_sym_uint] = ACTIONS(2723), [anon_sym_float] = ACTIONS(2723), [anon_sym_range] = ACTIONS(2723), [anon_sym_i8] = ACTIONS(2723), @@ -119184,6 +120337,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2727), [anon_sym_bool] = ACTIONS(2727), [anon_sym_int] = ACTIONS(2727), + [anon_sym_uint] = ACTIONS(2727), [anon_sym_float] = ACTIONS(2727), [anon_sym_range] = ACTIONS(2727), [anon_sym_i8] = ACTIONS(2727), @@ -119260,6 +120414,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2731), [anon_sym_bool] = ACTIONS(2731), [anon_sym_int] = ACTIONS(2731), + [anon_sym_uint] = ACTIONS(2731), [anon_sym_float] = ACTIONS(2731), [anon_sym_range] = ACTIONS(2731), [anon_sym_i8] = ACTIONS(2731), @@ -119336,6 +120491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2735), [anon_sym_bool] = ACTIONS(2735), [anon_sym_int] = ACTIONS(2735), + [anon_sym_uint] = ACTIONS(2735), [anon_sym_float] = ACTIONS(2735), [anon_sym_range] = ACTIONS(2735), [anon_sym_i8] = ACTIONS(2735), @@ -119412,6 +120568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2739), [anon_sym_bool] = ACTIONS(2739), [anon_sym_int] = ACTIONS(2739), + [anon_sym_uint] = ACTIONS(2739), [anon_sym_float] = ACTIONS(2739), [anon_sym_range] = ACTIONS(2739), [anon_sym_i8] = ACTIONS(2739), @@ -119488,6 +120645,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2743), [anon_sym_bool] = ACTIONS(2743), [anon_sym_int] = ACTIONS(2743), + [anon_sym_uint] = ACTIONS(2743), [anon_sym_float] = ACTIONS(2743), [anon_sym_range] = ACTIONS(2743), [anon_sym_i8] = ACTIONS(2743), @@ -119564,6 +120722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2747), [anon_sym_bool] = ACTIONS(2747), [anon_sym_int] = ACTIONS(2747), + [anon_sym_uint] = ACTIONS(2747), [anon_sym_float] = ACTIONS(2747), [anon_sym_range] = ACTIONS(2747), [anon_sym_i8] = ACTIONS(2747), @@ -119640,6 +120799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2751), [anon_sym_bool] = ACTIONS(2751), [anon_sym_int] = ACTIONS(2751), + [anon_sym_uint] = ACTIONS(2751), [anon_sym_float] = ACTIONS(2751), [anon_sym_range] = ACTIONS(2751), [anon_sym_i8] = ACTIONS(2751), @@ -119716,6 +120876,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2755), [anon_sym_bool] = ACTIONS(2755), [anon_sym_int] = ACTIONS(2755), + [anon_sym_uint] = ACTIONS(2755), [anon_sym_float] = ACTIONS(2755), [anon_sym_range] = ACTIONS(2755), [anon_sym_i8] = ACTIONS(2755), @@ -119792,6 +120953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2759), [anon_sym_bool] = ACTIONS(2759), [anon_sym_int] = ACTIONS(2759), + [anon_sym_uint] = ACTIONS(2759), [anon_sym_float] = ACTIONS(2759), [anon_sym_range] = ACTIONS(2759), [anon_sym_i8] = ACTIONS(2759), @@ -119868,6 +121030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2763), [anon_sym_bool] = ACTIONS(2763), [anon_sym_int] = ACTIONS(2763), + [anon_sym_uint] = ACTIONS(2763), [anon_sym_float] = ACTIONS(2763), [anon_sym_range] = ACTIONS(2763), [anon_sym_i8] = ACTIONS(2763), @@ -119944,6 +121107,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2767), [anon_sym_bool] = ACTIONS(2767), [anon_sym_int] = ACTIONS(2767), + [anon_sym_uint] = ACTIONS(2767), [anon_sym_float] = ACTIONS(2767), [anon_sym_range] = ACTIONS(2767), [anon_sym_i8] = ACTIONS(2767), @@ -120020,6 +121184,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2771), [anon_sym_bool] = ACTIONS(2771), [anon_sym_int] = ACTIONS(2771), + [anon_sym_uint] = ACTIONS(2771), [anon_sym_float] = ACTIONS(2771), [anon_sym_range] = ACTIONS(2771), [anon_sym_i8] = ACTIONS(2771), @@ -120096,6 +121261,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2775), [anon_sym_bool] = ACTIONS(2775), [anon_sym_int] = ACTIONS(2775), + [anon_sym_uint] = ACTIONS(2775), [anon_sym_float] = ACTIONS(2775), [anon_sym_range] = ACTIONS(2775), [anon_sym_i8] = ACTIONS(2775), @@ -120172,6 +121338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2779), [anon_sym_bool] = ACTIONS(2779), [anon_sym_int] = ACTIONS(2779), + [anon_sym_uint] = ACTIONS(2779), [anon_sym_float] = ACTIONS(2779), [anon_sym_range] = ACTIONS(2779), [anon_sym_i8] = ACTIONS(2779), @@ -120248,6 +121415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2783), [anon_sym_bool] = ACTIONS(2783), [anon_sym_int] = ACTIONS(2783), + [anon_sym_uint] = ACTIONS(2783), [anon_sym_float] = ACTIONS(2783), [anon_sym_range] = ACTIONS(2783), [anon_sym_i8] = ACTIONS(2783), @@ -120324,6 +121492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2787), [anon_sym_bool] = ACTIONS(2787), [anon_sym_int] = ACTIONS(2787), + [anon_sym_uint] = ACTIONS(2787), [anon_sym_float] = ACTIONS(2787), [anon_sym_range] = ACTIONS(2787), [anon_sym_i8] = ACTIONS(2787), @@ -120400,6 +121569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2791), [anon_sym_bool] = ACTIONS(2791), [anon_sym_int] = ACTIONS(2791), + [anon_sym_uint] = ACTIONS(2791), [anon_sym_float] = ACTIONS(2791), [anon_sym_range] = ACTIONS(2791), [anon_sym_i8] = ACTIONS(2791), @@ -120476,6 +121646,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2795), [anon_sym_bool] = ACTIONS(2795), [anon_sym_int] = ACTIONS(2795), + [anon_sym_uint] = ACTIONS(2795), [anon_sym_float] = ACTIONS(2795), [anon_sym_range] = ACTIONS(2795), [anon_sym_i8] = ACTIONS(2795), @@ -120552,6 +121723,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2799), [anon_sym_bool] = ACTIONS(2799), [anon_sym_int] = ACTIONS(2799), + [anon_sym_uint] = ACTIONS(2799), [anon_sym_float] = ACTIONS(2799), [anon_sym_range] = ACTIONS(2799), [anon_sym_i8] = ACTIONS(2799), @@ -120628,6 +121800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2803), [anon_sym_bool] = ACTIONS(2803), [anon_sym_int] = ACTIONS(2803), + [anon_sym_uint] = ACTIONS(2803), [anon_sym_float] = ACTIONS(2803), [anon_sym_range] = ACTIONS(2803), [anon_sym_i8] = ACTIONS(2803), @@ -120704,6 +121877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2807), [anon_sym_bool] = ACTIONS(2807), [anon_sym_int] = ACTIONS(2807), + [anon_sym_uint] = ACTIONS(2807), [anon_sym_float] = ACTIONS(2807), [anon_sym_range] = ACTIONS(2807), [anon_sym_i8] = ACTIONS(2807), @@ -120780,6 +121954,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2811), [anon_sym_bool] = ACTIONS(2811), [anon_sym_int] = ACTIONS(2811), + [anon_sym_uint] = ACTIONS(2811), [anon_sym_float] = ACTIONS(2811), [anon_sym_range] = ACTIONS(2811), [anon_sym_i8] = ACTIONS(2811), @@ -120856,6 +122031,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2815), [anon_sym_bool] = ACTIONS(2815), [anon_sym_int] = ACTIONS(2815), + [anon_sym_uint] = ACTIONS(2815), [anon_sym_float] = ACTIONS(2815), [anon_sym_range] = ACTIONS(2815), [anon_sym_i8] = ACTIONS(2815), @@ -120932,6 +122108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2819), [anon_sym_bool] = ACTIONS(2819), [anon_sym_int] = ACTIONS(2819), + [anon_sym_uint] = ACTIONS(2819), [anon_sym_float] = ACTIONS(2819), [anon_sym_range] = ACTIONS(2819), [anon_sym_i8] = ACTIONS(2819), @@ -121008,6 +122185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2823), [anon_sym_bool] = ACTIONS(2823), [anon_sym_int] = ACTIONS(2823), + [anon_sym_uint] = ACTIONS(2823), [anon_sym_float] = ACTIONS(2823), [anon_sym_range] = ACTIONS(2823), [anon_sym_i8] = ACTIONS(2823), @@ -121084,6 +122262,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2827), [anon_sym_bool] = ACTIONS(2827), [anon_sym_int] = ACTIONS(2827), + [anon_sym_uint] = ACTIONS(2827), [anon_sym_float] = ACTIONS(2827), [anon_sym_range] = ACTIONS(2827), [anon_sym_i8] = ACTIONS(2827), @@ -121160,6 +122339,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2831), [anon_sym_bool] = ACTIONS(2831), [anon_sym_int] = ACTIONS(2831), + [anon_sym_uint] = ACTIONS(2831), [anon_sym_float] = ACTIONS(2831), [anon_sym_range] = ACTIONS(2831), [anon_sym_i8] = ACTIONS(2831), @@ -121236,6 +122416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2835), [anon_sym_bool] = ACTIONS(2835), [anon_sym_int] = ACTIONS(2835), + [anon_sym_uint] = ACTIONS(2835), [anon_sym_float] = ACTIONS(2835), [anon_sym_range] = ACTIONS(2835), [anon_sym_i8] = ACTIONS(2835), @@ -121312,6 +122493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2839), [anon_sym_bool] = ACTIONS(2839), [anon_sym_int] = ACTIONS(2839), + [anon_sym_uint] = ACTIONS(2839), [anon_sym_float] = ACTIONS(2839), [anon_sym_range] = ACTIONS(2839), [anon_sym_i8] = ACTIONS(2839), @@ -121388,6 +122570,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2843), [anon_sym_bool] = ACTIONS(2843), [anon_sym_int] = ACTIONS(2843), + [anon_sym_uint] = ACTIONS(2843), [anon_sym_float] = ACTIONS(2843), [anon_sym_range] = ACTIONS(2843), [anon_sym_i8] = ACTIONS(2843), @@ -121464,6 +122647,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2847), [anon_sym_bool] = ACTIONS(2847), [anon_sym_int] = ACTIONS(2847), + [anon_sym_uint] = ACTIONS(2847), [anon_sym_float] = ACTIONS(2847), [anon_sym_range] = ACTIONS(2847), [anon_sym_i8] = ACTIONS(2847), @@ -121540,6 +122724,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2851), [anon_sym_bool] = ACTIONS(2851), [anon_sym_int] = ACTIONS(2851), + [anon_sym_uint] = ACTIONS(2851), [anon_sym_float] = ACTIONS(2851), [anon_sym_range] = ACTIONS(2851), [anon_sym_i8] = ACTIONS(2851), @@ -121616,6 +122801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2855), [anon_sym_bool] = ACTIONS(2855), [anon_sym_int] = ACTIONS(2855), + [anon_sym_uint] = ACTIONS(2855), [anon_sym_float] = ACTIONS(2855), [anon_sym_range] = ACTIONS(2855), [anon_sym_i8] = ACTIONS(2855), @@ -121692,6 +122878,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2859), [anon_sym_bool] = ACTIONS(2859), [anon_sym_int] = ACTIONS(2859), + [anon_sym_uint] = ACTIONS(2859), [anon_sym_float] = ACTIONS(2859), [anon_sym_range] = ACTIONS(2859), [anon_sym_i8] = ACTIONS(2859), @@ -121768,6 +122955,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2863), [anon_sym_bool] = ACTIONS(2863), [anon_sym_int] = ACTIONS(2863), + [anon_sym_uint] = ACTIONS(2863), [anon_sym_float] = ACTIONS(2863), [anon_sym_range] = ACTIONS(2863), [anon_sym_i8] = ACTIONS(2863), @@ -121844,6 +123032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2867), [anon_sym_bool] = ACTIONS(2867), [anon_sym_int] = ACTIONS(2867), + [anon_sym_uint] = ACTIONS(2867), [anon_sym_float] = ACTIONS(2867), [anon_sym_range] = ACTIONS(2867), [anon_sym_i8] = ACTIONS(2867), @@ -121920,6 +123109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2871), [anon_sym_bool] = ACTIONS(2871), [anon_sym_int] = ACTIONS(2871), + [anon_sym_uint] = ACTIONS(2871), [anon_sym_float] = ACTIONS(2871), [anon_sym_range] = ACTIONS(2871), [anon_sym_i8] = ACTIONS(2871), @@ -121996,6 +123186,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2875), [anon_sym_bool] = ACTIONS(2875), [anon_sym_int] = ACTIONS(2875), + [anon_sym_uint] = ACTIONS(2875), [anon_sym_float] = ACTIONS(2875), [anon_sym_range] = ACTIONS(2875), [anon_sym_i8] = ACTIONS(2875), @@ -122072,6 +123263,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2879), [anon_sym_bool] = ACTIONS(2879), [anon_sym_int] = ACTIONS(2879), + [anon_sym_uint] = ACTIONS(2879), [anon_sym_float] = ACTIONS(2879), [anon_sym_range] = ACTIONS(2879), [anon_sym_i8] = ACTIONS(2879), @@ -122148,6 +123340,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2883), [anon_sym_bool] = ACTIONS(2883), [anon_sym_int] = ACTIONS(2883), + [anon_sym_uint] = ACTIONS(2883), [anon_sym_float] = ACTIONS(2883), [anon_sym_range] = ACTIONS(2883), [anon_sym_i8] = ACTIONS(2883), @@ -122224,6 +123417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2887), [anon_sym_bool] = ACTIONS(2887), [anon_sym_int] = ACTIONS(2887), + [anon_sym_uint] = ACTIONS(2887), [anon_sym_float] = ACTIONS(2887), [anon_sym_range] = ACTIONS(2887), [anon_sym_i8] = ACTIONS(2887), @@ -122300,6 +123494,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2891), [anon_sym_bool] = ACTIONS(2891), [anon_sym_int] = ACTIONS(2891), + [anon_sym_uint] = ACTIONS(2891), [anon_sym_float] = ACTIONS(2891), [anon_sym_range] = ACTIONS(2891), [anon_sym_i8] = ACTIONS(2891), @@ -122376,6 +123571,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2895), [anon_sym_bool] = ACTIONS(2895), [anon_sym_int] = ACTIONS(2895), + [anon_sym_uint] = ACTIONS(2895), [anon_sym_float] = ACTIONS(2895), [anon_sym_range] = ACTIONS(2895), [anon_sym_i8] = ACTIONS(2895), @@ -122452,6 +123648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2899), [anon_sym_bool] = ACTIONS(2899), [anon_sym_int] = ACTIONS(2899), + [anon_sym_uint] = ACTIONS(2899), [anon_sym_float] = ACTIONS(2899), [anon_sym_range] = ACTIONS(2899), [anon_sym_i8] = ACTIONS(2899), @@ -122528,6 +123725,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2903), [anon_sym_bool] = ACTIONS(2903), [anon_sym_int] = ACTIONS(2903), + [anon_sym_uint] = ACTIONS(2903), [anon_sym_float] = ACTIONS(2903), [anon_sym_range] = ACTIONS(2903), [anon_sym_i8] = ACTIONS(2903), @@ -122604,6 +123802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2907), [anon_sym_bool] = ACTIONS(2907), [anon_sym_int] = ACTIONS(2907), + [anon_sym_uint] = ACTIONS(2907), [anon_sym_float] = ACTIONS(2907), [anon_sym_range] = ACTIONS(2907), [anon_sym_i8] = ACTIONS(2907), @@ -122680,6 +123879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2911), [anon_sym_bool] = ACTIONS(2911), [anon_sym_int] = ACTIONS(2911), + [anon_sym_uint] = ACTIONS(2911), [anon_sym_float] = ACTIONS(2911), [anon_sym_range] = ACTIONS(2911), [anon_sym_i8] = ACTIONS(2911), @@ -122756,6 +123956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2915), [anon_sym_bool] = ACTIONS(2915), [anon_sym_int] = ACTIONS(2915), + [anon_sym_uint] = ACTIONS(2915), [anon_sym_float] = ACTIONS(2915), [anon_sym_range] = ACTIONS(2915), [anon_sym_i8] = ACTIONS(2915), @@ -122832,6 +124033,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2919), [anon_sym_bool] = ACTIONS(2919), [anon_sym_int] = ACTIONS(2919), + [anon_sym_uint] = ACTIONS(2919), [anon_sym_float] = ACTIONS(2919), [anon_sym_range] = ACTIONS(2919), [anon_sym_i8] = ACTIONS(2919), @@ -122908,6 +124110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2923), [anon_sym_bool] = ACTIONS(2923), [anon_sym_int] = ACTIONS(2923), + [anon_sym_uint] = ACTIONS(2923), [anon_sym_float] = ACTIONS(2923), [anon_sym_range] = ACTIONS(2923), [anon_sym_i8] = ACTIONS(2923), @@ -122984,6 +124187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2927), [anon_sym_bool] = ACTIONS(2927), [anon_sym_int] = ACTIONS(2927), + [anon_sym_uint] = ACTIONS(2927), [anon_sym_float] = ACTIONS(2927), [anon_sym_range] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), @@ -123060,6 +124264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2931), [anon_sym_bool] = ACTIONS(2931), [anon_sym_int] = ACTIONS(2931), + [anon_sym_uint] = ACTIONS(2931), [anon_sym_float] = ACTIONS(2931), [anon_sym_range] = ACTIONS(2931), [anon_sym_i8] = ACTIONS(2931), @@ -123136,6 +124341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2935), [anon_sym_bool] = ACTIONS(2935), [anon_sym_int] = ACTIONS(2935), + [anon_sym_uint] = ACTIONS(2935), [anon_sym_float] = ACTIONS(2935), [anon_sym_range] = ACTIONS(2935), [anon_sym_i8] = ACTIONS(2935), @@ -123212,6 +124418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2939), [anon_sym_bool] = ACTIONS(2939), [anon_sym_int] = ACTIONS(2939), + [anon_sym_uint] = ACTIONS(2939), [anon_sym_float] = ACTIONS(2939), [anon_sym_range] = ACTIONS(2939), [anon_sym_i8] = ACTIONS(2939), @@ -123288,6 +124495,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2943), [anon_sym_bool] = ACTIONS(2943), [anon_sym_int] = ACTIONS(2943), + [anon_sym_uint] = ACTIONS(2943), [anon_sym_float] = ACTIONS(2943), [anon_sym_range] = ACTIONS(2943), [anon_sym_i8] = ACTIONS(2943), @@ -123364,6 +124572,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2947), [anon_sym_bool] = ACTIONS(2947), [anon_sym_int] = ACTIONS(2947), + [anon_sym_uint] = ACTIONS(2947), [anon_sym_float] = ACTIONS(2947), [anon_sym_range] = ACTIONS(2947), [anon_sym_i8] = ACTIONS(2947), @@ -123440,6 +124649,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2951), [anon_sym_bool] = ACTIONS(2951), [anon_sym_int] = ACTIONS(2951), + [anon_sym_uint] = ACTIONS(2951), [anon_sym_float] = ACTIONS(2951), [anon_sym_range] = ACTIONS(2951), [anon_sym_i8] = ACTIONS(2951), @@ -123516,6 +124726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2955), [anon_sym_bool] = ACTIONS(2955), [anon_sym_int] = ACTIONS(2955), + [anon_sym_uint] = ACTIONS(2955), [anon_sym_float] = ACTIONS(2955), [anon_sym_range] = ACTIONS(2955), [anon_sym_i8] = ACTIONS(2955), @@ -123592,6 +124803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2959), [anon_sym_bool] = ACTIONS(2959), [anon_sym_int] = ACTIONS(2959), + [anon_sym_uint] = ACTIONS(2959), [anon_sym_float] = ACTIONS(2959), [anon_sym_range] = ACTIONS(2959), [anon_sym_i8] = ACTIONS(2959), @@ -123668,6 +124880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2963), [anon_sym_bool] = ACTIONS(2963), [anon_sym_int] = ACTIONS(2963), + [anon_sym_uint] = ACTIONS(2963), [anon_sym_float] = ACTIONS(2963), [anon_sym_range] = ACTIONS(2963), [anon_sym_i8] = ACTIONS(2963), @@ -123744,6 +124957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2967), [anon_sym_bool] = ACTIONS(2967), [anon_sym_int] = ACTIONS(2967), + [anon_sym_uint] = ACTIONS(2967), [anon_sym_float] = ACTIONS(2967), [anon_sym_range] = ACTIONS(2967), [anon_sym_i8] = ACTIONS(2967), @@ -123820,6 +125034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2971), [anon_sym_bool] = ACTIONS(2971), [anon_sym_int] = ACTIONS(2971), + [anon_sym_uint] = ACTIONS(2971), [anon_sym_float] = ACTIONS(2971), [anon_sym_range] = ACTIONS(2971), [anon_sym_i8] = ACTIONS(2971), @@ -123896,6 +125111,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2975), [anon_sym_bool] = ACTIONS(2975), [anon_sym_int] = ACTIONS(2975), + [anon_sym_uint] = ACTIONS(2975), [anon_sym_float] = ACTIONS(2975), [anon_sym_range] = ACTIONS(2975), [anon_sym_i8] = ACTIONS(2975), @@ -123972,6 +125188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2979), [anon_sym_bool] = ACTIONS(2979), [anon_sym_int] = ACTIONS(2979), + [anon_sym_uint] = ACTIONS(2979), [anon_sym_float] = ACTIONS(2979), [anon_sym_range] = ACTIONS(2979), [anon_sym_i8] = ACTIONS(2979), @@ -124048,6 +125265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2983), [anon_sym_bool] = ACTIONS(2983), [anon_sym_int] = ACTIONS(2983), + [anon_sym_uint] = ACTIONS(2983), [anon_sym_float] = ACTIONS(2983), [anon_sym_range] = ACTIONS(2983), [anon_sym_i8] = ACTIONS(2983), @@ -124124,6 +125342,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2987), [anon_sym_bool] = ACTIONS(2987), [anon_sym_int] = ACTIONS(2987), + [anon_sym_uint] = ACTIONS(2987), [anon_sym_float] = ACTIONS(2987), [anon_sym_range] = ACTIONS(2987), [anon_sym_i8] = ACTIONS(2987), @@ -124200,6 +125419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2991), [anon_sym_bool] = ACTIONS(2991), [anon_sym_int] = ACTIONS(2991), + [anon_sym_uint] = ACTIONS(2991), [anon_sym_float] = ACTIONS(2991), [anon_sym_range] = ACTIONS(2991), [anon_sym_i8] = ACTIONS(2991), @@ -124276,6 +125496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2995), [anon_sym_bool] = ACTIONS(2995), [anon_sym_int] = ACTIONS(2995), + [anon_sym_uint] = ACTIONS(2995), [anon_sym_float] = ACTIONS(2995), [anon_sym_range] = ACTIONS(2995), [anon_sym_i8] = ACTIONS(2995), @@ -124352,6 +125573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(2999), [anon_sym_bool] = ACTIONS(2999), [anon_sym_int] = ACTIONS(2999), + [anon_sym_uint] = ACTIONS(2999), [anon_sym_float] = ACTIONS(2999), [anon_sym_range] = ACTIONS(2999), [anon_sym_i8] = ACTIONS(2999), @@ -124428,6 +125650,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3003), [anon_sym_bool] = ACTIONS(3003), [anon_sym_int] = ACTIONS(3003), + [anon_sym_uint] = ACTIONS(3003), [anon_sym_float] = ACTIONS(3003), [anon_sym_range] = ACTIONS(3003), [anon_sym_i8] = ACTIONS(3003), @@ -124504,6 +125727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3007), [anon_sym_bool] = ACTIONS(3007), [anon_sym_int] = ACTIONS(3007), + [anon_sym_uint] = ACTIONS(3007), [anon_sym_float] = ACTIONS(3007), [anon_sym_range] = ACTIONS(3007), [anon_sym_i8] = ACTIONS(3007), @@ -124580,6 +125804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3011), [anon_sym_bool] = ACTIONS(3011), [anon_sym_int] = ACTIONS(3011), + [anon_sym_uint] = ACTIONS(3011), [anon_sym_float] = ACTIONS(3011), [anon_sym_range] = ACTIONS(3011), [anon_sym_i8] = ACTIONS(3011), @@ -124656,6 +125881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3015), [anon_sym_bool] = ACTIONS(3015), [anon_sym_int] = ACTIONS(3015), + [anon_sym_uint] = ACTIONS(3015), [anon_sym_float] = ACTIONS(3015), [anon_sym_range] = ACTIONS(3015), [anon_sym_i8] = ACTIONS(3015), @@ -124732,6 +125958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3019), [anon_sym_bool] = ACTIONS(3019), [anon_sym_int] = ACTIONS(3019), + [anon_sym_uint] = ACTIONS(3019), [anon_sym_float] = ACTIONS(3019), [anon_sym_range] = ACTIONS(3019), [anon_sym_i8] = ACTIONS(3019), @@ -124808,6 +126035,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3023), [anon_sym_bool] = ACTIONS(3023), [anon_sym_int] = ACTIONS(3023), + [anon_sym_uint] = ACTIONS(3023), [anon_sym_float] = ACTIONS(3023), [anon_sym_range] = ACTIONS(3023), [anon_sym_i8] = ACTIONS(3023), @@ -124884,6 +126112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3027), [anon_sym_bool] = ACTIONS(3027), [anon_sym_int] = ACTIONS(3027), + [anon_sym_uint] = ACTIONS(3027), [anon_sym_float] = ACTIONS(3027), [anon_sym_range] = ACTIONS(3027), [anon_sym_i8] = ACTIONS(3027), @@ -124960,6 +126189,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3031), [anon_sym_bool] = ACTIONS(3031), [anon_sym_int] = ACTIONS(3031), + [anon_sym_uint] = ACTIONS(3031), [anon_sym_float] = ACTIONS(3031), [anon_sym_range] = ACTIONS(3031), [anon_sym_i8] = ACTIONS(3031), @@ -125036,6 +126266,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3035), [anon_sym_bool] = ACTIONS(3035), [anon_sym_int] = ACTIONS(3035), + [anon_sym_uint] = ACTIONS(3035), [anon_sym_float] = ACTIONS(3035), [anon_sym_range] = ACTIONS(3035), [anon_sym_i8] = ACTIONS(3035), @@ -125112,6 +126343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3039), [anon_sym_bool] = ACTIONS(3039), [anon_sym_int] = ACTIONS(3039), + [anon_sym_uint] = ACTIONS(3039), [anon_sym_float] = ACTIONS(3039), [anon_sym_range] = ACTIONS(3039), [anon_sym_i8] = ACTIONS(3039), @@ -125188,6 +126420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3043), [anon_sym_bool] = ACTIONS(3043), [anon_sym_int] = ACTIONS(3043), + [anon_sym_uint] = ACTIONS(3043), [anon_sym_float] = ACTIONS(3043), [anon_sym_range] = ACTIONS(3043), [anon_sym_i8] = ACTIONS(3043), @@ -125264,6 +126497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3047), [anon_sym_bool] = ACTIONS(3047), [anon_sym_int] = ACTIONS(3047), + [anon_sym_uint] = ACTIONS(3047), [anon_sym_float] = ACTIONS(3047), [anon_sym_range] = ACTIONS(3047), [anon_sym_i8] = ACTIONS(3047), @@ -125340,6 +126574,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3051), [anon_sym_bool] = ACTIONS(3051), [anon_sym_int] = ACTIONS(3051), + [anon_sym_uint] = ACTIONS(3051), [anon_sym_float] = ACTIONS(3051), [anon_sym_range] = ACTIONS(3051), [anon_sym_i8] = ACTIONS(3051), @@ -125416,6 +126651,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3055), [anon_sym_bool] = ACTIONS(3055), [anon_sym_int] = ACTIONS(3055), + [anon_sym_uint] = ACTIONS(3055), [anon_sym_float] = ACTIONS(3055), [anon_sym_range] = ACTIONS(3055), [anon_sym_i8] = ACTIONS(3055), @@ -125492,6 +126728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3059), [anon_sym_bool] = ACTIONS(3059), [anon_sym_int] = ACTIONS(3059), + [anon_sym_uint] = ACTIONS(3059), [anon_sym_float] = ACTIONS(3059), [anon_sym_range] = ACTIONS(3059), [anon_sym_i8] = ACTIONS(3059), @@ -125568,6 +126805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3063), [anon_sym_bool] = ACTIONS(3063), [anon_sym_int] = ACTIONS(3063), + [anon_sym_uint] = ACTIONS(3063), [anon_sym_float] = ACTIONS(3063), [anon_sym_range] = ACTIONS(3063), [anon_sym_i8] = ACTIONS(3063), @@ -125644,6 +126882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3067), [anon_sym_bool] = ACTIONS(3067), [anon_sym_int] = ACTIONS(3067), + [anon_sym_uint] = ACTIONS(3067), [anon_sym_float] = ACTIONS(3067), [anon_sym_range] = ACTIONS(3067), [anon_sym_i8] = ACTIONS(3067), @@ -125720,6 +126959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3071), [anon_sym_bool] = ACTIONS(3071), [anon_sym_int] = ACTIONS(3071), + [anon_sym_uint] = ACTIONS(3071), [anon_sym_float] = ACTIONS(3071), [anon_sym_range] = ACTIONS(3071), [anon_sym_i8] = ACTIONS(3071), @@ -125796,6 +127036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3075), [anon_sym_bool] = ACTIONS(3075), [anon_sym_int] = ACTIONS(3075), + [anon_sym_uint] = ACTIONS(3075), [anon_sym_float] = ACTIONS(3075), [anon_sym_range] = ACTIONS(3075), [anon_sym_i8] = ACTIONS(3075), @@ -125872,6 +127113,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3079), [anon_sym_bool] = ACTIONS(3079), [anon_sym_int] = ACTIONS(3079), + [anon_sym_uint] = ACTIONS(3079), [anon_sym_float] = ACTIONS(3079), [anon_sym_range] = ACTIONS(3079), [anon_sym_i8] = ACTIONS(3079), @@ -125948,6 +127190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3083), [anon_sym_bool] = ACTIONS(3083), [anon_sym_int] = ACTIONS(3083), + [anon_sym_uint] = ACTIONS(3083), [anon_sym_float] = ACTIONS(3083), [anon_sym_range] = ACTIONS(3083), [anon_sym_i8] = ACTIONS(3083), @@ -126024,6 +127267,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3087), [anon_sym_bool] = ACTIONS(3087), [anon_sym_int] = ACTIONS(3087), + [anon_sym_uint] = ACTIONS(3087), [anon_sym_float] = ACTIONS(3087), [anon_sym_range] = ACTIONS(3087), [anon_sym_i8] = ACTIONS(3087), @@ -126100,6 +127344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3091), [anon_sym_bool] = ACTIONS(3091), [anon_sym_int] = ACTIONS(3091), + [anon_sym_uint] = ACTIONS(3091), [anon_sym_float] = ACTIONS(3091), [anon_sym_range] = ACTIONS(3091), [anon_sym_i8] = ACTIONS(3091), @@ -126176,6 +127421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3095), [anon_sym_bool] = ACTIONS(3095), [anon_sym_int] = ACTIONS(3095), + [anon_sym_uint] = ACTIONS(3095), [anon_sym_float] = ACTIONS(3095), [anon_sym_range] = ACTIONS(3095), [anon_sym_i8] = ACTIONS(3095), @@ -126252,6 +127498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3099), [anon_sym_bool] = ACTIONS(3099), [anon_sym_int] = ACTIONS(3099), + [anon_sym_uint] = ACTIONS(3099), [anon_sym_float] = ACTIONS(3099), [anon_sym_range] = ACTIONS(3099), [anon_sym_i8] = ACTIONS(3099), @@ -126328,6 +127575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3103), [anon_sym_bool] = ACTIONS(3103), [anon_sym_int] = ACTIONS(3103), + [anon_sym_uint] = ACTIONS(3103), [anon_sym_float] = ACTIONS(3103), [anon_sym_range] = ACTIONS(3103), [anon_sym_i8] = ACTIONS(3103), @@ -126404,6 +127652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3107), [anon_sym_bool] = ACTIONS(3107), [anon_sym_int] = ACTIONS(3107), + [anon_sym_uint] = ACTIONS(3107), [anon_sym_float] = ACTIONS(3107), [anon_sym_range] = ACTIONS(3107), [anon_sym_i8] = ACTIONS(3107), @@ -126480,6 +127729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3111), [anon_sym_bool] = ACTIONS(3111), [anon_sym_int] = ACTIONS(3111), + [anon_sym_uint] = ACTIONS(3111), [anon_sym_float] = ACTIONS(3111), [anon_sym_range] = ACTIONS(3111), [anon_sym_i8] = ACTIONS(3111), @@ -126556,6 +127806,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3115), [anon_sym_bool] = ACTIONS(3115), [anon_sym_int] = ACTIONS(3115), + [anon_sym_uint] = ACTIONS(3115), [anon_sym_float] = ACTIONS(3115), [anon_sym_range] = ACTIONS(3115), [anon_sym_i8] = ACTIONS(3115), @@ -126632,6 +127883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3119), [anon_sym_bool] = ACTIONS(3119), [anon_sym_int] = ACTIONS(3119), + [anon_sym_uint] = ACTIONS(3119), [anon_sym_float] = ACTIONS(3119), [anon_sym_range] = ACTIONS(3119), [anon_sym_i8] = ACTIONS(3119), @@ -126708,6 +127960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3123), [anon_sym_bool] = ACTIONS(3123), [anon_sym_int] = ACTIONS(3123), + [anon_sym_uint] = ACTIONS(3123), [anon_sym_float] = ACTIONS(3123), [anon_sym_range] = ACTIONS(3123), [anon_sym_i8] = ACTIONS(3123), @@ -126784,6 +128037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3127), [anon_sym_bool] = ACTIONS(3127), [anon_sym_int] = ACTIONS(3127), + [anon_sym_uint] = ACTIONS(3127), [anon_sym_float] = ACTIONS(3127), [anon_sym_range] = ACTIONS(3127), [anon_sym_i8] = ACTIONS(3127), @@ -126860,6 +128114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3131), [anon_sym_bool] = ACTIONS(3131), [anon_sym_int] = ACTIONS(3131), + [anon_sym_uint] = ACTIONS(3131), [anon_sym_float] = ACTIONS(3131), [anon_sym_range] = ACTIONS(3131), [anon_sym_i8] = ACTIONS(3131), @@ -126936,6 +128191,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3135), [anon_sym_bool] = ACTIONS(3135), [anon_sym_int] = ACTIONS(3135), + [anon_sym_uint] = ACTIONS(3135), [anon_sym_float] = ACTIONS(3135), [anon_sym_range] = ACTIONS(3135), [anon_sym_i8] = ACTIONS(3135), @@ -127012,6 +128268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3139), [anon_sym_bool] = ACTIONS(3139), [anon_sym_int] = ACTIONS(3139), + [anon_sym_uint] = ACTIONS(3139), [anon_sym_float] = ACTIONS(3139), [anon_sym_range] = ACTIONS(3139), [anon_sym_i8] = ACTIONS(3139), @@ -127088,6 +128345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3143), [anon_sym_bool] = ACTIONS(3143), [anon_sym_int] = ACTIONS(3143), + [anon_sym_uint] = ACTIONS(3143), [anon_sym_float] = ACTIONS(3143), [anon_sym_range] = ACTIONS(3143), [anon_sym_i8] = ACTIONS(3143), @@ -127164,6 +128422,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3147), [anon_sym_bool] = ACTIONS(3147), [anon_sym_int] = ACTIONS(3147), + [anon_sym_uint] = ACTIONS(3147), [anon_sym_float] = ACTIONS(3147), [anon_sym_range] = ACTIONS(3147), [anon_sym_i8] = ACTIONS(3147), @@ -127240,6 +128499,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3151), [anon_sym_bool] = ACTIONS(3151), [anon_sym_int] = ACTIONS(3151), + [anon_sym_uint] = ACTIONS(3151), [anon_sym_float] = ACTIONS(3151), [anon_sym_range] = ACTIONS(3151), [anon_sym_i8] = ACTIONS(3151), @@ -127316,6 +128576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3155), [anon_sym_bool] = ACTIONS(3155), [anon_sym_int] = ACTIONS(3155), + [anon_sym_uint] = ACTIONS(3155), [anon_sym_float] = ACTIONS(3155), [anon_sym_range] = ACTIONS(3155), [anon_sym_i8] = ACTIONS(3155), @@ -127392,6 +128653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3159), [anon_sym_bool] = ACTIONS(3159), [anon_sym_int] = ACTIONS(3159), + [anon_sym_uint] = ACTIONS(3159), [anon_sym_float] = ACTIONS(3159), [anon_sym_range] = ACTIONS(3159), [anon_sym_i8] = ACTIONS(3159), @@ -127468,6 +128730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3163), [anon_sym_bool] = ACTIONS(3163), [anon_sym_int] = ACTIONS(3163), + [anon_sym_uint] = ACTIONS(3163), [anon_sym_float] = ACTIONS(3163), [anon_sym_range] = ACTIONS(3163), [anon_sym_i8] = ACTIONS(3163), @@ -127544,6 +128807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3167), [anon_sym_bool] = ACTIONS(3167), [anon_sym_int] = ACTIONS(3167), + [anon_sym_uint] = ACTIONS(3167), [anon_sym_float] = ACTIONS(3167), [anon_sym_range] = ACTIONS(3167), [anon_sym_i8] = ACTIONS(3167), @@ -127620,6 +128884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3171), [anon_sym_bool] = ACTIONS(3171), [anon_sym_int] = ACTIONS(3171), + [anon_sym_uint] = ACTIONS(3171), [anon_sym_float] = ACTIONS(3171), [anon_sym_range] = ACTIONS(3171), [anon_sym_i8] = ACTIONS(3171), @@ -127696,6 +128961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3175), [anon_sym_bool] = ACTIONS(3175), [anon_sym_int] = ACTIONS(3175), + [anon_sym_uint] = ACTIONS(3175), [anon_sym_float] = ACTIONS(3175), [anon_sym_range] = ACTIONS(3175), [anon_sym_i8] = ACTIONS(3175), @@ -127772,6 +129038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3179), [anon_sym_bool] = ACTIONS(3179), [anon_sym_int] = ACTIONS(3179), + [anon_sym_uint] = ACTIONS(3179), [anon_sym_float] = ACTIONS(3179), [anon_sym_range] = ACTIONS(3179), [anon_sym_i8] = ACTIONS(3179), @@ -127848,6 +129115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3183), [anon_sym_bool] = ACTIONS(3183), [anon_sym_int] = ACTIONS(3183), + [anon_sym_uint] = ACTIONS(3183), [anon_sym_float] = ACTIONS(3183), [anon_sym_range] = ACTIONS(3183), [anon_sym_i8] = ACTIONS(3183), @@ -127924,6 +129192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3187), [anon_sym_bool] = ACTIONS(3187), [anon_sym_int] = ACTIONS(3187), + [anon_sym_uint] = ACTIONS(3187), [anon_sym_float] = ACTIONS(3187), [anon_sym_range] = ACTIONS(3187), [anon_sym_i8] = ACTIONS(3187), @@ -128000,6 +129269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3191), [anon_sym_bool] = ACTIONS(3191), [anon_sym_int] = ACTIONS(3191), + [anon_sym_uint] = ACTIONS(3191), [anon_sym_float] = ACTIONS(3191), [anon_sym_range] = ACTIONS(3191), [anon_sym_i8] = ACTIONS(3191), @@ -128076,6 +129346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3195), [anon_sym_bool] = ACTIONS(3195), [anon_sym_int] = ACTIONS(3195), + [anon_sym_uint] = ACTIONS(3195), [anon_sym_float] = ACTIONS(3195), [anon_sym_range] = ACTIONS(3195), [anon_sym_i8] = ACTIONS(3195), @@ -128152,6 +129423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3199), [anon_sym_bool] = ACTIONS(3199), [anon_sym_int] = ACTIONS(3199), + [anon_sym_uint] = ACTIONS(3199), [anon_sym_float] = ACTIONS(3199), [anon_sym_range] = ACTIONS(3199), [anon_sym_i8] = ACTIONS(3199), @@ -128228,6 +129500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3203), [anon_sym_bool] = ACTIONS(3203), [anon_sym_int] = ACTIONS(3203), + [anon_sym_uint] = ACTIONS(3203), [anon_sym_float] = ACTIONS(3203), [anon_sym_range] = ACTIONS(3203), [anon_sym_i8] = ACTIONS(3203), @@ -128304,6 +129577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3207), [anon_sym_bool] = ACTIONS(3207), [anon_sym_int] = ACTIONS(3207), + [anon_sym_uint] = ACTIONS(3207), [anon_sym_float] = ACTIONS(3207), [anon_sym_range] = ACTIONS(3207), [anon_sym_i8] = ACTIONS(3207), @@ -128380,6 +129654,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3211), [anon_sym_bool] = ACTIONS(3211), [anon_sym_int] = ACTIONS(3211), + [anon_sym_uint] = ACTIONS(3211), [anon_sym_float] = ACTIONS(3211), [anon_sym_range] = ACTIONS(3211), [anon_sym_i8] = ACTIONS(3211), @@ -128456,6 +129731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3215), [anon_sym_bool] = ACTIONS(3215), [anon_sym_int] = ACTIONS(3215), + [anon_sym_uint] = ACTIONS(3215), [anon_sym_float] = ACTIONS(3215), [anon_sym_range] = ACTIONS(3215), [anon_sym_i8] = ACTIONS(3215), @@ -128532,6 +129808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3219), [anon_sym_bool] = ACTIONS(3219), [anon_sym_int] = ACTIONS(3219), + [anon_sym_uint] = ACTIONS(3219), [anon_sym_float] = ACTIONS(3219), [anon_sym_range] = ACTIONS(3219), [anon_sym_i8] = ACTIONS(3219), @@ -128608,6 +129885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3223), [anon_sym_bool] = ACTIONS(3223), [anon_sym_int] = ACTIONS(3223), + [anon_sym_uint] = ACTIONS(3223), [anon_sym_float] = ACTIONS(3223), [anon_sym_range] = ACTIONS(3223), [anon_sym_i8] = ACTIONS(3223), @@ -128684,6 +129962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3227), [anon_sym_bool] = ACTIONS(3227), [anon_sym_int] = ACTIONS(3227), + [anon_sym_uint] = ACTIONS(3227), [anon_sym_float] = ACTIONS(3227), [anon_sym_range] = ACTIONS(3227), [anon_sym_i8] = ACTIONS(3227), @@ -128760,6 +130039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3231), [anon_sym_bool] = ACTIONS(3231), [anon_sym_int] = ACTIONS(3231), + [anon_sym_uint] = ACTIONS(3231), [anon_sym_float] = ACTIONS(3231), [anon_sym_range] = ACTIONS(3231), [anon_sym_i8] = ACTIONS(3231), @@ -128836,6 +130116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3235), [anon_sym_bool] = ACTIONS(3235), [anon_sym_int] = ACTIONS(3235), + [anon_sym_uint] = ACTIONS(3235), [anon_sym_float] = ACTIONS(3235), [anon_sym_range] = ACTIONS(3235), [anon_sym_i8] = ACTIONS(3235), @@ -128912,6 +130193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3239), [anon_sym_bool] = ACTIONS(3239), [anon_sym_int] = ACTIONS(3239), + [anon_sym_uint] = ACTIONS(3239), [anon_sym_float] = ACTIONS(3239), [anon_sym_range] = ACTIONS(3239), [anon_sym_i8] = ACTIONS(3239), @@ -128988,6 +130270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3243), [anon_sym_bool] = ACTIONS(3243), [anon_sym_int] = ACTIONS(3243), + [anon_sym_uint] = ACTIONS(3243), [anon_sym_float] = ACTIONS(3243), [anon_sym_range] = ACTIONS(3243), [anon_sym_i8] = ACTIONS(3243), @@ -129064,6 +130347,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3247), [anon_sym_bool] = ACTIONS(3247), [anon_sym_int] = ACTIONS(3247), + [anon_sym_uint] = ACTIONS(3247), [anon_sym_float] = ACTIONS(3247), [anon_sym_range] = ACTIONS(3247), [anon_sym_i8] = ACTIONS(3247), @@ -129140,6 +130424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3251), [anon_sym_bool] = ACTIONS(3251), [anon_sym_int] = ACTIONS(3251), + [anon_sym_uint] = ACTIONS(3251), [anon_sym_float] = ACTIONS(3251), [anon_sym_range] = ACTIONS(3251), [anon_sym_i8] = ACTIONS(3251), @@ -129216,6 +130501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3255), [anon_sym_bool] = ACTIONS(3255), [anon_sym_int] = ACTIONS(3255), + [anon_sym_uint] = ACTIONS(3255), [anon_sym_float] = ACTIONS(3255), [anon_sym_range] = ACTIONS(3255), [anon_sym_i8] = ACTIONS(3255), @@ -129292,6 +130578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3259), [anon_sym_bool] = ACTIONS(3259), [anon_sym_int] = ACTIONS(3259), + [anon_sym_uint] = ACTIONS(3259), [anon_sym_float] = ACTIONS(3259), [anon_sym_range] = ACTIONS(3259), [anon_sym_i8] = ACTIONS(3259), @@ -129368,6 +130655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3263), [anon_sym_bool] = ACTIONS(3263), [anon_sym_int] = ACTIONS(3263), + [anon_sym_uint] = ACTIONS(3263), [anon_sym_float] = ACTIONS(3263), [anon_sym_range] = ACTIONS(3263), [anon_sym_i8] = ACTIONS(3263), @@ -129444,6 +130732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3267), [anon_sym_bool] = ACTIONS(3267), [anon_sym_int] = ACTIONS(3267), + [anon_sym_uint] = ACTIONS(3267), [anon_sym_float] = ACTIONS(3267), [anon_sym_range] = ACTIONS(3267), [anon_sym_i8] = ACTIONS(3267), @@ -129520,6 +130809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3271), [anon_sym_bool] = ACTIONS(3271), [anon_sym_int] = ACTIONS(3271), + [anon_sym_uint] = ACTIONS(3271), [anon_sym_float] = ACTIONS(3271), [anon_sym_range] = ACTIONS(3271), [anon_sym_i8] = ACTIONS(3271), @@ -129596,6 +130886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3275), [anon_sym_bool] = ACTIONS(3275), [anon_sym_int] = ACTIONS(3275), + [anon_sym_uint] = ACTIONS(3275), [anon_sym_float] = ACTIONS(3275), [anon_sym_range] = ACTIONS(3275), [anon_sym_i8] = ACTIONS(3275), @@ -129672,6 +130963,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3279), [anon_sym_bool] = ACTIONS(3279), [anon_sym_int] = ACTIONS(3279), + [anon_sym_uint] = ACTIONS(3279), [anon_sym_float] = ACTIONS(3279), [anon_sym_range] = ACTIONS(3279), [anon_sym_i8] = ACTIONS(3279), @@ -129748,6 +131040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3283), [anon_sym_bool] = ACTIONS(3283), [anon_sym_int] = ACTIONS(3283), + [anon_sym_uint] = ACTIONS(3283), [anon_sym_float] = ACTIONS(3283), [anon_sym_range] = ACTIONS(3283), [anon_sym_i8] = ACTIONS(3283), @@ -129824,6 +131117,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3287), [anon_sym_bool] = ACTIONS(3287), [anon_sym_int] = ACTIONS(3287), + [anon_sym_uint] = ACTIONS(3287), [anon_sym_float] = ACTIONS(3287), [anon_sym_range] = ACTIONS(3287), [anon_sym_i8] = ACTIONS(3287), @@ -129900,6 +131194,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3291), [anon_sym_bool] = ACTIONS(3291), [anon_sym_int] = ACTIONS(3291), + [anon_sym_uint] = ACTIONS(3291), [anon_sym_float] = ACTIONS(3291), [anon_sym_range] = ACTIONS(3291), [anon_sym_i8] = ACTIONS(3291), @@ -129976,6 +131271,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3295), [anon_sym_bool] = ACTIONS(3295), [anon_sym_int] = ACTIONS(3295), + [anon_sym_uint] = ACTIONS(3295), [anon_sym_float] = ACTIONS(3295), [anon_sym_range] = ACTIONS(3295), [anon_sym_i8] = ACTIONS(3295), @@ -130052,6 +131348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3299), [anon_sym_bool] = ACTIONS(3299), [anon_sym_int] = ACTIONS(3299), + [anon_sym_uint] = ACTIONS(3299), [anon_sym_float] = ACTIONS(3299), [anon_sym_range] = ACTIONS(3299), [anon_sym_i8] = ACTIONS(3299), @@ -130134,6 +131431,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -130208,6 +131506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -130282,6 +131581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -130356,6 +131656,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -130430,6 +131731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -130504,6 +131806,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(41), [anon_sym_bool] = ACTIONS(41), [anon_sym_int] = ACTIONS(41), + [anon_sym_uint] = ACTIONS(41), [anon_sym_float] = ACTIONS(41), [anon_sym_range] = ACTIONS(41), [anon_sym_i8] = ACTIONS(41), @@ -130568,6 +131871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3313), [anon_sym_bool] = ACTIONS(3313), [anon_sym_int] = ACTIONS(3313), + [anon_sym_uint] = ACTIONS(3313), [anon_sym_float] = ACTIONS(3313), [anon_sym_range] = ACTIONS(3313), [anon_sym_i8] = ACTIONS(3313), @@ -130640,6 +131944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3323), [anon_sym_bool] = ACTIONS(3323), [anon_sym_int] = ACTIONS(3323), + [anon_sym_uint] = ACTIONS(3323), [anon_sym_float] = ACTIONS(3323), [anon_sym_range] = ACTIONS(3323), [anon_sym_i8] = ACTIONS(3323), @@ -130712,6 +132017,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3333), [anon_sym_bool] = ACTIONS(3333), [anon_sym_int] = ACTIONS(3333), + [anon_sym_uint] = ACTIONS(3333), [anon_sym_float] = ACTIONS(3333), [anon_sym_range] = ACTIONS(3333), [anon_sym_i8] = ACTIONS(3333), @@ -130784,6 +132090,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3342), [anon_sym_bool] = ACTIONS(3342), [anon_sym_int] = ACTIONS(3342), + [anon_sym_uint] = ACTIONS(3342), [anon_sym_float] = ACTIONS(3342), [anon_sym_range] = ACTIONS(3342), [anon_sym_i8] = ACTIONS(3342), @@ -130856,6 +132163,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3352), [anon_sym_bool] = ACTIONS(3352), [anon_sym_int] = ACTIONS(3352), + [anon_sym_uint] = ACTIONS(3352), [anon_sym_float] = ACTIONS(3352), [anon_sym_range] = ACTIONS(3352), [anon_sym_i8] = ACTIONS(3352), @@ -130928,6 +132236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3342), [anon_sym_bool] = ACTIONS(3342), [anon_sym_int] = ACTIONS(3342), + [anon_sym_uint] = ACTIONS(3342), [anon_sym_float] = ACTIONS(3342), [anon_sym_range] = ACTIONS(3342), [anon_sym_i8] = ACTIONS(3342), @@ -131000,6 +132309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3313), [anon_sym_bool] = ACTIONS(3313), [anon_sym_int] = ACTIONS(3313), + [anon_sym_uint] = ACTIONS(3313), [anon_sym_float] = ACTIONS(3313), [anon_sym_range] = ACTIONS(3313), [anon_sym_i8] = ACTIONS(3313), @@ -131072,6 +132382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3372), [anon_sym_bool] = ACTIONS(3372), [anon_sym_int] = ACTIONS(3372), + [anon_sym_uint] = ACTIONS(3372), [anon_sym_float] = ACTIONS(3372), [anon_sym_range] = ACTIONS(3372), [anon_sym_i8] = ACTIONS(3372), @@ -131144,6 +132455,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3372), [anon_sym_bool] = ACTIONS(3372), [anon_sym_int] = ACTIONS(3372), + [anon_sym_uint] = ACTIONS(3372), [anon_sym_float] = ACTIONS(3372), [anon_sym_range] = ACTIONS(3372), [anon_sym_i8] = ACTIONS(3372), @@ -131216,6 +132528,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3333), [anon_sym_bool] = ACTIONS(3333), [anon_sym_int] = ACTIONS(3333), + [anon_sym_uint] = ACTIONS(3333), [anon_sym_float] = ACTIONS(3333), [anon_sym_range] = ACTIONS(3333), [anon_sym_i8] = ACTIONS(3333), @@ -131288,6 +132601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3352), [anon_sym_bool] = ACTIONS(3352), [anon_sym_int] = ACTIONS(3352), + [anon_sym_uint] = ACTIONS(3352), [anon_sym_float] = ACTIONS(3352), [anon_sym_range] = ACTIONS(3352), [anon_sym_i8] = ACTIONS(3352), @@ -131360,6 +132674,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3323), [anon_sym_bool] = ACTIONS(3323), [anon_sym_int] = ACTIONS(3323), + [anon_sym_uint] = ACTIONS(3323), [anon_sym_float] = ACTIONS(3323), [anon_sym_range] = ACTIONS(3323), [anon_sym_i8] = ACTIONS(3323), @@ -131431,6 +132746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3403), [anon_sym_bool] = ACTIONS(3403), [anon_sym_int] = ACTIONS(3403), + [anon_sym_uint] = ACTIONS(3403), [anon_sym_float] = ACTIONS(3403), [anon_sym_range] = ACTIONS(3403), [anon_sym_i8] = ACTIONS(3403), @@ -131500,6 +132816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3411), [anon_sym_bool] = ACTIONS(3411), [anon_sym_int] = ACTIONS(3411), + [anon_sym_uint] = ACTIONS(3411), [anon_sym_float] = ACTIONS(3411), [anon_sym_range] = ACTIONS(3411), [anon_sym_i8] = ACTIONS(3411), @@ -131569,6 +132886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3415), [anon_sym_bool] = ACTIONS(3415), [anon_sym_int] = ACTIONS(3415), + [anon_sym_uint] = ACTIONS(3415), [anon_sym_float] = ACTIONS(3415), [anon_sym_range] = ACTIONS(3415), [anon_sym_i8] = ACTIONS(3415), @@ -131638,6 +132956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3419), [anon_sym_bool] = ACTIONS(3419), [anon_sym_int] = ACTIONS(3419), + [anon_sym_uint] = ACTIONS(3419), [anon_sym_float] = ACTIONS(3419), [anon_sym_range] = ACTIONS(3419), [anon_sym_i8] = ACTIONS(3419), @@ -131707,6 +133026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3423), [anon_sym_bool] = ACTIONS(3423), [anon_sym_int] = ACTIONS(3423), + [anon_sym_uint] = ACTIONS(3423), [anon_sym_float] = ACTIONS(3423), [anon_sym_range] = ACTIONS(3423), [anon_sym_i8] = ACTIONS(3423), @@ -131776,6 +133096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_anyopaque] = ACTIONS(3427), [anon_sym_bool] = ACTIONS(3427), [anon_sym_int] = ACTIONS(3427), + [anon_sym_uint] = ACTIONS(3427), [anon_sym_float] = ACTIONS(3427), [anon_sym_range] = ACTIONS(3427), [anon_sym_i8] = ACTIONS(3427), @@ -131858,13 +133179,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1637), 43, + ACTIONS(1637), 44, anon_sym_func, anon_sym_struct, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -131902,7 +133224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [74] = 5, + [75] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3434), 1, @@ -131925,13 +133247,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1637), 43, + ACTIONS(1637), 44, anon_sym_func, anon_sym_struct, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -131969,7 +133292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [146] = 6, + [148] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3437), 1, @@ -131992,13 +133315,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(3333), 43, + ACTIONS(3333), 44, anon_sym_func, anon_sym_struct, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -132036,7 +133360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [219] = 6, + [222] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1641), 1, @@ -132060,13 +133384,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1637), 42, + ACTIONS(1637), 43, anon_sym_func, anon_sym_struct, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -132103,7 +133428,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [292] = 6, + [296] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3443), 1, @@ -132126,13 +133451,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(3313), 43, + ACTIONS(3313), 44, anon_sym_func, anon_sym_struct, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -132170,7 +133496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [365] = 6, + [370] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3449), 1, @@ -132193,13 +133519,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(3323), 43, + ACTIONS(3323), 44, anon_sym_func, anon_sym_struct, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -132237,7 +133564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [438] = 6, + [444] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3455), 1, @@ -132260,13 +133587,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(3352), 43, + ACTIONS(3352), 44, anon_sym_func, anon_sym_struct, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -132304,7 +133632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [511] = 6, + [518] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3461), 1, @@ -132327,13 +133655,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(3372), 43, + ACTIONS(3372), 44, anon_sym_func, anon_sym_struct, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -132371,7 +133700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [584] = 6, + [592] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1641), 1, @@ -132395,13 +133724,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1637), 42, + ACTIONS(1637), 43, anon_sym_func, anon_sym_struct, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -132438,7 +133768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [657] = 6, + [666] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3470), 1, @@ -132461,13 +133791,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(3342), 43, + ACTIONS(3342), 44, anon_sym_func, anon_sym_struct, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -132505,7 +133836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [730] = 3, + [740] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3478), 14, @@ -132523,13 +133854,14 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(3476), 44, + ACTIONS(3476), 45, anon_sym_func, anon_sym_struct, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -132568,7 +133900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [796] = 3, + [807] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3482), 14, @@ -132586,13 +133918,14 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(3480), 44, + ACTIONS(3480), 45, anon_sym_func, anon_sym_struct, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -132631,7 +133964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [862] = 3, + [874] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3486), 14, @@ -132649,13 +133982,14 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(3484), 44, + ACTIONS(3484), 45, anon_sym_func, anon_sym_struct, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -132694,7 +134028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [928] = 3, + [941] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3490), 14, @@ -132712,13 +134046,14 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(3488), 44, + ACTIONS(3488), 45, anon_sym_func, anon_sym_struct, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -132757,7 +134092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [994] = 3, + [1008] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3494), 14, @@ -132775,13 +134110,14 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(3492), 44, + ACTIONS(3492), 45, anon_sym_func, anon_sym_struct, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -132820,7 +134156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [1060] = 3, + [1075] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3498), 14, @@ -132838,13 +134174,14 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(3496), 44, + ACTIONS(3496), 45, anon_sym_func, anon_sym_struct, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -132883,7 +134220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [1126] = 3, + [1142] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3502), 14, @@ -132901,13 +134238,14 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(3500), 44, + ACTIONS(3500), 45, anon_sym_func, anon_sym_struct, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -132946,7 +134284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [1192] = 3, + [1209] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3506), 14, @@ -132964,13 +134302,14 @@ static const uint16_t ts_small_parse_table[] = { sym_multiline_string, sym_character, sym__newline, - ACTIONS(3504), 44, + ACTIONS(3504), 45, anon_sym_func, anon_sym_struct, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -133009,7 +134348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [1258] = 5, + [1276] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3512), 1, @@ -133030,13 +134369,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(3508), 42, + ACTIONS(3508), 43, anon_sym_func, anon_sym_struct, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -133073,7 +134413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [1327] = 6, + [1346] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1641), 1, @@ -133095,13 +134435,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1637), 42, + ACTIONS(1637), 43, anon_sym_func, anon_sym_struct, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -133138,7 +134479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [1398] = 5, + [1418] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3517), 1, @@ -133159,13 +134500,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(3515), 42, + ACTIONS(3515), 43, anon_sym_func, anon_sym_struct, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -133202,7 +134544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [1467] = 6, + [1488] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1641), 1, @@ -133224,13 +134566,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym_multiline_string, sym_character, - ACTIONS(1637), 42, + ACTIONS(1637), 43, anon_sym_func, anon_sym_struct, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -133267,7 +134610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_sink, sym_identifier, sym_integer, - [1538] = 13, + [1560] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -133305,11 +134648,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -133338,7 +134682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [1622] = 15, + [1645] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -133376,11 +134720,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -133409,7 +134754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [1708] = 15, + [1732] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(3532), 1, @@ -133447,11 +134792,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(3552), 32, + ACTIONS(3552), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -133480,7 +134826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [1794] = 15, + [1819] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(23), 1, @@ -133518,11 +134864,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -133551,7 +134898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [1880] = 12, + [1906] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1106), 1, @@ -133585,11 +134932,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -133618,7 +134966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [1959] = 12, + [1986] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1106), 1, @@ -133652,11 +135000,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -133685,7 +135034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [2038] = 12, + [2066] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1106), 1, @@ -133719,11 +135068,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -133752,7 +135102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [2117] = 12, + [2146] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1106), 1, @@ -133786,11 +135136,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -133819,7 +135170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [2196] = 12, + [2226] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1106), 1, @@ -133853,11 +135204,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -133886,7 +135238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [2275] = 12, + [2306] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1106), 1, @@ -133920,11 +135272,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -133953,7 +135306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [2354] = 12, + [2386] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1106), 1, @@ -133987,11 +135340,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -134020,7 +135374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [2433] = 12, + [2466] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1106), 1, @@ -134054,11 +135408,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -134087,7 +135442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [2512] = 13, + [2546] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -134120,11 +135475,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -134153,7 +135509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [2591] = 12, + [2626] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -134184,11 +135540,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -134217,7 +135574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [2667] = 12, + [2703] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -134248,11 +135605,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -134281,7 +135639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [2743] = 12, + [2780] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -134312,11 +135670,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -134345,7 +135704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [2819] = 12, + [2857] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -134376,11 +135735,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -134409,7 +135769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [2895] = 12, + [2934] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -134440,11 +135800,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -134473,7 +135834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [2971] = 12, + [3011] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -134504,11 +135865,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -134537,7 +135899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [3047] = 12, + [3088] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -134568,11 +135930,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -134601,7 +135964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [3123] = 12, + [3165] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -134632,11 +135995,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -134665,7 +136029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [3199] = 12, + [3242] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -134696,11 +136060,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -134729,7 +136094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [3275] = 12, + [3319] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -134760,11 +136125,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -134793,7 +136159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [3351] = 12, + [3396] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -134824,11 +136190,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -134857,7 +136224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [3427] = 12, + [3473] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -134888,11 +136255,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -134921,7 +136289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [3503] = 12, + [3550] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -134952,11 +136320,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -134985,7 +136354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [3579] = 11, + [3627] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(369), 1, @@ -135014,11 +136383,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -135047,7 +136417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [3652] = 11, + [3701] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -135076,11 +136446,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -135109,7 +136480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [3725] = 11, + [3775] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -135138,11 +136509,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -135171,7 +136543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [3798] = 11, + [3849] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -135200,11 +136572,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -135233,7 +136606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [3871] = 11, + [3923] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -135262,11 +136635,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -135295,7 +136669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [3944] = 11, + [3997] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -135324,11 +136698,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -135357,7 +136732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4017] = 11, + [4071] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -135386,11 +136761,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -135419,7 +136795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4090] = 11, + [4145] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -135448,11 +136824,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -135481,7 +136858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4163] = 11, + [4219] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(401), 1, @@ -135510,11 +136887,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -135543,7 +136921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4236] = 11, + [4293] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(241), 1, @@ -135572,11 +136950,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -135605,7 +136984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4309] = 11, + [4367] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -135634,11 +137013,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -135667,7 +137047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4382] = 11, + [4441] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -135696,11 +137076,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -135729,7 +137110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4455] = 11, + [4515] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -135758,11 +137139,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -135791,7 +137173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4528] = 11, + [4589] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -135820,11 +137202,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -135853,7 +137236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4601] = 11, + [4663] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -135882,11 +137265,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -135915,7 +137299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4674] = 11, + [4737] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -135944,11 +137328,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -135977,7 +137362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4747] = 11, + [4811] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -136006,11 +137391,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -136039,7 +137425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4820] = 11, + [4885] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -136068,11 +137454,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -136101,7 +137488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4893] = 11, + [4959] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(313), 1, @@ -136130,11 +137517,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -136163,7 +137551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [4966] = 11, + [5033] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -136192,11 +137580,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -136225,7 +137614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [5039] = 11, + [5107] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -136254,11 +137643,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -136287,7 +137677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [5112] = 11, + [5181] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -136316,11 +137706,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -136349,7 +137740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [5185] = 11, + [5255] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(395), 1, @@ -136378,11 +137769,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -136411,7 +137803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [5258] = 11, + [5329] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(337), 1, @@ -136440,11 +137832,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -136473,7 +137866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [5331] = 11, + [5403] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(251), 1, @@ -136502,73 +137895,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, - anon_sym_void, - anon_sym_anyopaque, - anon_sym_bool, - anon_sym_int, - anon_sym_float, - anon_sym_range, - anon_sym_i8, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_u8, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_c_char, - anon_sym_c_schar, - anon_sym_c_uchar, - anon_sym_c_short, - anon_sym_c_ushort, - anon_sym_c_int, - anon_sym_c_uint, - anon_sym_c_long, - anon_sym_c_ulong, - anon_sym_c_longlong, - anon_sym_c_ulonglong, - anon_sym_c_float, - anon_sym_c_double, - anon_sym_c_longdouble, - [5404] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(383), 1, - anon_sym_mut, - ACTIONS(1940), 1, - sym_identifier, - ACTIONS(3520), 1, - anon_sym_QMARK, - ACTIONS(3522), 1, - anon_sym_LBRACK, - STATE(390), 1, - sym_qualified_identifier, - STATE(416), 1, - sym_type, - ACTIONS(235), 2, - anon_sym_func, - anon_sym_c_func, - ACTIONS(239), 2, - anon_sym_AT, - anon_sym_STAR, - STATE(391), 7, - sym__type_atom, - sym_named_type, - sym_optional_type, - sym_pointer_type, - sym_array_type, - sym_function_type, - sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -136600,17 +137932,17 @@ static const uint16_t ts_small_parse_table[] = { [5477] = 11, ACTIONS(3), 1, sym_comment, + ACTIONS(383), 1, + anon_sym_mut, ACTIONS(1940), 1, sym_identifier, ACTIONS(3520), 1, anon_sym_QMARK, ACTIONS(3522), 1, anon_sym_LBRACK, - ACTIONS(3622), 1, - anon_sym_mut, STATE(390), 1, sym_qualified_identifier, - STATE(446), 1, + STATE(416), 1, sym_type, ACTIONS(235), 2, anon_sym_func, @@ -136626,11 +137958,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -136659,7 +137992,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [5550] = 11, + [5551] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1940), 1, + sym_identifier, + ACTIONS(3520), 1, + anon_sym_QMARK, + ACTIONS(3522), 1, + anon_sym_LBRACK, + ACTIONS(3622), 1, + anon_sym_mut, + STATE(390), 1, + sym_qualified_identifier, + STATE(446), 1, + sym_type, + ACTIONS(235), 2, + anon_sym_func, + anon_sym_c_func, + ACTIONS(239), 2, + anon_sym_AT, + anon_sym_STAR, + STATE(391), 7, + sym__type_atom, + sym_named_type, + sym_optional_type, + sym_pointer_type, + sym_array_type, + sym_function_type, + sym_builtin_type, + ACTIONS(41), 33, + anon_sym_void, + anon_sym_anyopaque, + anon_sym_bool, + anon_sym_int, + anon_sym_uint, + anon_sym_float, + anon_sym_range, + anon_sym_i8, + anon_sym_i16, + anon_sym_i32, + anon_sym_i64, + anon_sym_u8, + anon_sym_u16, + anon_sym_u32, + anon_sym_u64, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_c_char, + anon_sym_c_schar, + anon_sym_c_uchar, + anon_sym_c_short, + anon_sym_c_ushort, + anon_sym_c_int, + anon_sym_c_uint, + anon_sym_c_long, + anon_sym_c_ulong, + anon_sym_c_longlong, + anon_sym_c_ulonglong, + anon_sym_c_float, + anon_sym_c_double, + anon_sym_c_longdouble, + [5625] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(345), 1, @@ -136688,11 +138084,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -136721,7 +138118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [5623] = 11, + [5699] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -136750,11 +138147,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -136783,7 +138181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [5696] = 11, + [5773] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -136812,11 +138210,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -136845,7 +138244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [5769] = 11, + [5847] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -136874,11 +138273,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -136907,7 +138307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [5842] = 11, + [5921] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -136936,11 +138336,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -136969,7 +138370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [5915] = 11, + [5995] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(361), 1, @@ -136998,11 +138399,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -137031,7 +138433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [5988] = 11, + [6069] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -137060,11 +138462,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -137093,7 +138496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [6061] = 10, + [6143] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -137120,11 +138523,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -137153,7 +138557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [6131] = 10, + [6214] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -137180,11 +138584,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -137213,7 +138618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [6201] = 10, + [6285] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -137240,11 +138645,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -137273,7 +138679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [6271] = 10, + [6356] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -137300,11 +138706,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -137333,7 +138740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [6341] = 10, + [6427] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -137360,11 +138767,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -137393,7 +138801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [6411] = 10, + [6498] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -137420,11 +138828,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -137453,7 +138862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [6481] = 10, + [6569] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -137480,11 +138889,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -137513,7 +138923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [6551] = 10, + [6640] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -137540,11 +138950,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -137573,7 +138984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [6621] = 10, + [6711] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -137600,11 +139011,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -137633,7 +139045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [6691] = 10, + [6782] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -137660,11 +139072,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -137693,7 +139106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [6761] = 10, + [6853] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -137720,11 +139133,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -137753,7 +139167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [6831] = 10, + [6924] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -137780,11 +139194,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -137813,7 +139228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [6901] = 10, + [6995] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -137840,11 +139255,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -137873,7 +139289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [6971] = 10, + [7066] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -137900,11 +139316,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -137933,7 +139350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [7041] = 10, + [7137] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -137960,11 +139377,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -137993,7 +139411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [7111] = 10, + [7208] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -138020,11 +139438,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -138053,7 +139472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [7181] = 10, + [7279] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -138080,11 +139499,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -138113,7 +139533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [7251] = 10, + [7350] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -138140,11 +139560,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -138173,7 +139594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [7321] = 10, + [7421] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -138200,11 +139621,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -138233,7 +139655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [7391] = 10, + [7492] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -138260,11 +139682,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -138293,7 +139716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [7461] = 10, + [7563] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -138320,11 +139743,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -138353,7 +139777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [7531] = 10, + [7634] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -138380,11 +139804,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -138413,7 +139838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [7601] = 10, + [7705] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -138440,11 +139865,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -138473,7 +139899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [7671] = 10, + [7776] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -138500,11 +139926,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -138533,7 +139960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [7741] = 10, + [7847] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -138560,11 +139987,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -138593,7 +140021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [7811] = 10, + [7918] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -138620,11 +140048,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -138653,7 +140082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [7881] = 10, + [7989] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -138680,11 +140109,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -138713,7 +140143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [7951] = 10, + [8060] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -138740,11 +140170,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -138773,7 +140204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [8021] = 10, + [8131] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -138800,11 +140231,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -138833,7 +140265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [8091] = 10, + [8202] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -138860,11 +140292,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -138893,7 +140326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [8161] = 10, + [8273] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -138920,11 +140353,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -138953,7 +140387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [8231] = 10, + [8344] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -138980,11 +140414,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -139013,7 +140448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [8301] = 10, + [8415] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -139040,11 +140475,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -139073,7 +140509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [8371] = 10, + [8486] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -139100,11 +140536,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -139133,7 +140570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [8441] = 10, + [8557] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -139160,11 +140597,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -139193,7 +140631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [8511] = 10, + [8628] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -139220,11 +140658,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -139253,7 +140692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [8581] = 10, + [8699] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -139280,11 +140719,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -139313,7 +140753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [8651] = 10, + [8770] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -139340,11 +140780,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -139373,7 +140814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [8721] = 10, + [8841] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -139400,11 +140841,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -139433,7 +140875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [8791] = 9, + [8912] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1940), 1, @@ -139458,11 +140900,12 @@ static const uint16_t ts_small_parse_table[] = { sym_array_type, sym_function_type, sym_builtin_type, - ACTIONS(41), 32, + ACTIONS(41), 33, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -139491,7 +140934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_float, anon_sym_c_double, anon_sym_c_longdouble, - [8858] = 4, + [8980] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3636), 1, @@ -139503,7 +140946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(3634), 36, + ACTIONS(3634), 37, anon_sym_func, anon_sym_c_func, anon_sym_struct, @@ -139511,6 +140954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -139540,7 +140984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [8911] = 3, + [9034] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3642), 7, @@ -139551,7 +140995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(3640), 36, + ACTIONS(3640), 37, anon_sym_func, anon_sym_c_func, anon_sym_struct, @@ -139559,6 +141003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -139588,7 +141033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [8962] = 3, + [9086] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3646), 7, @@ -139599,7 +141044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(3644), 36, + ACTIONS(3644), 37, anon_sym_func, anon_sym_c_func, anon_sym_struct, @@ -139607,6 +141052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -139636,7 +141082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [9013] = 3, + [9138] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3541), 6, @@ -139646,7 +141092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(3648), 36, + ACTIONS(3648), 37, anon_sym_func, anon_sym_c_func, anon_sym_struct, @@ -139654,6 +141100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -139683,7 +141130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [9063] = 7, + [9189] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(1004), 1, @@ -139734,7 +141181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [9121] = 5, + [9247] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3650), 1, @@ -139783,7 +141230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_CARET, sym__newline, - [9175] = 5, + [9301] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3654), 1, @@ -139795,13 +141242,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(3652), 35, + ACTIONS(3652), 36, anon_sym_func, anon_sym_c_func, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -139831,7 +141279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [9228] = 3, + [9355] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3661), 5, @@ -139840,13 +141288,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(3659), 35, + ACTIONS(3659), 36, anon_sym_func, anon_sym_c_func, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -139876,7 +141325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [9276] = 3, + [9404] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3665), 5, @@ -139885,13 +141334,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(3663), 35, + ACTIONS(3663), 36, anon_sym_func, anon_sym_c_func, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -139921,7 +141371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [9324] = 3, + [9453] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3669), 5, @@ -139930,13 +141380,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(3667), 35, + ACTIONS(3667), 36, anon_sym_func, anon_sym_c_func, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -139966,7 +141417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [9372] = 3, + [9502] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3673), 5, @@ -139975,13 +141426,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(3671), 35, + ACTIONS(3671), 36, anon_sym_func, anon_sym_c_func, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -140011,7 +141463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [9420] = 3, + [9551] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3677), 5, @@ -140020,13 +141472,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(3675), 35, + ACTIONS(3675), 36, anon_sym_func, anon_sym_c_func, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -140056,7 +141509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [9468] = 3, + [9600] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3681), 5, @@ -140065,13 +141518,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(3679), 35, + ACTIONS(3679), 36, anon_sym_func, anon_sym_c_func, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -140101,7 +141555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [9516] = 3, + [9649] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3685), 5, @@ -140110,13 +141564,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(3683), 35, + ACTIONS(3683), 36, anon_sym_func, anon_sym_c_func, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -140146,7 +141601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [9564] = 3, + [9698] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3689), 5, @@ -140155,13 +141610,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(3687), 35, + ACTIONS(3687), 36, anon_sym_func, anon_sym_c_func, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -140191,7 +141647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [9612] = 3, + [9747] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3693), 5, @@ -140200,13 +141656,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_LBRACK, sym__newline, - ACTIONS(3691), 35, + ACTIONS(3691), 36, anon_sym_func, anon_sym_c_func, anon_sym_void, anon_sym_anyopaque, anon_sym_bool, anon_sym_int, + anon_sym_uint, anon_sym_float, anon_sym_range, anon_sym_i8, @@ -140236,7 +141693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_c_double, anon_sym_c_longdouble, sym_identifier, - [9660] = 9, + [9796] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -140281,7 +141738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym__newline, - [9714] = 16, + [9850] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -140333,7 +141790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_DOT_DOT, sym_identifier, - [9782] = 13, + [9918] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -140382,7 +141839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_or, sym_identifier, - [9844] = 20, + [9980] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -140438,7 +141895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_else, sym_identifier, - [9920] = 10, + [10056] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -140484,7 +141941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym__newline, - [9976] = 13, + [10112] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -140533,7 +141990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orelse, anon_sym_catch, sym__newline, - [10038] = 12, + [10174] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -140581,7 +142038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_and, sym__newline, - [10098] = 12, + [10234] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -140629,7 +142086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_and, sym__newline, - [10158] = 12, + [10294] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -140677,7 +142134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, sym_identifier, - [10218] = 16, + [10354] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -140729,7 +142186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_DOT_DOT_EQ, sym__newline, - [10286] = 9, + [10422] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -140774,7 +142231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym__newline, - [10340] = 14, + [10476] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -140824,7 +142281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orelse, anon_sym_catch, sym__newline, - [10404] = 12, + [10540] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -140872,7 +142329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, sym_identifier, - [10464] = 10, + [10600] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -140918,7 +142375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym_identifier, - [10520] = 14, + [10656] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -140968,7 +142425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orelse, anon_sym_catch, sym__newline, - [10584] = 9, + [10720] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -141013,7 +142470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PLUS, sym_identifier, - [10638] = 16, + [10774] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -141065,7 +142522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_DOT_DOT, sym_identifier, - [10706] = 10, + [10842] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -141111,7 +142568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym__newline, - [10762] = 16, + [10898] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -141163,7 +142620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_DOT_DOT_EQ, sym__newline, - [10830] = 13, + [10966] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -141212,7 +142669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orelse, anon_sym_catch, sym__newline, - [10892] = 14, + [11028] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -141262,7 +142719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orelse, anon_sym_catch, sym_identifier, - [10956] = 14, + [11092] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -141312,7 +142769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orelse, anon_sym_catch, sym_identifier, - [11020] = 13, + [11156] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -141361,7 +142818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_or, sym_identifier, - [11082] = 10, + [11218] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -141407,7 +142864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym_identifier, - [11138] = 9, + [11274] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -141452,7 +142909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PLUS, sym_identifier, - [11192] = 20, + [11328] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -141507,7 +142964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [11267] = 16, + [11403] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -141557,7 +143014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_DOT_DOT_EQ, sym__newline, - [11333] = 13, + [11469] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -141604,7 +143061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_DOT_DOT_EQ, sym__newline, - [11393] = 14, + [11529] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -141652,7 +143109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_DOT_DOT_EQ, sym__newline, - [11455] = 13, + [11591] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -141699,7 +143156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_DOT_DOT_EQ, sym__newline, - [11515] = 14, + [11651] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -141747,7 +143204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_DOT_DOT_EQ, sym__newline, - [11577] = 10, + [11713] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -141791,7 +143248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym__newline, - [11631] = 12, + [11767] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -141837,7 +143294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, sym_identifier, - [11689] = 9, + [11825] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -141880,7 +143337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PLUS, sym_identifier, - [11741] = 8, + [11877] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1004), 1, @@ -141922,7 +143379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_CARET, sym__newline, - [11791] = 12, + [11927] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -141968,7 +143425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, sym_identifier, - [11849] = 10, + [11985] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -142012,7 +143469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym__newline, - [11903] = 9, + [12039] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -142055,7 +143512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PLUS, sym_identifier, - [11955] = 16, + [12091] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -142105,7 +143562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_DOT_DOT_EQ, sym__newline, - [12021] = 20, + [12157] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -142158,7 +143615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [12094] = 21, + [12230] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -142211,7 +143668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [12168] = 21, + [12304] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -142264,7 +143721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [12242] = 19, + [12378] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -142315,7 +143772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [12312] = 20, + [12448] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -142367,7 +143824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [12384] = 18, + [12520] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -142416,7 +143873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_hide, anon_sym_else, sym_identifier, - [12451] = 23, + [12587] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -142470,7 +143927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [12528] = 19, + [12664] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -142520,7 +143977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - [12597] = 22, + [12733] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -142572,7 +144029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [12671] = 22, + [12807] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -142624,7 +144081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [12745] = 22, + [12881] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -142676,7 +144133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [12819] = 22, + [12955] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -142728,7 +144185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [12893] = 22, + [13029] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -142780,7 +144237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [12967] = 22, + [13103] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -142832,7 +144289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [13041] = 22, + [13177] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -142884,7 +144341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [13115] = 22, + [13251] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -142936,7 +144393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [13189] = 22, + [13325] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -142988,7 +144445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [13263] = 22, + [13399] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -143040,7 +144497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [13337] = 22, + [13473] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -143092,7 +144549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [13411] = 22, + [13547] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -143144,7 +144601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [13485] = 22, + [13621] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -143196,7 +144653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [13559] = 22, + [13695] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -143248,7 +144705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [13633] = 21, + [13769] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -143298,7 +144755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [13704] = 21, + [13840] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -143348,7 +144805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [13775] = 5, + [13911] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3917), 2, @@ -143382,7 +144839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_CARET, - [13814] = 19, + [13950] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -143430,7 +144887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [13881] = 21, + [14017] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -143480,7 +144937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [13952] = 5, + [14088] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3931), 2, @@ -143514,7 +144971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_CARET, - [13991] = 9, + [14127] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1004), 1, @@ -143552,7 +145009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_CARET, - [14038] = 5, + [14174] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3940), 2, @@ -143586,7 +145043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_CARET, - [14077] = 21, + [14213] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -143636,7 +145093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [14148] = 5, + [14284] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3946), 2, @@ -143670,7 +145127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_CARET, - [14187] = 19, + [14323] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -143718,7 +145175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [14254] = 21, + [14390] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -143768,7 +145225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [14325] = 21, + [14461] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -143818,7 +145275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [14396] = 13, + [14532] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -143859,7 +145316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orelse, anon_sym_catch, sym__newline, - [14450] = 16, + [14586] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -143903,7 +145360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_DOT_DOT_EQ, sym__newline, - [14510] = 14, + [14646] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -143945,7 +145402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orelse, anon_sym_catch, sym__newline, - [14566] = 13, + [14702] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -143986,7 +145443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orelse, anon_sym_catch, sym__newline, - [14620] = 12, + [14756] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -144026,7 +145483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_and, sym__newline, - [14672] = 10, + [14808] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -144064,7 +145521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym__newline, - [14720] = 20, + [14856] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -144112,7 +145569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [14788] = 9, + [14924] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -144149,7 +145606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, sym__newline, - [14834] = 16, + [14970] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -144193,7 +145650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_DOT_DOT_EQ, sym__newline, - [14894] = 14, + [15030] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -144235,7 +145692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orelse, anon_sym_catch, sym__newline, - [14950] = 12, + [15086] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -144275,7 +145732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_and, sym__newline, - [15002] = 10, + [15138] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -144313,7 +145770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym__newline, - [15050] = 20, + [15186] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -144361,7 +145818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [15118] = 7, + [15254] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(3968), 1, @@ -144396,7 +145853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_CARET, - [15160] = 17, + [15296] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -144441,7 +145898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACK, sym__newline, - [15222] = 7, + [15358] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(3979), 1, @@ -144476,7 +145933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_CARET, - [15264] = 7, + [15400] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(3988), 1, @@ -144511,7 +145968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_CARET, - [15306] = 17, + [15442] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -144556,7 +146013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_COLON, sym__newline, - [15368] = 20, + [15504] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -144604,7 +146061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [15436] = 17, + [15572] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -144649,7 +146106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_COLON, sym__newline, - [15498] = 8, + [15634] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1004), 1, @@ -144685,7 +146142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_CARET, sym__newline, - [15542] = 20, + [15678] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -144733,7 +146190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [15610] = 18, + [15746] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -144779,7 +146236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [15674] = 20, + [15810] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -144827,7 +146284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [15742] = 7, + [15878] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(4011), 1, @@ -144862,7 +146319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_SLASH, anon_sym_CARET, - [15784] = 17, + [15920] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -144907,7 +146364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACK, sym__newline, - [15846] = 20, + [15982] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -144955,7 +146412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [15914] = 17, + [16050] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -145000,7 +146457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACK, sym__newline, - [15976] = 9, + [16112] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -145037,7 +146494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, sym__newline, - [16022] = 17, + [16158] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -145082,7 +146539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_COLON, sym__newline, - [16084] = 19, + [16220] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -145128,7 +146585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [16149] = 19, + [16285] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -145174,7 +146631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [16214] = 17, + [16350] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -145218,7 +146675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [16275] = 19, + [16411] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -145264,7 +146721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [16340] = 19, + [16476] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -145310,7 +146767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [16405] = 19, + [16541] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -145356,7 +146813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [16470] = 19, + [16606] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -145402,7 +146859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [16535] = 17, + [16671] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -145446,7 +146903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [16596] = 17, + [16732] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -145490,7 +146947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [16657] = 19, + [16793] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -145536,7 +146993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [16722] = 17, + [16858] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -145580,7 +147037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [16783] = 19, + [16919] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -145626,7 +147083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [16848] = 19, + [16984] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -145672,7 +147129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [16913] = 17, + [17049] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -145716,7 +147173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [16974] = 17, + [17110] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -145760,7 +147217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [17035] = 19, + [17171] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -145806,7 +147263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [17100] = 19, + [17236] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -145852,7 +147309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [17165] = 19, + [17301] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -145898,7 +147355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [17230] = 17, + [17366] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -145942,7 +147399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [17291] = 19, + [17427] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -145988,7 +147445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [17356] = 17, + [17492] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -146032,7 +147489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [17417] = 9, + [17553] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -146067,7 +147524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, sym__newline, - [17461] = 10, + [17597] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -146103,7 +147560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym__newline, - [17507] = 16, + [17643] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -146145,7 +147602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [17565] = 14, + [17701] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -146185,7 +147642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orelse, anon_sym_catch, sym__newline, - [17619] = 13, + [17755] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -146224,7 +147681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orelse, anon_sym_catch, sym__newline, - [17671] = 12, + [17807] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -146262,7 +147719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_and, sym__newline, - [17721] = 10, + [17857] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -146298,7 +147755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym__newline, - [17767] = 9, + [17903] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -146333,7 +147790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_PLUS, sym__newline, - [17811] = 16, + [17947] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -146375,7 +147832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [17869] = 14, + [18005] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -146415,7 +147872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orelse, anon_sym_catch, sym__newline, - [17923] = 13, + [18059] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -146454,7 +147911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orelse, anon_sym_catch, sym__newline, - [17975] = 12, + [18111] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -146492,7 +147949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_and, sym__newline, - [18025] = 17, + [18161] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -146534,7 +147991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [18084] = 17, + [18220] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -146576,7 +148033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [18143] = 17, + [18279] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -146618,7 +148075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [18202] = 17, + [18338] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -146660,7 +148117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [18261] = 17, + [18397] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -146702,7 +148159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [18320] = 8, + [18456] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(4110), 1, @@ -146727,7 +148184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_global_constant_declaration, sym_global_variable_declaration, aux_sym_source_file_repeat1, - [18353] = 8, + [18489] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(7), 1, @@ -146752,7 +148209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_global_constant_declaration, sym_global_variable_declaration, aux_sym_source_file_repeat1, - [18386] = 9, + [18522] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -146776,7 +148233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [18419] = 9, + [18555] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -146800,7 +148257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [18452] = 9, + [18588] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -146824,7 +148281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [18485] = 9, + [18621] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -146848,7 +148305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [18518] = 8, + [18654] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -146870,7 +148327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [18548] = 8, + [18684] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -146892,7 +148349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [18578] = 8, + [18714] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -146914,7 +148371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [18608] = 8, + [18744] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -146936,7 +148393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [18638] = 6, + [18774] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3374), 1, @@ -146952,7 +148409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [18660] = 8, + [18796] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -146970,7 +148427,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4201), 2, sym_sink, sym_identifier, - [18686] = 8, + [18822] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(4203), 1, @@ -146988,7 +148445,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4201), 2, sym_sink, sym_identifier, - [18712] = 8, + [18848] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -147006,7 +148463,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4201), 2, sym_sink, sym_identifier, - [18738] = 8, + [18874] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(4207), 1, @@ -147024,7 +148481,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4201), 2, sym_sink, sym_identifier, - [18764] = 8, + [18900] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(4207), 1, @@ -147042,7 +148499,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4201), 2, sym_sink, sym_identifier, - [18790] = 6, + [18926] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3325), 1, @@ -147058,7 +148515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [18812] = 6, + [18948] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3354), 1, @@ -147074,7 +148531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [18834] = 8, + [18970] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -147092,7 +148549,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4201), 2, sym_sink, sym_identifier, - [18860] = 6, + [18996] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3354), 1, @@ -147108,7 +148565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [18882] = 6, + [19018] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3315), 1, @@ -147124,7 +148581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [18904] = 8, + [19040] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -147142,7 +148599,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4201), 2, sym_sink, sym_identifier, - [18930] = 6, + [19066] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3315), 1, @@ -147158,7 +148615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [18952] = 8, + [19088] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(4207), 1, @@ -147176,7 +148633,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4201), 2, sym_sink, sym_identifier, - [18978] = 8, + [19114] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -147194,7 +148651,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4201), 2, sym_sink, sym_identifier, - [19004] = 8, + [19140] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(4207), 1, @@ -147212,7 +148669,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4201), 2, sym_sink, sym_identifier, - [19030] = 8, + [19166] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(4203), 1, @@ -147230,7 +148687,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4201), 2, sym_sink, sym_identifier, - [19056] = 8, + [19192] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -147248,7 +148705,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4201), 2, sym_sink, sym_identifier, - [19082] = 8, + [19218] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(4207), 1, @@ -147266,7 +148723,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4201), 2, sym_sink, sym_identifier, - [19108] = 6, + [19244] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3325), 1, @@ -147282,7 +148739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19130] = 6, + [19266] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3374), 1, @@ -147298,7 +148755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19152] = 6, + [19288] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3335), 1, @@ -147314,7 +148771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19174] = 6, + [19310] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3335), 1, @@ -147330,7 +148787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19196] = 6, + [19332] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3344), 1, @@ -147346,7 +148803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19218] = 8, + [19354] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -147364,7 +148821,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4201), 2, sym_sink, sym_identifier, - [19244] = 6, + [19380] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3344), 1, @@ -147380,7 +148837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19266] = 7, + [19402] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(4207), 1, @@ -147396,7 +148853,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4201), 2, sym_sink, sym_identifier, - [19289] = 7, + [19425] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(4207), 1, @@ -147412,7 +148869,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4201), 2, sym_sink, sym_identifier, - [19312] = 8, + [19448] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(3795), 1, @@ -147429,7 +148886,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(2268), 1, sym_match_capture, - [19337] = 7, + [19473] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -147445,7 +148902,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4201), 2, sym_sink, sym_identifier, - [19360] = 7, + [19496] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -147461,7 +148918,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4201), 2, sym_sink, sym_identifier, - [19383] = 3, + [19519] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4309), 2, @@ -147472,7 +148929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19397] = 3, + [19533] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4313), 2, @@ -147483,7 +148940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19411] = 3, + [19547] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4317), 2, @@ -147494,7 +148951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19425] = 3, + [19561] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4321), 2, @@ -147505,7 +148962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19439] = 3, + [19575] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4325), 2, @@ -147516,7 +148973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19453] = 3, + [19589] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4329), 2, @@ -147527,7 +148984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19467] = 6, + [19603] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(4333), 1, @@ -147541,7 +148998,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3977), 2, anon_sym_RPAREN, anon_sym_RBRACK, - [19487] = 3, + [19623] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4339), 2, @@ -147552,7 +149009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19501] = 3, + [19637] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4343), 2, @@ -147563,7 +149020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19515] = 3, + [19651] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4347), 2, @@ -147574,7 +149031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19529] = 3, + [19665] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4351), 2, @@ -147585,7 +149042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19543] = 3, + [19679] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4355), 2, @@ -147596,7 +149053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19557] = 3, + [19693] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4359), 2, @@ -147607,7 +149064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19571] = 3, + [19707] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4363), 2, @@ -147618,7 +149075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19585] = 3, + [19721] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3946), 2, @@ -147629,7 +149086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19599] = 3, + [19735] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4367), 2, @@ -147640,7 +149097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19613] = 3, + [19749] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4371), 2, @@ -147651,7 +149108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19627] = 3, + [19763] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3917), 2, @@ -147662,7 +149119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19641] = 3, + [19777] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4375), 2, @@ -147673,7 +149130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19655] = 3, + [19791] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4379), 2, @@ -147684,7 +149141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19669] = 3, + [19805] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4383), 2, @@ -147695,7 +149152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19683] = 7, + [19819] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(4387), 1, @@ -147710,7 +149167,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_capture_list_repeat1, STATE(2174), 1, aux_sym_import_declaration_repeat1, - [19705] = 3, + [19841] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4395), 2, @@ -147721,7 +149178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19719] = 3, + [19855] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4399), 2, @@ -147732,7 +149189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19733] = 3, + [19869] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4403), 2, @@ -147743,7 +149200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19747] = 3, + [19883] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4407), 2, @@ -147754,7 +149211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19761] = 6, + [19897] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(4411), 1, @@ -147768,7 +149225,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4414), 2, anon_sym_PIPE, anon_sym_COLON, - [19781] = 3, + [19917] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4419), 2, @@ -147779,7 +149236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19795] = 3, + [19931] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4423), 2, @@ -147790,7 +149247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19809] = 3, + [19945] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4427), 2, @@ -147801,7 +149258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19823] = 3, + [19959] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4431), 2, @@ -147812,7 +149269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19837] = 3, + [19973] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4435), 2, @@ -147823,7 +149280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19851] = 3, + [19987] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4439), 2, @@ -147834,7 +149291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19865] = 3, + [20001] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4443), 2, @@ -147845,7 +149302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19879] = 3, + [20015] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4447), 2, @@ -147856,7 +149313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19893] = 3, + [20029] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4451), 2, @@ -147867,7 +149324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19907] = 3, + [20043] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4455), 2, @@ -147878,7 +149335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19921] = 3, + [20057] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4459), 2, @@ -147889,7 +149346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19935] = 3, + [20071] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4463), 2, @@ -147900,7 +149357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19949] = 3, + [20085] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4467), 2, @@ -147911,7 +149368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19963] = 3, + [20099] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4471), 2, @@ -147922,7 +149379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [19977] = 6, + [20113] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(4475), 1, @@ -147936,7 +149393,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3977), 2, anon_sym_PIPE, anon_sym_COLON, - [19997] = 3, + [20133] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3931), 2, @@ -147947,7 +149404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [20011] = 3, + [20147] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4481), 2, @@ -147958,7 +149415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [20025] = 7, + [20161] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(4387), 1, @@ -147973,7 +149430,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_capture_list_repeat1, STATE(2174), 1, aux_sym_import_declaration_repeat1, - [20047] = 3, + [20183] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4489), 2, @@ -147984,7 +149441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [20061] = 3, + [20197] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4493), 2, @@ -147995,7 +149452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [20075] = 3, + [20211] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4497), 2, @@ -148006,7 +149463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [20089] = 3, + [20225] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3940), 2, @@ -148017,7 +149474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [20103] = 3, + [20239] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4501), 2, @@ -148028,7 +149485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [20117] = 3, + [20253] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4505), 2, @@ -148039,7 +149496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [20131] = 3, + [20267] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4509), 2, @@ -148050,7 +149507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [20145] = 3, + [20281] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4513), 2, @@ -148061,7 +149518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [20159] = 3, + [20295] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4517), 2, @@ -148072,7 +149529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_test, anon_sym_hide, sym_identifier, - [20173] = 6, + [20309] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -148085,7 +149542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1691), 1, aux_sym_import_declaration_repeat1, - [20192] = 6, + [20328] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -148098,7 +149555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1791), 1, aux_sym_import_declaration_repeat1, - [20211] = 6, + [20347] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -148111,7 +149568,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(2107), 1, sym_keyed_field_initializer, - [20230] = 6, + [20366] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -148124,7 +149581,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(2189), 1, sym_keyed_field_initializer, - [20249] = 6, + [20385] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(4529), 1, @@ -148137,7 +149594,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(2189), 1, sym_keyed_field_initializer, - [20268] = 6, + [20404] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -148150,7 +149607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1794), 1, aux_sym_import_declaration_repeat1, - [20287] = 6, + [20423] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(4539), 1, @@ -148163,7 +149620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_record_body, STATE(1950), 1, aux_sym_import_declaration_repeat1, - [20306] = 6, + [20442] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -148176,7 +149633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1690), 1, aux_sym_import_declaration_repeat1, - [20325] = 6, + [20461] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -148189,7 +149646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1796), 1, aux_sym_import_declaration_repeat1, - [20344] = 6, + [20480] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -148202,7 +149659,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1221), 1, sym_block, - [20363] = 6, + [20499] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -148215,7 +149672,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1101), 1, sym_block, - [20382] = 6, + [20518] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -148228,7 +149685,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1227), 1, sym_block, - [20401] = 6, + [20537] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -148241,7 +149698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1718), 1, aux_sym_import_declaration_repeat1, - [20420] = 6, + [20556] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -148254,7 +149711,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1244), 1, sym_block, - [20439] = 6, + [20575] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -148267,7 +149724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1719), 1, aux_sym_import_declaration_repeat1, - [20458] = 6, + [20594] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -148280,7 +149737,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1251), 1, sym_block, - [20477] = 6, + [20613] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -148293,7 +149750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1722), 1, aux_sym_import_declaration_repeat1, - [20496] = 6, + [20632] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -148306,7 +149763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1724), 1, aux_sym_import_declaration_repeat1, - [20515] = 6, + [20651] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -148319,7 +149776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1775), 1, aux_sym_import_declaration_repeat1, - [20534] = 6, + [20670] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -148332,7 +149789,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1260), 1, sym_block, - [20553] = 6, + [20689] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -148345,7 +149802,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1263), 1, sym_block, - [20572] = 6, + [20708] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -148358,7 +149815,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(2189), 1, sym_keyed_field_initializer, - [20591] = 6, + [20727] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -148371,7 +149828,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1267), 1, sym_block, - [20610] = 6, + [20746] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -148384,7 +149841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1730), 1, aux_sym_import_declaration_repeat1, - [20629] = 6, + [20765] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(4529), 1, @@ -148397,7 +149854,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(2189), 1, sym_keyed_field_initializer, - [20648] = 3, + [20784] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4599), 1, @@ -148407,7 +149864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, sym_identifier, sym__newline, - [20661] = 6, + [20797] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -148420,7 +149877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1741), 1, aux_sym_import_declaration_repeat1, - [20680] = 6, + [20816] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1984), 1, @@ -148433,7 +149890,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_match_arm_repeat1, STATE(1962), 1, aux_sym_import_declaration_repeat1, - [20699] = 6, + [20835] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -148446,7 +149903,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1271), 1, sym_block, - [20718] = 6, + [20854] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(4607), 1, @@ -148459,7 +149916,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_enum_body_repeat1, STATE(1817), 1, sym_enum_member, - [20737] = 6, + [20873] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -148472,7 +149929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1993), 1, aux_sym_import_declaration_repeat1, - [20756] = 6, + [20892] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -148485,7 +149942,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(2189), 1, sym_keyed_field_initializer, - [20775] = 6, + [20911] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -148498,7 +149955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1800), 1, aux_sym_import_declaration_repeat1, - [20794] = 6, + [20930] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(4529), 1, @@ -148511,7 +149968,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(2189), 1, sym_keyed_field_initializer, - [20813] = 6, + [20949] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(4529), 1, @@ -148524,7 +149981,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(2067), 1, sym_keyed_field_initializer, - [20832] = 6, + [20968] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -148537,7 +149994,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(2107), 1, sym_keyed_field_initializer, - [20851] = 6, + [20987] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(4629), 1, @@ -148550,7 +150007,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variant_payload_repeat1, STATE(2073), 1, aux_sym_import_declaration_repeat1, - [20870] = 6, + [21006] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(4617), 1, @@ -148563,7 +150020,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variant_payload_repeat1, STATE(1838), 1, aux_sym_import_declaration_repeat1, - [20889] = 6, + [21025] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -148576,7 +150033,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1163), 1, sym_block, - [20908] = 6, + [21044] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -148589,7 +150046,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1176), 1, sym_block, - [20927] = 6, + [21063] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(4645), 1, @@ -148602,7 +150059,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_enum_body_repeat1, STATE(1817), 1, sym_enum_member, - [20946] = 6, + [21082] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -148615,7 +150072,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1188), 1, sym_block, - [20965] = 6, + [21101] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -148628,7 +150085,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1191), 1, sym_block, - [20984] = 6, + [21120] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -148641,7 +150098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1755), 1, aux_sym_import_declaration_repeat1, - [21003] = 6, + [21139] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -148654,7 +150111,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1212), 1, sym_block, - [21022] = 6, + [21158] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -148667,7 +150124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1689), 1, aux_sym_import_declaration_repeat1, - [21041] = 6, + [21177] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -148680,7 +150137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1757), 1, aux_sym_import_declaration_repeat1, - [21060] = 6, + [21196] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(4607), 1, @@ -148693,7 +150150,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_enum_body_repeat1, STATE(1817), 1, sym_enum_member, - [21079] = 6, + [21215] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -148706,7 +150163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1759), 1, aux_sym_import_declaration_repeat1, - [21098] = 6, + [21234] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3313), 1, @@ -148719,7 +150176,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2071), 1, aux_sym_import_declaration_repeat1, - [21117] = 6, + [21253] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -148732,7 +150189,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1256), 1, sym_block, - [21136] = 6, + [21272] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(4686), 1, @@ -148745,7 +150202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_body, STATE(1946), 1, aux_sym_import_declaration_repeat1, - [21155] = 6, + [21291] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3323), 1, @@ -148758,7 +150215,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2076), 1, aux_sym_import_declaration_repeat1, - [21174] = 6, + [21310] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3352), 1, @@ -148771,7 +150228,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2080), 1, aux_sym_import_declaration_repeat1, - [21193] = 6, + [21329] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -148784,7 +150241,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(2107), 1, sym_keyed_field_initializer, - [21212] = 6, + [21348] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(4028), 1, @@ -148797,7 +150254,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_initializer_list_repeat1, STATE(2066), 1, aux_sym_import_declaration_repeat1, - [21231] = 6, + [21367] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -148810,7 +150267,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1192), 1, sym_block, - [21250] = 6, + [21386] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3372), 1, @@ -148823,7 +150280,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2081), 1, aux_sym_import_declaration_repeat1, - [21269] = 6, + [21405] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3333), 1, @@ -148836,7 +150293,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2082), 1, aux_sym_import_declaration_repeat1, - [21288] = 6, + [21424] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -148849,7 +150306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1744), 1, aux_sym_import_declaration_repeat1, - [21307] = 6, + [21443] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3342), 1, @@ -148862,7 +150319,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2084), 1, aux_sym_import_declaration_repeat1, - [21326] = 6, + [21462] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -148875,7 +150332,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1265), 1, sym_block, - [21345] = 6, + [21481] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(2004), 1, @@ -148888,7 +150345,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_match_arm_repeat1, STATE(1836), 1, aux_sym_import_declaration_repeat1, - [21364] = 6, + [21500] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(4529), 1, @@ -148901,7 +150358,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(2067), 1, sym_keyed_field_initializer, - [21383] = 6, + [21519] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -148914,7 +150371,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1088), 1, sym_block, - [21402] = 6, + [21538] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1870), 1, @@ -148927,7 +150384,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_initializer_list_repeat1, STATE(1826), 1, aux_sym_import_declaration_repeat1, - [21421] = 6, + [21557] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -148940,7 +150397,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1197), 1, sym_block, - [21440] = 6, + [21576] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -148953,7 +150410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1693), 1, aux_sym_import_declaration_repeat1, - [21459] = 6, + [21595] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -148966,7 +150423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1758), 1, aux_sym_import_declaration_repeat1, - [21478] = 6, + [21614] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -148979,7 +150436,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1169), 1, sym_block, - [21497] = 6, + [21633] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1922), 1, @@ -148992,7 +150449,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_match_arm_repeat1, STATE(2035), 1, aux_sym_import_declaration_repeat1, - [21516] = 6, + [21652] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149005,7 +150462,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1148), 1, sym_block, - [21535] = 6, + [21671] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(4048), 1, @@ -149018,7 +150475,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(2067), 1, sym_keyed_field_initializer, - [21554] = 6, + [21690] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -149031,7 +150488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1695), 1, aux_sym_import_declaration_repeat1, - [21573] = 6, + [21709] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -149044,7 +150501,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1751), 1, aux_sym_import_declaration_repeat1, - [21592] = 6, + [21728] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149057,7 +150514,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1044), 1, sym_block, - [21611] = 6, + [21747] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149070,7 +150527,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1025), 1, sym_block, - [21630] = 6, + [21766] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149083,7 +150540,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1049), 1, sym_block, - [21649] = 6, + [21785] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149096,7 +150553,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1083), 1, sym_block, - [21668] = 6, + [21804] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149109,7 +150566,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1053), 1, sym_block, - [21687] = 6, + [21823] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1860), 1, @@ -149122,7 +150579,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variant_payload_repeat1, STATE(1877), 1, aux_sym_import_declaration_repeat1, - [21706] = 6, + [21842] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -149135,7 +150592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1780), 1, aux_sym_import_declaration_repeat1, - [21725] = 6, + [21861] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149148,7 +150605,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1203), 1, sym_block, - [21744] = 6, + [21880] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(4048), 1, @@ -149161,7 +150618,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variant_payload_repeat1, STATE(1885), 1, aux_sym_import_declaration_repeat1, - [21763] = 6, + [21899] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -149174,7 +150631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1699), 1, aux_sym_import_declaration_repeat1, - [21782] = 6, + [21918] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1864), 1, @@ -149187,7 +150644,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_initializer_list_repeat1, STATE(1856), 1, aux_sym_import_declaration_repeat1, - [21801] = 6, + [21937] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1864), 1, @@ -149200,7 +150657,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_initializer_list_repeat1, STATE(1856), 1, aux_sym_import_declaration_repeat1, - [21820] = 6, + [21956] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -149213,7 +150670,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1700), 1, aux_sym_import_declaration_repeat1, - [21839] = 6, + [21975] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -149226,7 +150683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1702), 1, aux_sym_import_declaration_repeat1, - [21858] = 6, + [21994] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(4805), 1, @@ -149239,7 +150696,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_parameter_list_repeat1, STATE(2123), 1, aux_sym_import_declaration_repeat1, - [21877] = 6, + [22013] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(4213), 1, @@ -149252,7 +150709,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_parameter_list_repeat1, STATE(1821), 1, aux_sym_import_declaration_repeat1, - [21896] = 6, + [22032] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(4048), 1, @@ -149265,7 +150722,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variant_payload_repeat1, STATE(1885), 1, aux_sym_import_declaration_repeat1, - [21915] = 6, + [22051] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149278,7 +150735,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1208), 1, sym_block, - [21934] = 6, + [22070] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -149291,7 +150748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1708), 1, aux_sym_import_declaration_repeat1, - [21953] = 6, + [22089] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(4294), 1, @@ -149304,7 +150761,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_parameter_list_repeat1, STATE(1991), 1, aux_sym_import_declaration_repeat1, - [21972] = 6, + [22108] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149317,7 +150774,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1150), 1, sym_block, - [21991] = 6, + [22127] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1974), 1, @@ -149330,7 +150787,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_match_arm_repeat1, STATE(1878), 1, aux_sym_import_declaration_repeat1, - [22010] = 6, + [22146] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -149343,7 +150800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1721), 1, aux_sym_import_declaration_repeat1, - [22029] = 6, + [22165] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1862), 1, @@ -149356,7 +150813,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_initializer_list_repeat1, STATE(1927), 1, aux_sym_import_declaration_repeat1, - [22048] = 6, + [22184] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -149369,7 +150826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1736), 1, aux_sym_import_declaration_repeat1, - [22067] = 6, + [22203] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149382,7 +150839,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1110), 1, sym_block, - [22086] = 6, + [22222] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -149395,7 +150852,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1829), 1, aux_sym_import_declaration_repeat1, - [22105] = 6, + [22241] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -149408,7 +150865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1746), 1, aux_sym_import_declaration_repeat1, - [22124] = 6, + [22260] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3313), 1, @@ -149421,7 +150878,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2108), 1, aux_sym_import_declaration_repeat1, - [22143] = 6, + [22279] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(4258), 1, @@ -149434,7 +150891,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_parameter_list_repeat1, STATE(1933), 1, aux_sym_import_declaration_repeat1, - [22162] = 6, + [22298] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149447,7 +150904,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1213), 1, sym_block, - [22181] = 6, + [22317] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3323), 1, @@ -149460,7 +150917,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2109), 1, aux_sym_import_declaration_repeat1, - [22200] = 6, + [22336] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3352), 1, @@ -149473,7 +150930,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2110), 1, aux_sym_import_declaration_repeat1, - [22219] = 6, + [22355] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3372), 1, @@ -149486,7 +150943,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2111), 1, aux_sym_import_declaration_repeat1, - [22238] = 6, + [22374] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3333), 1, @@ -149499,7 +150956,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2112), 1, aux_sym_import_declaration_repeat1, - [22257] = 6, + [22393] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3342), 1, @@ -149512,7 +150969,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2113), 1, aux_sym_import_declaration_repeat1, - [22276] = 6, + [22412] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149525,7 +150982,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1159), 1, sym_block, - [22295] = 6, + [22431] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(4258), 1, @@ -149538,7 +150995,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_parameter_list_repeat1, STATE(1933), 1, aux_sym_import_declaration_repeat1, - [22314] = 6, + [22450] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -149551,7 +151008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1762), 1, aux_sym_import_declaration_repeat1, - [22333] = 6, + [22469] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149564,7 +151021,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1165), 1, sym_block, - [22352] = 6, + [22488] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -149577,7 +151034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1772), 1, aux_sym_import_declaration_repeat1, - [22371] = 6, + [22507] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149590,7 +151047,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1167), 1, sym_block, - [22390] = 6, + [22526] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -149603,7 +151060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1785), 1, aux_sym_import_declaration_repeat1, - [22409] = 6, + [22545] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -149616,7 +151073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1799), 1, aux_sym_import_declaration_repeat1, - [22428] = 6, + [22564] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149629,7 +151086,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1216), 1, sym_block, - [22447] = 6, + [22583] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149642,7 +151099,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1023), 1, sym_block, - [22466] = 5, + [22602] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -149653,7 +151110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(2031), 1, aux_sym_import_declaration_repeat1, - [22482] = 5, + [22618] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(4529), 1, @@ -149664,7 +151121,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(2189), 1, sym_keyed_field_initializer, - [22498] = 5, + [22634] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -149675,7 +151132,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1939), 1, aux_sym_import_declaration_repeat1, - [22514] = 2, + [22650] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4925), 4, @@ -149683,7 +151140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_COLON, sym__newline, - [22524] = 5, + [22660] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -149694,7 +151151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1810), 1, aux_sym_import_declaration_repeat1, - [22540] = 5, + [22676] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -149705,7 +151162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1902), 1, aux_sym_import_declaration_repeat1, - [22556] = 5, + [22692] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149716,7 +151173,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1190), 1, sym_block, - [22572] = 5, + [22708] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149727,7 +151184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [22588] = 5, + [22724] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149738,7 +151195,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1237), 1, sym_block, - [22604] = 5, + [22740] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149749,7 +151206,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1257), 1, sym_block, - [22620] = 5, + [22756] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149760,7 +151217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [22636] = 5, + [22772] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -149771,7 +151228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1910), 1, aux_sym_import_declaration_repeat1, - [22652] = 5, + [22788] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -149782,7 +151239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(2052), 1, aux_sym_import_declaration_repeat1, - [22668] = 5, + [22804] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149793,7 +151250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(701), 1, aux_sym_import_declaration_repeat1, - [22684] = 5, + [22820] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, @@ -149804,7 +151261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, STATE(1818), 1, aux_sym_import_declaration_repeat1, - [22700] = 4, + [22836] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4945), 1, @@ -149814,7 +151271,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4947), 2, sym_integer, sym_character, - [22714] = 3, + [22850] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4951), 1, @@ -149823,7 +151280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, sym_identifier, sym__newline, - [22726] = 5, + [22862] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, @@ -149834,7 +151291,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1638), 1, sym_string, - [22742] = 5, + [22878] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149845,7 +151302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [22758] = 5, + [22894] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149856,7 +151313,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(2189), 1, sym_keyed_field_initializer, - [22774] = 5, + [22910] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149867,7 +151324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(701), 1, aux_sym_import_declaration_repeat1, - [22790] = 5, + [22926] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149878,7 +151335,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1646), 1, sym_block, - [22806] = 5, + [22942] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -149889,7 +151346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1851), 1, aux_sym_import_declaration_repeat1, - [22822] = 5, + [22958] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149900,7 +151357,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1272), 1, sym_block, - [22838] = 5, + [22974] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -149911,7 +151368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1914), 1, aux_sym_import_declaration_repeat1, - [22854] = 5, + [22990] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149922,7 +151379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(701), 1, aux_sym_import_declaration_repeat1, - [22870] = 5, + [23006] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -149933,7 +151390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1830), 1, aux_sym_import_declaration_repeat1, - [22886] = 5, + [23022] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149944,7 +151401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [22902] = 5, + [23038] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149955,7 +151412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(701), 1, aux_sym_import_declaration_repeat1, - [22918] = 5, + [23054] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149966,7 +151423,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1020), 1, sym_block, - [22934] = 5, + [23070] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149977,7 +151434,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1195), 1, sym_block, - [22950] = 5, + [23086] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -149988,7 +151445,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1809), 1, aux_sym_import_declaration_repeat1, - [22966] = 5, + [23102] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -149999,7 +151456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [22982] = 5, + [23118] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150010,7 +151467,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1021), 1, sym_block, - [22998] = 5, + [23134] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150021,7 +151478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1919), 1, aux_sym_import_declaration_repeat1, - [23014] = 5, + [23150] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150032,7 +151489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(701), 1, aux_sym_import_declaration_repeat1, - [23030] = 5, + [23166] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150043,7 +151500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1834), 1, aux_sym_import_declaration_repeat1, - [23046] = 5, + [23182] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150054,7 +151511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(701), 1, aux_sym_import_declaration_repeat1, - [23062] = 5, + [23198] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150065,7 +151522,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1024), 1, sym_block, - [23078] = 5, + [23214] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150076,7 +151533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [23094] = 5, + [23230] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150087,7 +151544,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1249), 1, sym_block, - [23110] = 5, + [23246] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150098,7 +151555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1925), 1, aux_sym_import_declaration_repeat1, - [23126] = 5, + [23262] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150109,7 +151566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [23142] = 5, + [23278] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150120,7 +151577,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1097), 1, sym_block, - [23158] = 5, + [23294] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(4541), 1, @@ -150131,7 +151588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_record_body, STATE(2045), 1, aux_sym_import_declaration_repeat1, - [23174] = 5, + [23310] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150142,7 +151599,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1027), 1, sym_block, - [23190] = 5, + [23326] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150153,7 +151610,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1660), 1, sym_block, - [23206] = 5, + [23342] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150164,7 +151621,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1028), 1, sym_block, - [23222] = 5, + [23358] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150175,7 +151632,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1275), 1, sym_block, - [23238] = 5, + [23374] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150186,7 +151643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1930), 1, aux_sym_import_declaration_repeat1, - [23254] = 5, + [23390] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150197,7 +151654,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1218), 1, sym_block, - [23270] = 5, + [23406] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150208,7 +151665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [23286] = 5, + [23422] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150219,7 +151676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1844), 1, aux_sym_import_declaration_repeat1, - [23302] = 5, + [23438] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150230,7 +151687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1839), 1, aux_sym_import_declaration_repeat1, - [23318] = 5, + [23454] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150241,7 +151698,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1032), 1, sym_block, - [23334] = 5, + [23470] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150252,7 +151709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(701), 1, aux_sym_import_declaration_repeat1, - [23350] = 4, + [23486] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4945), 1, @@ -150262,7 +151719,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4997), 2, sym_integer, sym_character, - [23364] = 5, + [23500] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150273,7 +151730,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1033), 1, sym_block, - [23380] = 5, + [23516] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150284,7 +151741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1938), 1, aux_sym_import_declaration_repeat1, - [23396] = 5, + [23532] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3315), 1, @@ -150295,7 +151752,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2144), 1, aux_sym_import_declaration_repeat1, - [23412] = 5, + [23548] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150306,7 +151763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1943), 1, aux_sym_import_declaration_repeat1, - [23428] = 4, + [23564] = 4, ACTIONS(5008), 1, anon_sym_DQUOTE, ACTIONS(5012), 1, @@ -150316,7 +151773,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5010), 2, sym_string_content, sym_escape_sequence, - [23442] = 5, + [23578] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150327,7 +151784,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1253), 1, sym_block, - [23458] = 5, + [23594] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150338,7 +151795,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1037), 1, sym_block, - [23474] = 5, + [23610] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150349,7 +151806,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(2107), 1, sym_keyed_field_initializer, - [23490] = 5, + [23626] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150360,7 +151817,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1199), 1, sym_block, - [23506] = 5, + [23642] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3325), 1, @@ -150371,7 +151828,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2162), 1, aux_sym_import_declaration_repeat1, - [23522] = 5, + [23658] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(4541), 1, @@ -150382,7 +151839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_record_body, STATE(2042), 1, aux_sym_import_declaration_repeat1, - [23538] = 5, + [23674] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3354), 1, @@ -150393,7 +151850,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2165), 1, aux_sym_import_declaration_repeat1, - [23554] = 5, + [23690] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150404,7 +151861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1841), 1, aux_sym_import_declaration_repeat1, - [23570] = 5, + [23706] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150415,7 +151872,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1038), 1, sym_block, - [23586] = 5, + [23722] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150426,7 +151883,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1948), 1, aux_sym_import_declaration_repeat1, - [23602] = 5, + [23738] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150437,7 +151894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1951), 1, aux_sym_import_declaration_repeat1, - [23618] = 5, + [23754] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3374), 1, @@ -150448,7 +151905,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2173), 1, aux_sym_import_declaration_repeat1, - [23634] = 5, + [23770] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3315), 1, @@ -150459,7 +151916,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2180), 1, aux_sym_import_declaration_repeat1, - [23650] = 5, + [23786] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3335), 1, @@ -150470,7 +151927,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2177), 1, aux_sym_import_declaration_repeat1, - [23666] = 5, + [23802] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150481,7 +151938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(701), 1, aux_sym_import_declaration_repeat1, - [23682] = 5, + [23818] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150492,7 +151949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(701), 1, aux_sym_import_declaration_repeat1, - [23698] = 5, + [23834] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150503,7 +151960,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1041), 1, sym_block, - [23714] = 5, + [23850] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150514,7 +151971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1954), 1, aux_sym_import_declaration_repeat1, - [23730] = 5, + [23866] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150525,7 +151982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1955), 1, aux_sym_import_declaration_repeat1, - [23746] = 5, + [23882] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3344), 1, @@ -150536,7 +151993,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2190), 1, aux_sym_import_declaration_repeat1, - [23762] = 5, + [23898] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150547,7 +152004,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1996), 1, aux_sym_import_declaration_repeat1, - [23778] = 4, + [23914] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150557,7 +152014,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5063), 2, sym_sink, sym_identifier, - [23792] = 5, + [23928] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150568,7 +152025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(701), 1, aux_sym_import_declaration_repeat1, - [23808] = 5, + [23944] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150579,7 +152036,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1663), 1, sym_block, - [23824] = 5, + [23960] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150590,7 +152047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1896), 1, aux_sym_import_declaration_repeat1, - [23840] = 5, + [23976] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150601,7 +152058,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1863), 1, aux_sym_import_declaration_repeat1, - [23856] = 5, + [23992] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150612,7 +152069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1959), 1, aux_sym_import_declaration_repeat1, - [23872] = 5, + [24008] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150623,7 +152080,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1046), 1, sym_block, - [23888] = 5, + [24024] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, @@ -150634,7 +152091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_initializer_list, STATE(2220), 1, sym_argument_list, - [23904] = 5, + [24040] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150645,7 +152102,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1047), 1, sym_block, - [23920] = 5, + [24056] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150656,7 +152113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1964), 1, aux_sym_import_declaration_repeat1, - [23936] = 5, + [24072] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150667,7 +152124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(701), 1, aux_sym_import_declaration_repeat1, - [23952] = 5, + [24088] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, @@ -150678,7 +152135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, STATE(1949), 1, aux_sym_import_declaration_repeat1, - [23968] = 5, + [24104] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150689,7 +152146,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1278), 1, sym_block, - [23984] = 5, + [24120] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150700,7 +152157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(2012), 1, aux_sym_import_declaration_repeat1, - [24000] = 5, + [24136] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150711,7 +152168,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1051), 1, sym_block, - [24016] = 5, + [24152] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150722,7 +152179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1971), 1, aux_sym_import_declaration_repeat1, - [24032] = 5, + [24168] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150733,7 +152190,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1633), 1, sym_block, - [24048] = 5, + [24184] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150744,7 +152201,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1142), 1, sym_block, - [24064] = 5, + [24200] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150755,7 +152212,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1054), 1, sym_block, - [24080] = 5, + [24216] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150766,7 +152223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1976), 1, aux_sym_import_declaration_repeat1, - [24096] = 5, + [24232] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150777,7 +152234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1977), 1, aux_sym_import_declaration_repeat1, - [24112] = 5, + [24248] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150788,7 +152245,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1185), 1, sym_block, - [24128] = 5, + [24264] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, @@ -150799,7 +152256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, STATE(2011), 1, aux_sym_import_declaration_repeat1, - [24144] = 5, + [24280] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150810,7 +152267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(701), 1, aux_sym_import_declaration_repeat1, - [24160] = 5, + [24296] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150821,7 +152278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1846), 1, aux_sym_import_declaration_repeat1, - [24176] = 5, + [24312] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, @@ -150832,7 +152289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, STATE(1986), 1, aux_sym_import_declaration_repeat1, - [24192] = 5, + [24328] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150843,7 +152300,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1059), 1, sym_block, - [24208] = 5, + [24344] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150854,7 +152311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1848), 1, aux_sym_import_declaration_repeat1, - [24224] = 5, + [24360] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150865,7 +152322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1981), 1, aux_sym_import_declaration_repeat1, - [24240] = 4, + [24376] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5097), 1, @@ -150875,7 +152332,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5063), 2, sym_sink, sym_identifier, - [24254] = 5, + [24390] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150886,7 +152343,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1062), 1, sym_block, - [24270] = 5, + [24406] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150897,7 +152354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1984), 1, aux_sym_import_declaration_repeat1, - [24286] = 5, + [24422] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150908,7 +152365,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1146), 1, sym_block, - [24302] = 5, + [24438] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150919,7 +152376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1907), 1, aux_sym_import_declaration_repeat1, - [24318] = 5, + [24454] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150930,7 +152387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1855), 1, aux_sym_import_declaration_repeat1, - [24334] = 5, + [24470] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -150941,7 +152398,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1064), 1, sym_block, - [24350] = 5, + [24486] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150952,7 +152409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1987), 1, aux_sym_import_declaration_repeat1, - [24366] = 5, + [24502] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150963,7 +152420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1958), 1, aux_sym_import_declaration_repeat1, - [24382] = 5, + [24518] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150974,7 +152431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1858), 1, aux_sym_import_declaration_repeat1, - [24398] = 2, + [24534] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5111), 4, @@ -150982,7 +152439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_COLON, sym__newline, - [24408] = 5, + [24544] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -150993,7 +152450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1985), 1, aux_sym_import_declaration_repeat1, - [24424] = 5, + [24560] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151004,7 +152461,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1066), 1, sym_block, - [24440] = 4, + [24576] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151014,7 +152471,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5115), 2, sym_sink, sym_identifier, - [24454] = 5, + [24590] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151025,7 +152482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(701), 1, aux_sym_import_declaration_repeat1, - [24470] = 5, + [24606] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -151036,7 +152493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1901), 1, aux_sym_import_declaration_repeat1, - [24486] = 5, + [24622] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -151047,7 +152504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1905), 1, aux_sym_import_declaration_repeat1, - [24502] = 5, + [24638] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151058,7 +152515,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1067), 1, sym_block, - [24518] = 5, + [24654] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3325), 1, @@ -151069,7 +152526,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2181), 1, aux_sym_import_declaration_repeat1, - [24534] = 5, + [24670] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(4541), 1, @@ -151080,7 +152537,7 @@ static const uint16_t ts_small_parse_table[] = { sym_record_body, STATE(1999), 1, aux_sym_import_declaration_repeat1, - [24550] = 5, + [24686] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151091,7 +152548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(701), 1, aux_sym_import_declaration_repeat1, - [24566] = 5, + [24702] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3354), 1, @@ -151102,7 +152559,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2182), 1, aux_sym_import_declaration_repeat1, - [24582] = 4, + [24718] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151112,7 +152569,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5139), 2, sym_sink, sym_identifier, - [24596] = 2, + [24732] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5141), 4, @@ -151120,7 +152577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, sym_identifier, sym__newline, - [24606] = 5, + [24742] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151131,7 +152588,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1636), 1, sym_block, - [24622] = 5, + [24758] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151142,7 +152599,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1068), 1, sym_block, - [24638] = 5, + [24774] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151153,7 +152610,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1087), 1, sym_block, - [24654] = 5, + [24790] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151164,7 +152621,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1659), 1, sym_block, - [24670] = 5, + [24806] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -151175,7 +152632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1864), 1, aux_sym_import_declaration_repeat1, - [24686] = 4, + [24822] = 4, ACTIONS(5012), 1, sym_comment, ACTIONS(5145), 1, @@ -151185,7 +152642,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5147), 2, sym_string_content, sym_escape_sequence, - [24700] = 5, + [24836] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151196,7 +152653,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1073), 1, sym_block, - [24716] = 5, + [24852] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -151207,7 +152664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(2000), 1, aux_sym_import_declaration_repeat1, - [24732] = 5, + [24868] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -151218,7 +152675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1871), 1, aux_sym_import_declaration_repeat1, - [24748] = 5, + [24884] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151229,7 +152686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_body, STATE(701), 1, aux_sym_import_declaration_repeat1, - [24764] = 5, + [24900] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -151240,7 +152697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1824), 1, aux_sym_import_declaration_repeat1, - [24780] = 5, + [24916] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151251,7 +152708,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1079), 1, sym_block, - [24796] = 5, + [24932] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, @@ -151262,7 +152719,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1662), 1, sym_string, - [24812] = 5, + [24948] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151273,7 +152730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_record_body, STATE(701), 1, aux_sym_import_declaration_repeat1, - [24828] = 5, + [24964] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151284,7 +152741,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1080), 1, sym_block, - [24844] = 5, + [24980] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -151295,7 +152752,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(2005), 1, aux_sym_import_declaration_repeat1, - [24860] = 5, + [24996] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -151306,7 +152763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(2008), 1, aux_sym_import_declaration_repeat1, - [24876] = 5, + [25012] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151317,7 +152774,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1082), 1, sym_block, - [24892] = 5, + [25028] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151328,7 +152785,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1084), 1, sym_block, - [24908] = 5, + [25044] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -151339,7 +152796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(2007), 1, aux_sym_import_declaration_repeat1, - [24924] = 5, + [25060] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -151350,7 +152807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(2009), 1, aux_sym_import_declaration_repeat1, - [24940] = 5, + [25076] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151361,7 +152818,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1639), 1, sym_block, - [24956] = 5, + [25092] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151372,7 +152829,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1089), 1, sym_block, - [24972] = 5, + [25108] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -151383,7 +152840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(2014), 1, aux_sym_import_declaration_repeat1, - [24988] = 5, + [25124] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(4529), 1, @@ -151394,7 +152851,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(2067), 1, sym_keyed_field_initializer, - [25004] = 5, + [25140] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151405,7 +152862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(701), 1, aux_sym_import_declaration_repeat1, - [25020] = 5, + [25156] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3374), 1, @@ -151416,7 +152873,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2183), 1, aux_sym_import_declaration_repeat1, - [25036] = 5, + [25172] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151427,7 +152884,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1091), 1, sym_block, - [25052] = 5, + [25188] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -151438,7 +152895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(2016), 1, aux_sym_import_declaration_repeat1, - [25068] = 5, + [25204] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151449,7 +152906,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1138), 1, sym_block, - [25084] = 5, + [25220] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3335), 1, @@ -151460,7 +152917,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2184), 1, aux_sym_import_declaration_repeat1, - [25100] = 5, + [25236] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3344), 1, @@ -151471,7 +152928,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2185), 1, aux_sym_import_declaration_repeat1, - [25116] = 5, + [25252] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151482,7 +152939,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1661), 1, sym_block, - [25132] = 5, + [25268] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -151493,7 +152950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1894), 1, aux_sym_import_declaration_repeat1, - [25148] = 5, + [25284] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151504,7 +152961,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1093), 1, sym_block, - [25164] = 5, + [25300] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -151515,7 +152972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(2024), 1, aux_sym_import_declaration_repeat1, - [25180] = 5, + [25316] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151526,7 +152983,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1152), 1, sym_block, - [25196] = 5, + [25332] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -151537,7 +152994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1807), 1, aux_sym_import_declaration_repeat1, - [25212] = 5, + [25348] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(4688), 1, @@ -151548,7 +153005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_body, STATE(2002), 1, aux_sym_import_declaration_repeat1, - [25228] = 5, + [25364] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151559,7 +153016,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1095), 1, sym_block, - [25244] = 5, + [25380] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151570,7 +153027,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1107), 1, sym_block, - [25260] = 5, + [25396] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -151581,7 +153038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(2026), 1, aux_sym_import_declaration_repeat1, - [25276] = 5, + [25412] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -151592,7 +153049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1831), 1, aux_sym_import_declaration_repeat1, - [25292] = 5, + [25428] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -151603,7 +153060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1879), 1, aux_sym_import_declaration_repeat1, - [25308] = 5, + [25444] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151614,7 +153071,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1111), 1, sym_block, - [25324] = 5, + [25460] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -151625,7 +153082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(2029), 1, aux_sym_import_declaration_repeat1, - [25340] = 5, + [25476] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151636,7 +153093,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1672), 1, sym_block, - [25356] = 5, + [25492] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151647,7 +153104,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1114), 1, sym_block, - [25372] = 5, + [25508] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151658,7 +153115,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1261), 1, sym_block, - [25388] = 5, + [25524] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, @@ -151669,7 +153126,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1630), 1, sym_string, - [25404] = 5, + [25540] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151680,7 +153137,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1115), 1, sym_block, - [25420] = 5, + [25556] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -151691,7 +153148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(2032), 1, aux_sym_import_declaration_repeat1, - [25436] = 5, + [25572] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -151702,7 +153159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(2033), 1, aux_sym_import_declaration_repeat1, - [25452] = 5, + [25588] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -151713,7 +153170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1866), 1, aux_sym_import_declaration_repeat1, - [25468] = 5, + [25604] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151724,7 +153181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(701), 1, aux_sym_import_declaration_repeat1, - [25484] = 4, + [25620] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4945), 1, @@ -151734,7 +153191,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5214), 2, sym_integer, sym_character, - [25498] = 5, + [25634] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151745,7 +153202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(701), 1, aux_sym_import_declaration_repeat1, - [25514] = 4, + [25650] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4945), 1, @@ -151755,7 +153212,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5216), 2, sym_integer, sym_character, - [25528] = 5, + [25664] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151766,7 +153223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(701), 1, aux_sym_import_declaration_repeat1, - [25544] = 5, + [25680] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151777,7 +153234,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1210), 1, sym_block, - [25560] = 4, + [25696] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5220), 1, @@ -151787,7 +153244,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5218), 2, sym_sink, sym_identifier, - [25574] = 5, + [25710] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151798,7 +153255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [25590] = 5, + [25726] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151809,7 +153266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_record_body, STATE(701), 1, aux_sym_import_declaration_repeat1, - [25606] = 5, + [25742] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151820,7 +153277,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1117), 1, sym_block, - [25622] = 5, + [25758] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -151831,7 +153288,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1916), 1, aux_sym_import_declaration_repeat1, - [25638] = 5, + [25774] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151842,7 +153299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_enum_body, STATE(701), 1, aux_sym_import_declaration_repeat1, - [25654] = 2, + [25790] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5226), 4, @@ -151850,7 +153307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, sym_identifier, sym__newline, - [25664] = 4, + [25800] = 4, ACTIONS(5012), 1, sym_comment, ACTIONS(5228), 1, @@ -151860,7 +153317,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5230), 2, sym_string_content, sym_escape_sequence, - [25678] = 5, + [25814] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151871,7 +153328,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1119), 1, sym_block, - [25694] = 4, + [25830] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4945), 1, @@ -151881,7 +153338,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5232), 2, sym_integer, sym_character, - [25708] = 5, + [25844] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151892,7 +153349,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1120), 1, sym_block, - [25724] = 5, + [25860] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151903,7 +153360,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1161), 1, sym_block, - [25740] = 5, + [25876] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151914,7 +153371,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1121), 1, sym_block, - [25756] = 5, + [25892] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -151925,7 +153382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(2039), 1, aux_sym_import_declaration_repeat1, - [25772] = 5, + [25908] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(95), 1, @@ -151936,7 +153393,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1645), 1, sym_string, - [25788] = 5, + [25924] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151947,7 +153404,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1222), 1, sym_block, - [25804] = 5, + [25940] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -151958,7 +153415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1890), 1, aux_sym_import_declaration_repeat1, - [25820] = 5, + [25956] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151969,7 +153426,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1123), 1, sym_block, - [25836] = 4, + [25972] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4945), 1, @@ -151979,7 +153436,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5238), 2, sym_integer, sym_character, - [25850] = 5, + [25986] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -151990,7 +153447,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1125), 1, sym_block, - [25866] = 5, + [26002] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -152001,7 +153458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(2044), 1, aux_sym_import_declaration_repeat1, - [25882] = 4, + [26018] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4945), 1, @@ -152011,7 +153468,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5242), 2, sym_integer, sym_character, - [25896] = 4, + [26032] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4945), 1, @@ -152021,7 +153478,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5244), 2, sym_integer, sym_character, - [25910] = 4, + [26046] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4945), 1, @@ -152031,7 +153488,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5246), 2, sym_integer, sym_character, - [25924] = 4, + [26060] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4945), 1, @@ -152041,7 +153498,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5248), 2, sym_integer, sym_character, - [25938] = 5, + [26074] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152052,7 +153509,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1214), 1, sym_block, - [25954] = 5, + [26090] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -152063,7 +153520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1892), 1, aux_sym_import_declaration_repeat1, - [25970] = 5, + [26106] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152074,7 +153531,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1127), 1, sym_block, - [25986] = 5, + [26122] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -152085,7 +153542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(2048), 1, aux_sym_import_declaration_repeat1, - [26002] = 5, + [26138] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152096,7 +153553,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1129), 1, sym_block, - [26018] = 5, + [26154] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -152107,7 +153564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(2049), 1, aux_sym_import_declaration_repeat1, - [26034] = 5, + [26170] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -152118,7 +153575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1973), 1, aux_sym_import_declaration_repeat1, - [26050] = 5, + [26186] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152129,7 +153586,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1131), 1, sym_block, - [26066] = 5, + [26202] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -152140,7 +153597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1849), 1, aux_sym_import_declaration_repeat1, - [26082] = 5, + [26218] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152151,7 +153608,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1179), 1, sym_block, - [26098] = 5, + [26234] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152162,7 +153619,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1132), 1, sym_block, - [26114] = 5, + [26250] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152173,7 +153630,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1229), 1, sym_block, - [26130] = 5, + [26266] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -152184,7 +153641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(2022), 1, aux_sym_import_declaration_repeat1, - [26146] = 5, + [26282] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152195,7 +153652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26162] = 5, + [26298] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152206,7 +153663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26178] = 5, + [26314] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -152217,7 +153674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1995), 1, aux_sym_import_declaration_repeat1, - [26194] = 4, + [26330] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5268), 1, @@ -152227,7 +153684,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5266), 2, sym_sink, sym_identifier, - [26208] = 5, + [26344] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152238,7 +153695,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1133), 1, sym_block, - [26224] = 5, + [26360] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152249,7 +153706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26240] = 5, + [26376] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152260,7 +153717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26256] = 5, + [26392] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152271,7 +153728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_record_body, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26272] = 5, + [26408] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -152282,7 +153739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1898), 1, aux_sym_import_declaration_repeat1, - [26288] = 5, + [26424] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152293,7 +153750,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1134), 1, sym_block, - [26304] = 5, + [26440] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152304,7 +153761,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1657), 1, sym_record_body, - [26320] = 5, + [26456] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152315,7 +153772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26336] = 5, + [26472] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152326,7 +153783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26352] = 5, + [26488] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152337,7 +153794,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1135), 1, sym_block, - [26368] = 5, + [26504] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152348,7 +153805,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1136), 1, sym_block, - [26384] = 5, + [26520] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3825), 1, @@ -152359,7 +153816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1966), 1, aux_sym_import_declaration_repeat1, - [26400] = 2, + [26536] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4414), 4, @@ -152367,7 +153824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_COLON, sym__newline, - [26410] = 5, + [26546] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152378,7 +153835,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_import_declaration_repeat1, STATE(1164), 1, sym_block, - [26426] = 4, + [26562] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152387,7 +153844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26439] = 4, + [26575] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152396,7 +153853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26452] = 4, + [26588] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152405,7 +153862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26465] = 3, + [26601] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5288), 1, @@ -152413,7 +153870,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5286), 2, sym_sink, sym_identifier, - [26476] = 4, + [26612] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152422,14 +153879,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26489] = 2, + [26625] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4084), 3, anon_sym_COMMA, anon_sym_RBRACE, sym__newline, - [26498] = 4, + [26634] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152438,7 +153895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26511] = 4, + [26647] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(3799), 1, @@ -152447,7 +153904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, STATE(2280), 1, sym_match_capture, - [26524] = 4, + [26660] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152456,7 +153913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26537] = 4, + [26673] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152465,7 +153922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26550] = 4, + [26686] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152474,14 +153931,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26563] = 2, + [26699] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5300), 3, anon_sym_RPAREN, anon_sym_COMMA, sym__newline, - [26572] = 4, + [26708] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152490,7 +153947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26585] = 4, + [26721] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152499,14 +153956,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26598] = 2, + [26734] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4632), 3, anon_sym_COMMA, anon_sym_RBRACE, sym__newline, - [26607] = 4, + [26743] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152515,7 +153972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26620] = 4, + [26756] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152524,7 +153981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26633] = 4, + [26769] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152533,7 +153990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26646] = 4, + [26782] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152542,7 +153999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26659] = 4, + [26795] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152551,7 +154008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26672] = 4, + [26808] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152560,14 +154017,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26685] = 2, + [26821] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4805), 3, anon_sym_RPAREN, anon_sym_COMMA, sym__newline, - [26694] = 4, + [26830] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152576,7 +154033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26707] = 4, + [26843] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152585,21 +154042,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26720] = 2, + [26856] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5318), 3, anon_sym_RPAREN, anon_sym_COMMA, sym__newline, - [26729] = 2, + [26865] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5320), 3, anon_sym_RPAREN, anon_sym_COMMA, sym__newline, - [26738] = 4, + [26874] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5322), 1, @@ -152608,7 +154065,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2179), 1, aux_sym_import_declaration_repeat1, - [26751] = 4, + [26887] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152617,7 +154074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26764] = 4, + [26900] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152626,7 +154083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26777] = 4, + [26913] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152635,7 +154092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26790] = 4, + [26926] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152644,7 +154101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26803] = 4, + [26939] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152653,7 +154110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26816] = 4, + [26952] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5292), 1, @@ -152662,7 +154119,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2115), 1, aux_sym_import_declaration_repeat1, - [26829] = 4, + [26965] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152671,7 +154128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26842] = 4, + [26978] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5340), 1, @@ -152680,7 +154137,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2088), 1, aux_sym_import_declaration_repeat1, - [26855] = 4, + [26991] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152689,7 +154146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26868] = 4, + [27004] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152698,7 +154155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26881] = 4, + [27017] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152707,7 +154164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26894] = 4, + [27030] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5350), 1, @@ -152716,7 +154173,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2063), 1, aux_sym_import_declaration_repeat1, - [26907] = 4, + [27043] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152725,7 +154182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26920] = 4, + [27056] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5356), 1, @@ -152734,7 +154191,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2092), 1, aux_sym_import_declaration_repeat1, - [26933] = 4, + [27069] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5360), 1, @@ -152743,14 +154200,14 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2120), 1, aux_sym_import_declaration_repeat1, - [26946] = 2, + [27082] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5364), 3, anon_sym_RPAREN, anon_sym_COMMA, sym__newline, - [26955] = 4, + [27091] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152759,14 +154216,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26968] = 2, + [27104] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5366), 3, anon_sym_RPAREN, anon_sym_COMMA, sym__newline, - [26977] = 4, + [27113] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152775,7 +154232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [26990] = 4, + [27126] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152784,7 +154241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27003] = 4, + [27139] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152793,7 +154250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27016] = 4, + [27152] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152802,7 +154259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27029] = 4, + [27165] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152811,7 +154268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27042] = 4, + [27178] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152820,7 +154277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27055] = 4, + [27191] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152829,7 +154286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27068] = 4, + [27204] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152838,7 +154295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27081] = 4, + [27217] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152847,14 +154304,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27094] = 2, + [27230] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5384), 3, anon_sym_COMMA, anon_sym_RBRACE, sym__newline, - [27103] = 4, + [27239] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152863,7 +154320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27116] = 4, + [27252] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152872,7 +154329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27129] = 4, + [27265] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152881,7 +154338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27142] = 4, + [27278] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152890,7 +154347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27155] = 4, + [27291] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152899,7 +154356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27168] = 4, + [27304] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152908,7 +154365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27181] = 4, + [27317] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152917,7 +154374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27194] = 4, + [27330] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152926,7 +154383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27207] = 4, + [27343] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5402), 1, @@ -152935,14 +154392,14 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2126), 1, aux_sym_import_declaration_repeat1, - [27220] = 2, + [27356] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4028), 3, anon_sym_COMMA, anon_sym_RBRACE, sym__newline, - [27229] = 4, + [27365] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152951,7 +154408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27242] = 4, + [27378] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152960,7 +154417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27255] = 4, + [27391] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152969,7 +154426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27268] = 4, + [27404] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5410), 1, @@ -152978,7 +154435,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2075), 1, aux_sym_import_declaration_repeat1, - [27281] = 4, + [27417] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152987,7 +154444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27294] = 4, + [27430] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -152996,7 +154453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27307] = 4, + [27443] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153005,7 +154462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27320] = 4, + [27456] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5420), 1, @@ -153014,7 +154471,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2135), 1, aux_sym_import_declaration_repeat1, - [27333] = 4, + [27469] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153023,7 +154480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27346] = 4, + [27482] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153032,7 +154489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27359] = 4, + [27495] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5424), 1, @@ -153041,7 +154498,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2122), 1, aux_sym_import_declaration_repeat1, - [27372] = 3, + [27508] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5432), 1, @@ -153049,7 +154506,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5430), 2, sym_sink, sym_identifier, - [27383] = 4, + [27519] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153058,7 +154515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27396] = 4, + [27532] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153067,14 +154524,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27409] = 2, + [27545] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5438), 3, anon_sym_RPAREN, anon_sym_COMMA, sym__newline, - [27418] = 4, + [27554] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5440), 1, @@ -153083,7 +154540,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2145), 1, aux_sym_import_declaration_repeat1, - [27431] = 4, + [27567] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5444), 1, @@ -153092,7 +154549,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2175), 1, aux_sym_import_declaration_repeat1, - [27444] = 4, + [27580] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153101,7 +154558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27457] = 4, + [27593] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5450), 1, @@ -153110,7 +154567,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2152), 1, aux_sym_import_declaration_repeat1, - [27470] = 4, + [27606] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153119,7 +154576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27483] = 4, + [27619] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153128,14 +154585,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27496] = 2, + [27632] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4044), 3, anon_sym_COMMA, anon_sym_RBRACE, sym__newline, - [27505] = 4, + [27641] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153144,7 +154601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27518] = 4, + [27654] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153153,14 +154610,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27531] = 2, + [27667] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4648), 3, anon_sym_RBRACE, sym_identifier, sym__newline, - [27540] = 4, + [27676] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153169,7 +154626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27553] = 4, + [27689] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153178,7 +154635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27566] = 4, + [27702] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153187,7 +154644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27579] = 4, + [27715] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153196,7 +154653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27592] = 4, + [27728] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153205,7 +154662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27605] = 4, + [27741] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153214,7 +154671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27618] = 4, + [27754] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153223,7 +154680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27631] = 4, + [27767] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153232,7 +154689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27644] = 4, + [27780] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153241,7 +154698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27657] = 4, + [27793] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153250,7 +154707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27670] = 4, + [27806] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5478), 1, @@ -153259,7 +154716,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2167), 1, aux_sym_import_declaration_repeat1, - [27683] = 4, + [27819] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5482), 1, @@ -153268,7 +154725,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2168), 1, aux_sym_import_declaration_repeat1, - [27696] = 4, + [27832] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153277,7 +154734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27709] = 4, + [27845] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153286,7 +154743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27722] = 4, + [27858] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153295,7 +154752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27735] = 4, + [27871] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153304,7 +154761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27748] = 4, + [27884] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153313,7 +154770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27761] = 4, + [27897] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153322,7 +154779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27774] = 4, + [27910] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153331,7 +154788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27787] = 4, + [27923] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153340,7 +154797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27800] = 4, + [27936] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5502), 1, @@ -153349,7 +154806,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2086), 1, aux_sym_import_declaration_repeat1, - [27813] = 4, + [27949] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153358,7 +154815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27826] = 4, + [27962] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153367,7 +154824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27839] = 4, + [27975] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153376,7 +154833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27852] = 4, + [27988] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153385,7 +154842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27865] = 4, + [28001] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153394,7 +154851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27878] = 4, + [28014] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153403,7 +154860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27891] = 4, + [28027] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153412,7 +154869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27904] = 4, + [28040] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153421,7 +154878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27917] = 4, + [28053] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153430,7 +154887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27930] = 4, + [28066] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153439,7 +154896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27943] = 4, + [28079] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153448,7 +154905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27956] = 4, + [28092] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153457,7 +154914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27969] = 4, + [28105] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153466,7 +154923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27982] = 4, + [28118] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153475,7 +154932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [27995] = 4, + [28131] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5528), 1, @@ -153484,7 +154941,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2070), 1, aux_sym_import_declaration_repeat1, - [28008] = 4, + [28144] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153493,7 +154950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(701), 1, aux_sym_import_declaration_repeat1, - [28021] = 4, + [28157] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153502,7 +154959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [28034] = 4, + [28170] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153511,7 +154968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [28047] = 4, + [28183] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153520,7 +154977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [28060] = 4, + [28196] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153529,7 +154986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [28073] = 4, + [28209] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153538,7 +154995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [28086] = 4, + [28222] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153547,7 +155004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [28099] = 4, + [28235] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153556,7 +155013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [28112] = 4, + [28248] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5552), 1, @@ -153565,7 +155022,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, STATE(2059), 1, aux_sym_import_declaration_repeat1, - [28125] = 4, + [28261] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153574,14 +155031,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(701), 1, aux_sym_import_declaration_repeat1, - [28138] = 2, + [28274] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5558), 3, anon_sym_COMMA, anon_sym_RBRACE, sym__newline, - [28147] = 4, + [28283] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(295), 1, @@ -153590,1012 +155047,1012 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, STATE(701), 1, aux_sym_import_declaration_repeat1, - [28160] = 3, + [28296] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5562), 1, anon_sym_COLON_COLON, ACTIONS(5564), 1, anon_sym_EQ, - [28170] = 3, + [28306] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5566), 1, anon_sym_COMMA, ACTIONS(5568), 1, anon_sym_PIPE, - [28180] = 3, + [28316] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5570), 1, anon_sym_COMMA, ACTIONS(5572), 1, anon_sym_PIPE, - [28190] = 3, + [28326] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5574), 1, anon_sym_LPAREN, STATE(1352), 1, sym_parameter_list, - [28200] = 3, + [28336] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5576), 1, sym_identifier, ACTIONS(5578), 1, anon_sym_AT, - [28210] = 3, + [28346] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5580), 1, anon_sym_COLON_COLON, ACTIONS(5582), 1, anon_sym_EQ, - [28220] = 3, + [28356] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5584), 1, anon_sym_PIPE, STATE(2293), 1, sym_expand_match_capture, - [28230] = 3, + [28366] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5586), 1, anon_sym_COMMA, ACTIONS(5588), 1, anon_sym_PIPE, - [28240] = 3, + [28376] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5590), 1, anon_sym_COMMA, ACTIONS(5592), 1, anon_sym_PIPE, - [28250] = 2, + [28386] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5594), 2, sym_sink, sym_identifier, - [28258] = 2, + [28394] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5596), 2, anon_sym_RBRACK, sym__newline, - [28266] = 2, + [28402] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5598), 2, sym_sink, sym_identifier, - [28274] = 2, + [28410] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5600), 2, sym_sink, sym_identifier, - [28282] = 3, + [28418] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(872), 1, anon_sym_LPAREN, STATE(478), 1, sym_argument_list, - [28292] = 3, + [28428] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5602), 1, anon_sym_COLON_COLON, ACTIONS(5604), 1, anon_sym_EQ, - [28302] = 3, + [28438] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5606), 1, anon_sym_COLON_COLON, ACTIONS(5608), 1, anon_sym_EQ, - [28312] = 3, + [28448] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5610), 1, sym_identifier, ACTIONS(5612), 1, anon_sym_AT, - [28322] = 3, + [28458] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5574), 1, anon_sym_LPAREN, STATE(1349), 1, sym_parameter_list, - [28332] = 3, + [28468] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5614), 1, anon_sym_DASH, ACTIONS(5616), 1, sym_integer, - [28342] = 3, + [28478] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5618), 1, anon_sym_COLON_COLON, ACTIONS(5620), 1, anon_sym_EQ, - [28352] = 3, + [28488] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5622), 1, anon_sym_COLON_COLON, ACTIONS(5624), 1, anon_sym_EQ, - [28362] = 3, + [28498] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5626), 1, anon_sym_COLON_COLON, ACTIONS(5628), 1, anon_sym_EQ, - [28372] = 2, + [28508] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5630), 2, sym_sink, sym_identifier, - [28380] = 3, + [28516] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5632), 1, anon_sym_COLON_COLON, ACTIONS(5634), 1, anon_sym_EQ, - [28390] = 3, + [28526] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5636), 1, anon_sym_COMMA, ACTIONS(5638), 1, anon_sym_PIPE, - [28400] = 3, + [28536] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5574), 1, anon_sym_LPAREN, STATE(1345), 1, sym_parameter_list, - [28410] = 3, + [28546] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5640), 1, anon_sym_COMMA, ACTIONS(5642), 1, anon_sym_PIPE, - [28420] = 2, + [28556] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5644), 2, sym_sink, sym_identifier, - [28428] = 3, + [28564] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5646), 1, sym_identifier, ACTIONS(5648), 1, anon_sym_AT, - [28438] = 3, + [28574] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5073), 1, anon_sym_LBRACE, STATE(518), 1, sym_initializer_list, - [28448] = 2, + [28584] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5650), 2, sym_sink, sym_identifier, - [28456] = 3, + [28592] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5652), 1, anon_sym_COMMA, ACTIONS(5654), 1, anon_sym_PIPE, - [28466] = 2, + [28602] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5656), 2, sym_sink, sym_identifier, - [28474] = 2, + [28610] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5658), 2, sym_identifier, sym_integer, - [28482] = 2, + [28618] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5660), 2, sym_sink, sym_identifier, - [28490] = 3, + [28626] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5662), 1, anon_sym_COLON_COLON, ACTIONS(5664), 1, anon_sym_EQ, - [28500] = 3, + [28636] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5666), 1, anon_sym_COMMA, ACTIONS(5668), 1, anon_sym_PIPE, - [28510] = 3, + [28646] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5670), 1, sym_identifier, ACTIONS(5672), 1, anon_sym_AT, - [28520] = 3, + [28656] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5674), 1, anon_sym_COMMA, ACTIONS(5676), 1, anon_sym_PIPE, - [28530] = 3, + [28666] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5574), 1, anon_sym_LPAREN, STATE(1341), 1, sym_parameter_list, - [28540] = 2, + [28676] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5678), 2, sym_integer, sym_character, - [28548] = 3, + [28684] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5658), 1, sym_integer, ACTIONS(5680), 1, sym_identifier, - [28558] = 3, + [28694] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5682), 1, sym_identifier, ACTIONS(5684), 1, anon_sym_AT, - [28568] = 3, + [28704] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5686), 1, anon_sym_COLON_COLON, ACTIONS(5688), 1, anon_sym_EQ, - [28578] = 3, + [28714] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5690), 1, sym_identifier, ACTIONS(5692), 1, anon_sym_AT, - [28588] = 3, + [28724] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5694), 1, anon_sym_COLON_COLON, ACTIONS(5696), 1, anon_sym_EQ, - [28598] = 3, + [28734] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5698), 1, anon_sym_COMMA, ACTIONS(5700), 1, anon_sym_PIPE, - [28608] = 3, + [28744] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5702), 1, anon_sym_COMMA, ACTIONS(5704), 1, anon_sym_PIPE, - [28618] = 2, + [28754] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5706), 1, anon_sym_COLON, - [28625] = 2, + [28761] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5708), 1, anon_sym_SEMI, - [28632] = 2, + [28768] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5710), 1, sym_identifier, - [28639] = 2, + [28775] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5712), 1, anon_sym_COLON, - [28646] = 2, + [28782] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5714), 1, anon_sym_COLON, - [28653] = 2, + [28789] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5716), 1, anon_sym_COLON, - [28660] = 2, + [28796] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5718), 1, anon_sym_EQ, - [28667] = 2, + [28803] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5720), 1, anon_sym_COLON, - [28674] = 2, + [28810] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5722), 1, anon_sym_COLON, - [28681] = 2, + [28817] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5724), 1, anon_sym_COLON, - [28688] = 2, + [28824] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5576), 1, sym_identifier, - [28695] = 2, + [28831] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5726), 1, anon_sym_COLON, - [28702] = 2, + [28838] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5728), 1, sym_identifier, - [28709] = 2, + [28845] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5730), 1, sym_identifier, - [28716] = 2, + [28852] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5732), 1, anon_sym_COLON, - [28723] = 2, + [28859] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5734), 1, anon_sym_PIPE, - [28730] = 2, + [28866] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5736), 1, anon_sym_COLON, - [28737] = 2, + [28873] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5738), 1, anon_sym_PIPE, - [28744] = 2, + [28880] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5740), 1, anon_sym_COLON, - [28751] = 2, + [28887] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5742), 1, sym_integer, - [28758] = 2, + [28894] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5744), 1, anon_sym_COLON, - [28765] = 2, + [28901] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5746), 1, anon_sym_COLON, - [28772] = 2, + [28908] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5748), 1, anon_sym_COLON, - [28779] = 2, + [28915] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5750), 1, anon_sym_COLON, - [28786] = 2, + [28922] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5752), 1, sym_identifier, - [28793] = 2, + [28929] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5754), 1, anon_sym_COLON, - [28800] = 2, + [28936] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5756), 1, anon_sym_COLON, - [28807] = 2, + [28943] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5758), 1, anon_sym_COLON, - [28814] = 2, + [28950] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5646), 1, sym_identifier, - [28821] = 2, + [28957] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5760), 1, anon_sym_COLON, - [28828] = 2, + [28964] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5762), 1, anon_sym_COLON, - [28835] = 2, + [28971] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5764), 1, anon_sym_PIPE, - [28842] = 2, + [28978] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5766), 1, sym_identifier, - [28849] = 2, + [28985] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5768), 1, anon_sym_COLON, - [28856] = 2, + [28992] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5770), 1, anon_sym_COLON, - [28863] = 2, + [28999] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5772), 1, anon_sym_COLON, - [28870] = 2, + [29006] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5774), 1, anon_sym_COLON, - [28877] = 2, + [29013] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5776), 1, anon_sym_COLON, - [28884] = 2, + [29020] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5778), 1, anon_sym_PIPE, - [28891] = 2, + [29027] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5780), 1, anon_sym_PIPE, - [28898] = 2, + [29034] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5782), 1, anon_sym_COLON, - [28905] = 2, + [29041] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5784), 1, anon_sym_COLON, - [28912] = 2, + [29048] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5786), 1, sym_identifier, - [28919] = 2, + [29055] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5788), 1, sym_identifier, - [28926] = 2, + [29062] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5790), 1, anon_sym_PIPE, - [28933] = 2, + [29069] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5792), 1, anon_sym_COLON, - [28940] = 2, + [29076] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5794), 1, sym_identifier, - [28947] = 2, + [29083] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5796), 1, anon_sym_COLON, - [28954] = 2, + [29090] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5798), 1, sym_identifier, - [28961] = 2, + [29097] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5800), 1, anon_sym_COLON, - [28968] = 2, + [29104] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5802), 1, anon_sym_COLON, - [28975] = 2, + [29111] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5804), 1, anon_sym_COLON, - [28982] = 2, + [29118] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5806), 1, sym_identifier, - [28989] = 2, + [29125] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5808), 1, sym_identifier, - [28996] = 2, + [29132] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5810), 1, anon_sym_COLON, - [29003] = 2, + [29139] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5812), 1, anon_sym_COLON, - [29010] = 2, + [29146] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5814), 1, anon_sym_PIPE, - [29017] = 2, + [29153] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5816), 1, anon_sym_COLON, - [29024] = 2, + [29160] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5818), 1, anon_sym_COLON, - [29031] = 2, + [29167] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5820), 1, sym_identifier, - [29038] = 2, + [29174] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5822), 1, anon_sym_COLON, - [29045] = 2, + [29181] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5824), 1, anon_sym_COLON, - [29052] = 2, + [29188] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5826), 1, anon_sym_COLON, - [29059] = 2, + [29195] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5828), 1, anon_sym_COLON, - [29066] = 2, + [29202] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5830), 1, anon_sym_COLON, - [29073] = 2, + [29209] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5832), 1, anon_sym_PIPE, - [29080] = 2, + [29216] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5834), 1, anon_sym_COLON, - [29087] = 2, + [29223] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5836), 1, sym_identifier, - [29094] = 2, + [29230] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5838), 1, anon_sym_COLON, - [29101] = 2, + [29237] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5840), 1, sym_identifier, - [29108] = 2, + [29244] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5842), 1, anon_sym_COLON, - [29115] = 2, + [29251] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1794), 1, anon_sym_SEMI, - [29122] = 2, + [29258] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5844), 1, anon_sym_COLON, - [29129] = 2, + [29265] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5846), 1, sym_identifier, - [29136] = 2, + [29272] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5848), 1, sym_identifier, - [29143] = 2, + [29279] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5850), 1, anon_sym_PIPE, - [29150] = 2, + [29286] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5852), 1, ts_builtin_sym_end, - [29157] = 2, + [29293] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5854), 1, anon_sym_COLON, - [29164] = 2, + [29300] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5856), 1, anon_sym_COLON, - [29171] = 2, + [29307] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5858), 1, sym_identifier, - [29178] = 2, + [29314] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5860), 1, anon_sym_COLON, - [29185] = 2, + [29321] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5862), 1, sym_identifier, - [29192] = 2, + [29328] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5864), 1, anon_sym_COLON, - [29199] = 2, + [29335] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5866), 1, anon_sym_COLON, - [29206] = 2, + [29342] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5868), 1, anon_sym_for, - [29213] = 2, + [29349] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5870), 1, anon_sym_COLON, - [29220] = 2, + [29356] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5872), 1, anon_sym_COLON, - [29227] = 2, + [29363] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5874), 1, sym_identifier, - [29234] = 2, + [29370] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5876), 1, anon_sym_PIPE, - [29241] = 2, + [29377] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5878), 1, anon_sym_COLON, - [29248] = 2, + [29384] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5880), 1, anon_sym_COLON, - [29255] = 2, + [29391] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5882), 1, sym_identifier, - [29262] = 2, + [29398] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5884), 1, anon_sym_COLON, - [29269] = 2, + [29405] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5886), 1, anon_sym_COLON, - [29276] = 2, + [29412] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5888), 1, anon_sym_COLON, - [29283] = 2, + [29419] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5890), 1, anon_sym_PIPE, - [29290] = 2, + [29426] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5892), 1, anon_sym_COLON, - [29297] = 2, + [29433] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5894), 1, sym_identifier, - [29304] = 2, + [29440] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5896), 1, anon_sym_COLON, - [29311] = 2, + [29447] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5898), 1, anon_sym_COLON, - [29318] = 2, + [29454] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5900), 1, anon_sym_COLON, - [29325] = 2, + [29461] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5902), 1, anon_sym_PIPE, - [29332] = 2, + [29468] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5904), 1, anon_sym_COLON, - [29339] = 2, + [29475] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5906), 1, anon_sym_RPAREN, - [29346] = 2, + [29482] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5908), 1, anon_sym_COLON, - [29353] = 2, + [29489] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5910), 1, anon_sym_COLON, - [29360] = 2, + [29496] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5912), 1, anon_sym_COLON, - [29367] = 2, + [29503] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5914), 1, anon_sym_COLON, - [29374] = 2, + [29510] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5916), 1, anon_sym_COLON, - [29381] = 2, + [29517] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5918), 1, anon_sym_COLON, - [29388] = 2, + [29524] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5920), 1, anon_sym_COLON, - [29395] = 2, + [29531] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5922), 1, anon_sym_COLON, - [29402] = 2, + [29538] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5924), 1, anon_sym_COLON, - [29409] = 2, + [29545] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5926), 1, anon_sym_COLON, - [29416] = 2, + [29552] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5928), 1, anon_sym_PIPE, - [29423] = 2, + [29559] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5930), 1, anon_sym_COLON, - [29430] = 2, + [29566] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5932), 1, anon_sym_COLON, - [29437] = 2, + [29573] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5934), 1, anon_sym_COLON, - [29444] = 2, + [29580] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5936), 1, sym_identifier, - [29451] = 2, + [29587] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5938), 1, anon_sym_import, - [29458] = 2, + [29594] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5940), 1, sym_identifier, - [29465] = 2, + [29601] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5942), 1, sym_identifier, - [29472] = 2, + [29608] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5610), 1, sym_identifier, - [29479] = 2, + [29615] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5944), 1, sym_identifier, - [29486] = 2, + [29622] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5946), 1, anon_sym_COLON, - [29493] = 2, + [29629] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5948), 1, anon_sym_COLON, - [29500] = 2, + [29636] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5950), 1, anon_sym_COLON, - [29507] = 2, + [29643] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5952), 1, sym_identifier, - [29514] = 2, + [29650] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5954), 1, anon_sym_RPAREN, - [29521] = 2, + [29657] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5956), 1, sym_identifier, - [29528] = 2, + [29664] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5958), 1, anon_sym_COLON, - [29535] = 2, + [29671] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(1650), 1, anon_sym_SEMI, - [29542] = 2, + [29678] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5960), 1, anon_sym_SEMI, - [29549] = 2, + [29685] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5962), 1, anon_sym_COLON, - [29556] = 2, + [29692] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5964), 1, anon_sym_COLON, - [29563] = 2, + [29699] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5966), 1, anon_sym_PIPE, - [29570] = 2, + [29706] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(5968), 1, @@ -154604,1076 +156061,1076 @@ static const uint16_t ts_small_parse_table[] = { static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1305)] = 0, - [SMALL_STATE(1306)] = 74, - [SMALL_STATE(1307)] = 146, - [SMALL_STATE(1308)] = 219, - [SMALL_STATE(1309)] = 292, - [SMALL_STATE(1310)] = 365, - [SMALL_STATE(1311)] = 438, - [SMALL_STATE(1312)] = 511, - [SMALL_STATE(1313)] = 584, - [SMALL_STATE(1314)] = 657, - [SMALL_STATE(1315)] = 730, - [SMALL_STATE(1316)] = 796, - [SMALL_STATE(1317)] = 862, - [SMALL_STATE(1318)] = 928, - [SMALL_STATE(1319)] = 994, - [SMALL_STATE(1320)] = 1060, - [SMALL_STATE(1321)] = 1126, - [SMALL_STATE(1322)] = 1192, - [SMALL_STATE(1323)] = 1258, - [SMALL_STATE(1324)] = 1327, - [SMALL_STATE(1325)] = 1398, - [SMALL_STATE(1326)] = 1467, - [SMALL_STATE(1327)] = 1538, - [SMALL_STATE(1328)] = 1622, - [SMALL_STATE(1329)] = 1708, - [SMALL_STATE(1330)] = 1794, - [SMALL_STATE(1331)] = 1880, - [SMALL_STATE(1332)] = 1959, - [SMALL_STATE(1333)] = 2038, - [SMALL_STATE(1334)] = 2117, - [SMALL_STATE(1335)] = 2196, - [SMALL_STATE(1336)] = 2275, - [SMALL_STATE(1337)] = 2354, - [SMALL_STATE(1338)] = 2433, - [SMALL_STATE(1339)] = 2512, - [SMALL_STATE(1340)] = 2591, - [SMALL_STATE(1341)] = 2667, - [SMALL_STATE(1342)] = 2743, - [SMALL_STATE(1343)] = 2819, - [SMALL_STATE(1344)] = 2895, - [SMALL_STATE(1345)] = 2971, - [SMALL_STATE(1346)] = 3047, - [SMALL_STATE(1347)] = 3123, - [SMALL_STATE(1348)] = 3199, - [SMALL_STATE(1349)] = 3275, - [SMALL_STATE(1350)] = 3351, - [SMALL_STATE(1351)] = 3427, - [SMALL_STATE(1352)] = 3503, - [SMALL_STATE(1353)] = 3579, - [SMALL_STATE(1354)] = 3652, - [SMALL_STATE(1355)] = 3725, - [SMALL_STATE(1356)] = 3798, - [SMALL_STATE(1357)] = 3871, - [SMALL_STATE(1358)] = 3944, - [SMALL_STATE(1359)] = 4017, - [SMALL_STATE(1360)] = 4090, - [SMALL_STATE(1361)] = 4163, - [SMALL_STATE(1362)] = 4236, - [SMALL_STATE(1363)] = 4309, - [SMALL_STATE(1364)] = 4382, - [SMALL_STATE(1365)] = 4455, - [SMALL_STATE(1366)] = 4528, - [SMALL_STATE(1367)] = 4601, - [SMALL_STATE(1368)] = 4674, - [SMALL_STATE(1369)] = 4747, - [SMALL_STATE(1370)] = 4820, - [SMALL_STATE(1371)] = 4893, - [SMALL_STATE(1372)] = 4966, - [SMALL_STATE(1373)] = 5039, - [SMALL_STATE(1374)] = 5112, - [SMALL_STATE(1375)] = 5185, - [SMALL_STATE(1376)] = 5258, - [SMALL_STATE(1377)] = 5331, - [SMALL_STATE(1378)] = 5404, - [SMALL_STATE(1379)] = 5477, - [SMALL_STATE(1380)] = 5550, - [SMALL_STATE(1381)] = 5623, - [SMALL_STATE(1382)] = 5696, - [SMALL_STATE(1383)] = 5769, - [SMALL_STATE(1384)] = 5842, - [SMALL_STATE(1385)] = 5915, - [SMALL_STATE(1386)] = 5988, - [SMALL_STATE(1387)] = 6061, - [SMALL_STATE(1388)] = 6131, - [SMALL_STATE(1389)] = 6201, - [SMALL_STATE(1390)] = 6271, - [SMALL_STATE(1391)] = 6341, - [SMALL_STATE(1392)] = 6411, - [SMALL_STATE(1393)] = 6481, - [SMALL_STATE(1394)] = 6551, - [SMALL_STATE(1395)] = 6621, - [SMALL_STATE(1396)] = 6691, - [SMALL_STATE(1397)] = 6761, - [SMALL_STATE(1398)] = 6831, - [SMALL_STATE(1399)] = 6901, - [SMALL_STATE(1400)] = 6971, - [SMALL_STATE(1401)] = 7041, - [SMALL_STATE(1402)] = 7111, - [SMALL_STATE(1403)] = 7181, - [SMALL_STATE(1404)] = 7251, - [SMALL_STATE(1405)] = 7321, - [SMALL_STATE(1406)] = 7391, - [SMALL_STATE(1407)] = 7461, - [SMALL_STATE(1408)] = 7531, - [SMALL_STATE(1409)] = 7601, - [SMALL_STATE(1410)] = 7671, - [SMALL_STATE(1411)] = 7741, - [SMALL_STATE(1412)] = 7811, - [SMALL_STATE(1413)] = 7881, - [SMALL_STATE(1414)] = 7951, - [SMALL_STATE(1415)] = 8021, - [SMALL_STATE(1416)] = 8091, - [SMALL_STATE(1417)] = 8161, - [SMALL_STATE(1418)] = 8231, - [SMALL_STATE(1419)] = 8301, - [SMALL_STATE(1420)] = 8371, - [SMALL_STATE(1421)] = 8441, - [SMALL_STATE(1422)] = 8511, - [SMALL_STATE(1423)] = 8581, - [SMALL_STATE(1424)] = 8651, - [SMALL_STATE(1425)] = 8721, - [SMALL_STATE(1426)] = 8791, - [SMALL_STATE(1427)] = 8858, - [SMALL_STATE(1428)] = 8911, - [SMALL_STATE(1429)] = 8962, - [SMALL_STATE(1430)] = 9013, - [SMALL_STATE(1431)] = 9063, - [SMALL_STATE(1432)] = 9121, - [SMALL_STATE(1433)] = 9175, - [SMALL_STATE(1434)] = 9228, - [SMALL_STATE(1435)] = 9276, - [SMALL_STATE(1436)] = 9324, - [SMALL_STATE(1437)] = 9372, - [SMALL_STATE(1438)] = 9420, - [SMALL_STATE(1439)] = 9468, - [SMALL_STATE(1440)] = 9516, - [SMALL_STATE(1441)] = 9564, - [SMALL_STATE(1442)] = 9612, - [SMALL_STATE(1443)] = 9660, - [SMALL_STATE(1444)] = 9714, - [SMALL_STATE(1445)] = 9782, - [SMALL_STATE(1446)] = 9844, - [SMALL_STATE(1447)] = 9920, - [SMALL_STATE(1448)] = 9976, - [SMALL_STATE(1449)] = 10038, - [SMALL_STATE(1450)] = 10098, - [SMALL_STATE(1451)] = 10158, - [SMALL_STATE(1452)] = 10218, - [SMALL_STATE(1453)] = 10286, - [SMALL_STATE(1454)] = 10340, - [SMALL_STATE(1455)] = 10404, - [SMALL_STATE(1456)] = 10464, - [SMALL_STATE(1457)] = 10520, - [SMALL_STATE(1458)] = 10584, - [SMALL_STATE(1459)] = 10638, - [SMALL_STATE(1460)] = 10706, - [SMALL_STATE(1461)] = 10762, - [SMALL_STATE(1462)] = 10830, - [SMALL_STATE(1463)] = 10892, - [SMALL_STATE(1464)] = 10956, - [SMALL_STATE(1465)] = 11020, - [SMALL_STATE(1466)] = 11082, - [SMALL_STATE(1467)] = 11138, - [SMALL_STATE(1468)] = 11192, - [SMALL_STATE(1469)] = 11267, - [SMALL_STATE(1470)] = 11333, - [SMALL_STATE(1471)] = 11393, - [SMALL_STATE(1472)] = 11455, - [SMALL_STATE(1473)] = 11515, - [SMALL_STATE(1474)] = 11577, - [SMALL_STATE(1475)] = 11631, - [SMALL_STATE(1476)] = 11689, - [SMALL_STATE(1477)] = 11741, - [SMALL_STATE(1478)] = 11791, - [SMALL_STATE(1479)] = 11849, - [SMALL_STATE(1480)] = 11903, - [SMALL_STATE(1481)] = 11955, - [SMALL_STATE(1482)] = 12021, - [SMALL_STATE(1483)] = 12094, - [SMALL_STATE(1484)] = 12168, - [SMALL_STATE(1485)] = 12242, - [SMALL_STATE(1486)] = 12312, - [SMALL_STATE(1487)] = 12384, - [SMALL_STATE(1488)] = 12451, - [SMALL_STATE(1489)] = 12528, - [SMALL_STATE(1490)] = 12597, - [SMALL_STATE(1491)] = 12671, - [SMALL_STATE(1492)] = 12745, - [SMALL_STATE(1493)] = 12819, - [SMALL_STATE(1494)] = 12893, - [SMALL_STATE(1495)] = 12967, - [SMALL_STATE(1496)] = 13041, - [SMALL_STATE(1497)] = 13115, - [SMALL_STATE(1498)] = 13189, - [SMALL_STATE(1499)] = 13263, - [SMALL_STATE(1500)] = 13337, - [SMALL_STATE(1501)] = 13411, - [SMALL_STATE(1502)] = 13485, - [SMALL_STATE(1503)] = 13559, - [SMALL_STATE(1504)] = 13633, - [SMALL_STATE(1505)] = 13704, - [SMALL_STATE(1506)] = 13775, - [SMALL_STATE(1507)] = 13814, - [SMALL_STATE(1508)] = 13881, - [SMALL_STATE(1509)] = 13952, - [SMALL_STATE(1510)] = 13991, - [SMALL_STATE(1511)] = 14038, - [SMALL_STATE(1512)] = 14077, - [SMALL_STATE(1513)] = 14148, - [SMALL_STATE(1514)] = 14187, - [SMALL_STATE(1515)] = 14254, - [SMALL_STATE(1516)] = 14325, - [SMALL_STATE(1517)] = 14396, - [SMALL_STATE(1518)] = 14450, - [SMALL_STATE(1519)] = 14510, - [SMALL_STATE(1520)] = 14566, - [SMALL_STATE(1521)] = 14620, - [SMALL_STATE(1522)] = 14672, - [SMALL_STATE(1523)] = 14720, - [SMALL_STATE(1524)] = 14788, - [SMALL_STATE(1525)] = 14834, - [SMALL_STATE(1526)] = 14894, - [SMALL_STATE(1527)] = 14950, - [SMALL_STATE(1528)] = 15002, - [SMALL_STATE(1529)] = 15050, - [SMALL_STATE(1530)] = 15118, - [SMALL_STATE(1531)] = 15160, - [SMALL_STATE(1532)] = 15222, - [SMALL_STATE(1533)] = 15264, - [SMALL_STATE(1534)] = 15306, - [SMALL_STATE(1535)] = 15368, - [SMALL_STATE(1536)] = 15436, - [SMALL_STATE(1537)] = 15498, - [SMALL_STATE(1538)] = 15542, - [SMALL_STATE(1539)] = 15610, - [SMALL_STATE(1540)] = 15674, - [SMALL_STATE(1541)] = 15742, - [SMALL_STATE(1542)] = 15784, - [SMALL_STATE(1543)] = 15846, - [SMALL_STATE(1544)] = 15914, - [SMALL_STATE(1545)] = 15976, - [SMALL_STATE(1546)] = 16022, - [SMALL_STATE(1547)] = 16084, - [SMALL_STATE(1548)] = 16149, - [SMALL_STATE(1549)] = 16214, - [SMALL_STATE(1550)] = 16275, - [SMALL_STATE(1551)] = 16340, - [SMALL_STATE(1552)] = 16405, - [SMALL_STATE(1553)] = 16470, - [SMALL_STATE(1554)] = 16535, - [SMALL_STATE(1555)] = 16596, - [SMALL_STATE(1556)] = 16657, - [SMALL_STATE(1557)] = 16722, - [SMALL_STATE(1558)] = 16783, - [SMALL_STATE(1559)] = 16848, - [SMALL_STATE(1560)] = 16913, - [SMALL_STATE(1561)] = 16974, - [SMALL_STATE(1562)] = 17035, - [SMALL_STATE(1563)] = 17100, - [SMALL_STATE(1564)] = 17165, - [SMALL_STATE(1565)] = 17230, - [SMALL_STATE(1566)] = 17291, - [SMALL_STATE(1567)] = 17356, - [SMALL_STATE(1568)] = 17417, - [SMALL_STATE(1569)] = 17461, - [SMALL_STATE(1570)] = 17507, - [SMALL_STATE(1571)] = 17565, - [SMALL_STATE(1572)] = 17619, - [SMALL_STATE(1573)] = 17671, - [SMALL_STATE(1574)] = 17721, - [SMALL_STATE(1575)] = 17767, - [SMALL_STATE(1576)] = 17811, - [SMALL_STATE(1577)] = 17869, - [SMALL_STATE(1578)] = 17923, - [SMALL_STATE(1579)] = 17975, - [SMALL_STATE(1580)] = 18025, - [SMALL_STATE(1581)] = 18084, - [SMALL_STATE(1582)] = 18143, - [SMALL_STATE(1583)] = 18202, - [SMALL_STATE(1584)] = 18261, - [SMALL_STATE(1585)] = 18320, - [SMALL_STATE(1586)] = 18353, - [SMALL_STATE(1587)] = 18386, - [SMALL_STATE(1588)] = 18419, - [SMALL_STATE(1589)] = 18452, - [SMALL_STATE(1590)] = 18485, - [SMALL_STATE(1591)] = 18518, - [SMALL_STATE(1592)] = 18548, - [SMALL_STATE(1593)] = 18578, - [SMALL_STATE(1594)] = 18608, - [SMALL_STATE(1595)] = 18638, - [SMALL_STATE(1596)] = 18660, - [SMALL_STATE(1597)] = 18686, - [SMALL_STATE(1598)] = 18712, - [SMALL_STATE(1599)] = 18738, - [SMALL_STATE(1600)] = 18764, - [SMALL_STATE(1601)] = 18790, - [SMALL_STATE(1602)] = 18812, - [SMALL_STATE(1603)] = 18834, - [SMALL_STATE(1604)] = 18860, - [SMALL_STATE(1605)] = 18882, - [SMALL_STATE(1606)] = 18904, - [SMALL_STATE(1607)] = 18930, - [SMALL_STATE(1608)] = 18952, - [SMALL_STATE(1609)] = 18978, - [SMALL_STATE(1610)] = 19004, - [SMALL_STATE(1611)] = 19030, - [SMALL_STATE(1612)] = 19056, - [SMALL_STATE(1613)] = 19082, - [SMALL_STATE(1614)] = 19108, - [SMALL_STATE(1615)] = 19130, - [SMALL_STATE(1616)] = 19152, - [SMALL_STATE(1617)] = 19174, - [SMALL_STATE(1618)] = 19196, - [SMALL_STATE(1619)] = 19218, - [SMALL_STATE(1620)] = 19244, - [SMALL_STATE(1621)] = 19266, - [SMALL_STATE(1622)] = 19289, - [SMALL_STATE(1623)] = 19312, - [SMALL_STATE(1624)] = 19337, - [SMALL_STATE(1625)] = 19360, - [SMALL_STATE(1626)] = 19383, - [SMALL_STATE(1627)] = 19397, - [SMALL_STATE(1628)] = 19411, - [SMALL_STATE(1629)] = 19425, - [SMALL_STATE(1630)] = 19439, - [SMALL_STATE(1631)] = 19453, - [SMALL_STATE(1632)] = 19467, - [SMALL_STATE(1633)] = 19487, - [SMALL_STATE(1634)] = 19501, - [SMALL_STATE(1635)] = 19515, - [SMALL_STATE(1636)] = 19529, - [SMALL_STATE(1637)] = 19543, - [SMALL_STATE(1638)] = 19557, - [SMALL_STATE(1639)] = 19571, - [SMALL_STATE(1640)] = 19585, - [SMALL_STATE(1641)] = 19599, - [SMALL_STATE(1642)] = 19613, - [SMALL_STATE(1643)] = 19627, - [SMALL_STATE(1644)] = 19641, - [SMALL_STATE(1645)] = 19655, - [SMALL_STATE(1646)] = 19669, - [SMALL_STATE(1647)] = 19683, - [SMALL_STATE(1648)] = 19705, - [SMALL_STATE(1649)] = 19719, - [SMALL_STATE(1650)] = 19733, - [SMALL_STATE(1651)] = 19747, - [SMALL_STATE(1652)] = 19761, - [SMALL_STATE(1653)] = 19781, - [SMALL_STATE(1654)] = 19795, - [SMALL_STATE(1655)] = 19809, - [SMALL_STATE(1656)] = 19823, - [SMALL_STATE(1657)] = 19837, - [SMALL_STATE(1658)] = 19851, - [SMALL_STATE(1659)] = 19865, - [SMALL_STATE(1660)] = 19879, - [SMALL_STATE(1661)] = 19893, - [SMALL_STATE(1662)] = 19907, - [SMALL_STATE(1663)] = 19921, - [SMALL_STATE(1664)] = 19935, - [SMALL_STATE(1665)] = 19949, - [SMALL_STATE(1666)] = 19963, - [SMALL_STATE(1667)] = 19977, - [SMALL_STATE(1668)] = 19997, - [SMALL_STATE(1669)] = 20011, - [SMALL_STATE(1670)] = 20025, - [SMALL_STATE(1671)] = 20047, - [SMALL_STATE(1672)] = 20061, - [SMALL_STATE(1673)] = 20075, - [SMALL_STATE(1674)] = 20089, - [SMALL_STATE(1675)] = 20103, - [SMALL_STATE(1676)] = 20117, - [SMALL_STATE(1677)] = 20131, - [SMALL_STATE(1678)] = 20145, - [SMALL_STATE(1679)] = 20159, - [SMALL_STATE(1680)] = 20173, - [SMALL_STATE(1681)] = 20192, - [SMALL_STATE(1682)] = 20211, - [SMALL_STATE(1683)] = 20230, - [SMALL_STATE(1684)] = 20249, - [SMALL_STATE(1685)] = 20268, - [SMALL_STATE(1686)] = 20287, - [SMALL_STATE(1687)] = 20306, - [SMALL_STATE(1688)] = 20325, - [SMALL_STATE(1689)] = 20344, - [SMALL_STATE(1690)] = 20363, - [SMALL_STATE(1691)] = 20382, - [SMALL_STATE(1692)] = 20401, - [SMALL_STATE(1693)] = 20420, - [SMALL_STATE(1694)] = 20439, - [SMALL_STATE(1695)] = 20458, - [SMALL_STATE(1696)] = 20477, - [SMALL_STATE(1697)] = 20496, - [SMALL_STATE(1698)] = 20515, - [SMALL_STATE(1699)] = 20534, - [SMALL_STATE(1700)] = 20553, - [SMALL_STATE(1701)] = 20572, - [SMALL_STATE(1702)] = 20591, - [SMALL_STATE(1703)] = 20610, - [SMALL_STATE(1704)] = 20629, - [SMALL_STATE(1705)] = 20648, - [SMALL_STATE(1706)] = 20661, - [SMALL_STATE(1707)] = 20680, - [SMALL_STATE(1708)] = 20699, - [SMALL_STATE(1709)] = 20718, - [SMALL_STATE(1710)] = 20737, - [SMALL_STATE(1711)] = 20756, - [SMALL_STATE(1712)] = 20775, - [SMALL_STATE(1713)] = 20794, - [SMALL_STATE(1714)] = 20813, - [SMALL_STATE(1715)] = 20832, - [SMALL_STATE(1716)] = 20851, - [SMALL_STATE(1717)] = 20870, - [SMALL_STATE(1718)] = 20889, - [SMALL_STATE(1719)] = 20908, - [SMALL_STATE(1720)] = 20927, - [SMALL_STATE(1721)] = 20946, - [SMALL_STATE(1722)] = 20965, - [SMALL_STATE(1723)] = 20984, - [SMALL_STATE(1724)] = 21003, - [SMALL_STATE(1725)] = 21022, - [SMALL_STATE(1726)] = 21041, - [SMALL_STATE(1727)] = 21060, - [SMALL_STATE(1728)] = 21079, - [SMALL_STATE(1729)] = 21098, - [SMALL_STATE(1730)] = 21117, - [SMALL_STATE(1731)] = 21136, - [SMALL_STATE(1732)] = 21155, - [SMALL_STATE(1733)] = 21174, - [SMALL_STATE(1734)] = 21193, - [SMALL_STATE(1735)] = 21212, - [SMALL_STATE(1736)] = 21231, - [SMALL_STATE(1737)] = 21250, - [SMALL_STATE(1738)] = 21269, - [SMALL_STATE(1739)] = 21288, - [SMALL_STATE(1740)] = 21307, - [SMALL_STATE(1741)] = 21326, - [SMALL_STATE(1742)] = 21345, - [SMALL_STATE(1743)] = 21364, - [SMALL_STATE(1744)] = 21383, - [SMALL_STATE(1745)] = 21402, - [SMALL_STATE(1746)] = 21421, - [SMALL_STATE(1747)] = 21440, - [SMALL_STATE(1748)] = 21459, - [SMALL_STATE(1749)] = 21478, - [SMALL_STATE(1750)] = 21497, - [SMALL_STATE(1751)] = 21516, - [SMALL_STATE(1752)] = 21535, - [SMALL_STATE(1753)] = 21554, - [SMALL_STATE(1754)] = 21573, - [SMALL_STATE(1755)] = 21592, - [SMALL_STATE(1756)] = 21611, - [SMALL_STATE(1757)] = 21630, - [SMALL_STATE(1758)] = 21649, - [SMALL_STATE(1759)] = 21668, - [SMALL_STATE(1760)] = 21687, - [SMALL_STATE(1761)] = 21706, - [SMALL_STATE(1762)] = 21725, - [SMALL_STATE(1763)] = 21744, - [SMALL_STATE(1764)] = 21763, - [SMALL_STATE(1765)] = 21782, - [SMALL_STATE(1766)] = 21801, - [SMALL_STATE(1767)] = 21820, - [SMALL_STATE(1768)] = 21839, - [SMALL_STATE(1769)] = 21858, - [SMALL_STATE(1770)] = 21877, - [SMALL_STATE(1771)] = 21896, - [SMALL_STATE(1772)] = 21915, - [SMALL_STATE(1773)] = 21934, - [SMALL_STATE(1774)] = 21953, - [SMALL_STATE(1775)] = 21972, - [SMALL_STATE(1776)] = 21991, - [SMALL_STATE(1777)] = 22010, - [SMALL_STATE(1778)] = 22029, - [SMALL_STATE(1779)] = 22048, - [SMALL_STATE(1780)] = 22067, - [SMALL_STATE(1781)] = 22086, - [SMALL_STATE(1782)] = 22105, - [SMALL_STATE(1783)] = 22124, - [SMALL_STATE(1784)] = 22143, - [SMALL_STATE(1785)] = 22162, - [SMALL_STATE(1786)] = 22181, - [SMALL_STATE(1787)] = 22200, - [SMALL_STATE(1788)] = 22219, - [SMALL_STATE(1789)] = 22238, - [SMALL_STATE(1790)] = 22257, - [SMALL_STATE(1791)] = 22276, - [SMALL_STATE(1792)] = 22295, - [SMALL_STATE(1793)] = 22314, - [SMALL_STATE(1794)] = 22333, - [SMALL_STATE(1795)] = 22352, - [SMALL_STATE(1796)] = 22371, - [SMALL_STATE(1797)] = 22390, - [SMALL_STATE(1798)] = 22409, - [SMALL_STATE(1799)] = 22428, - [SMALL_STATE(1800)] = 22447, - [SMALL_STATE(1801)] = 22466, - [SMALL_STATE(1802)] = 22482, - [SMALL_STATE(1803)] = 22498, - [SMALL_STATE(1804)] = 22514, - [SMALL_STATE(1805)] = 22524, - [SMALL_STATE(1806)] = 22540, - [SMALL_STATE(1807)] = 22556, - [SMALL_STATE(1808)] = 22572, - [SMALL_STATE(1809)] = 22588, - [SMALL_STATE(1810)] = 22604, - [SMALL_STATE(1811)] = 22620, - [SMALL_STATE(1812)] = 22636, - [SMALL_STATE(1813)] = 22652, - [SMALL_STATE(1814)] = 22668, - [SMALL_STATE(1815)] = 22684, - [SMALL_STATE(1816)] = 22700, - [SMALL_STATE(1817)] = 22714, - [SMALL_STATE(1818)] = 22726, - [SMALL_STATE(1819)] = 22742, - [SMALL_STATE(1820)] = 22758, - [SMALL_STATE(1821)] = 22774, - [SMALL_STATE(1822)] = 22790, - [SMALL_STATE(1823)] = 22806, - [SMALL_STATE(1824)] = 22822, - [SMALL_STATE(1825)] = 22838, - [SMALL_STATE(1826)] = 22854, - [SMALL_STATE(1827)] = 22870, - [SMALL_STATE(1828)] = 22886, - [SMALL_STATE(1829)] = 22902, - [SMALL_STATE(1830)] = 22918, - [SMALL_STATE(1831)] = 22934, - [SMALL_STATE(1832)] = 22950, - [SMALL_STATE(1833)] = 22966, - [SMALL_STATE(1834)] = 22982, - [SMALL_STATE(1835)] = 22998, - [SMALL_STATE(1836)] = 23014, - [SMALL_STATE(1837)] = 23030, - [SMALL_STATE(1838)] = 23046, - [SMALL_STATE(1839)] = 23062, - [SMALL_STATE(1840)] = 23078, - [SMALL_STATE(1841)] = 23094, - [SMALL_STATE(1842)] = 23110, - [SMALL_STATE(1843)] = 23126, - [SMALL_STATE(1844)] = 23142, - [SMALL_STATE(1845)] = 23158, - [SMALL_STATE(1846)] = 23174, - [SMALL_STATE(1847)] = 23190, - [SMALL_STATE(1848)] = 23206, - [SMALL_STATE(1849)] = 23222, - [SMALL_STATE(1850)] = 23238, - [SMALL_STATE(1851)] = 23254, - [SMALL_STATE(1852)] = 23270, - [SMALL_STATE(1853)] = 23286, - [SMALL_STATE(1854)] = 23302, - [SMALL_STATE(1855)] = 23318, - [SMALL_STATE(1856)] = 23334, - [SMALL_STATE(1857)] = 23350, - [SMALL_STATE(1858)] = 23364, - [SMALL_STATE(1859)] = 23380, - [SMALL_STATE(1860)] = 23396, - [SMALL_STATE(1861)] = 23412, - [SMALL_STATE(1862)] = 23428, - [SMALL_STATE(1863)] = 23442, - [SMALL_STATE(1864)] = 23458, - [SMALL_STATE(1865)] = 23474, - [SMALL_STATE(1866)] = 23490, - [SMALL_STATE(1867)] = 23506, - [SMALL_STATE(1868)] = 23522, - [SMALL_STATE(1869)] = 23538, - [SMALL_STATE(1870)] = 23554, - [SMALL_STATE(1871)] = 23570, - [SMALL_STATE(1872)] = 23586, - [SMALL_STATE(1873)] = 23602, - [SMALL_STATE(1874)] = 23618, - [SMALL_STATE(1875)] = 23634, - [SMALL_STATE(1876)] = 23650, - [SMALL_STATE(1877)] = 23666, - [SMALL_STATE(1878)] = 23682, - [SMALL_STATE(1879)] = 23698, - [SMALL_STATE(1880)] = 23714, - [SMALL_STATE(1881)] = 23730, - [SMALL_STATE(1882)] = 23746, - [SMALL_STATE(1883)] = 23762, - [SMALL_STATE(1884)] = 23778, - [SMALL_STATE(1885)] = 23792, - [SMALL_STATE(1886)] = 23808, - [SMALL_STATE(1887)] = 23824, - [SMALL_STATE(1888)] = 23840, - [SMALL_STATE(1889)] = 23856, - [SMALL_STATE(1890)] = 23872, - [SMALL_STATE(1891)] = 23888, - [SMALL_STATE(1892)] = 23904, - [SMALL_STATE(1893)] = 23920, - [SMALL_STATE(1894)] = 23936, - [SMALL_STATE(1895)] = 23952, - [SMALL_STATE(1896)] = 23968, - [SMALL_STATE(1897)] = 23984, - [SMALL_STATE(1898)] = 24000, - [SMALL_STATE(1899)] = 24016, - [SMALL_STATE(1900)] = 24032, - [SMALL_STATE(1901)] = 24048, - [SMALL_STATE(1902)] = 24064, - [SMALL_STATE(1903)] = 24080, - [SMALL_STATE(1904)] = 24096, - [SMALL_STATE(1905)] = 24112, - [SMALL_STATE(1906)] = 24128, - [SMALL_STATE(1907)] = 24144, - [SMALL_STATE(1908)] = 24160, - [SMALL_STATE(1909)] = 24176, - [SMALL_STATE(1910)] = 24192, - [SMALL_STATE(1911)] = 24208, - [SMALL_STATE(1912)] = 24224, - [SMALL_STATE(1913)] = 24240, - [SMALL_STATE(1914)] = 24254, - [SMALL_STATE(1915)] = 24270, - [SMALL_STATE(1916)] = 24286, - [SMALL_STATE(1917)] = 24302, - [SMALL_STATE(1918)] = 24318, - [SMALL_STATE(1919)] = 24334, - [SMALL_STATE(1920)] = 24350, - [SMALL_STATE(1921)] = 24366, - [SMALL_STATE(1922)] = 24382, - [SMALL_STATE(1923)] = 24398, - [SMALL_STATE(1924)] = 24408, - [SMALL_STATE(1925)] = 24424, - [SMALL_STATE(1926)] = 24440, - [SMALL_STATE(1927)] = 24454, - [SMALL_STATE(1928)] = 24470, - [SMALL_STATE(1929)] = 24486, - [SMALL_STATE(1930)] = 24502, - [SMALL_STATE(1931)] = 24518, - [SMALL_STATE(1932)] = 24534, - [SMALL_STATE(1933)] = 24550, - [SMALL_STATE(1934)] = 24566, - [SMALL_STATE(1935)] = 24582, - [SMALL_STATE(1936)] = 24596, - [SMALL_STATE(1937)] = 24606, - [SMALL_STATE(1938)] = 24622, - [SMALL_STATE(1939)] = 24638, - [SMALL_STATE(1940)] = 24654, - [SMALL_STATE(1941)] = 24670, - [SMALL_STATE(1942)] = 24686, - [SMALL_STATE(1943)] = 24700, - [SMALL_STATE(1944)] = 24716, - [SMALL_STATE(1945)] = 24732, - [SMALL_STATE(1946)] = 24748, - [SMALL_STATE(1947)] = 24764, - [SMALL_STATE(1948)] = 24780, - [SMALL_STATE(1949)] = 24796, - [SMALL_STATE(1950)] = 24812, - [SMALL_STATE(1951)] = 24828, - [SMALL_STATE(1952)] = 24844, - [SMALL_STATE(1953)] = 24860, - [SMALL_STATE(1954)] = 24876, - [SMALL_STATE(1955)] = 24892, - [SMALL_STATE(1956)] = 24908, - [SMALL_STATE(1957)] = 24924, - [SMALL_STATE(1958)] = 24940, - [SMALL_STATE(1959)] = 24956, - [SMALL_STATE(1960)] = 24972, - [SMALL_STATE(1961)] = 24988, - [SMALL_STATE(1962)] = 25004, - [SMALL_STATE(1963)] = 25020, - [SMALL_STATE(1964)] = 25036, - [SMALL_STATE(1965)] = 25052, - [SMALL_STATE(1966)] = 25068, - [SMALL_STATE(1967)] = 25084, - [SMALL_STATE(1968)] = 25100, - [SMALL_STATE(1969)] = 25116, - [SMALL_STATE(1970)] = 25132, - [SMALL_STATE(1971)] = 25148, - [SMALL_STATE(1972)] = 25164, - [SMALL_STATE(1973)] = 25180, - [SMALL_STATE(1974)] = 25196, - [SMALL_STATE(1975)] = 25212, - [SMALL_STATE(1976)] = 25228, - [SMALL_STATE(1977)] = 25244, - [SMALL_STATE(1978)] = 25260, - [SMALL_STATE(1979)] = 25276, - [SMALL_STATE(1980)] = 25292, - [SMALL_STATE(1981)] = 25308, - [SMALL_STATE(1982)] = 25324, - [SMALL_STATE(1983)] = 25340, - [SMALL_STATE(1984)] = 25356, - [SMALL_STATE(1985)] = 25372, - [SMALL_STATE(1986)] = 25388, - [SMALL_STATE(1987)] = 25404, - [SMALL_STATE(1988)] = 25420, - [SMALL_STATE(1989)] = 25436, - [SMALL_STATE(1990)] = 25452, - [SMALL_STATE(1991)] = 25468, - [SMALL_STATE(1992)] = 25484, - [SMALL_STATE(1993)] = 25498, - [SMALL_STATE(1994)] = 25514, - [SMALL_STATE(1995)] = 25528, - [SMALL_STATE(1996)] = 25544, - [SMALL_STATE(1997)] = 25560, - [SMALL_STATE(1998)] = 25574, - [SMALL_STATE(1999)] = 25590, - [SMALL_STATE(2000)] = 25606, - [SMALL_STATE(2001)] = 25622, - [SMALL_STATE(2002)] = 25638, - [SMALL_STATE(2003)] = 25654, - [SMALL_STATE(2004)] = 25664, - [SMALL_STATE(2005)] = 25678, - [SMALL_STATE(2006)] = 25694, - [SMALL_STATE(2007)] = 25708, - [SMALL_STATE(2008)] = 25724, - [SMALL_STATE(2009)] = 25740, - [SMALL_STATE(2010)] = 25756, - [SMALL_STATE(2011)] = 25772, - [SMALL_STATE(2012)] = 25788, - [SMALL_STATE(2013)] = 25804, - [SMALL_STATE(2014)] = 25820, - [SMALL_STATE(2015)] = 25836, - [SMALL_STATE(2016)] = 25850, - [SMALL_STATE(2017)] = 25866, - [SMALL_STATE(2018)] = 25882, - [SMALL_STATE(2019)] = 25896, - [SMALL_STATE(2020)] = 25910, - [SMALL_STATE(2021)] = 25924, - [SMALL_STATE(2022)] = 25938, - [SMALL_STATE(2023)] = 25954, - [SMALL_STATE(2024)] = 25970, - [SMALL_STATE(2025)] = 25986, - [SMALL_STATE(2026)] = 26002, - [SMALL_STATE(2027)] = 26018, - [SMALL_STATE(2028)] = 26034, - [SMALL_STATE(2029)] = 26050, - [SMALL_STATE(2030)] = 26066, - [SMALL_STATE(2031)] = 26082, - [SMALL_STATE(2032)] = 26098, - [SMALL_STATE(2033)] = 26114, - [SMALL_STATE(2034)] = 26130, - [SMALL_STATE(2035)] = 26146, - [SMALL_STATE(2036)] = 26162, - [SMALL_STATE(2037)] = 26178, - [SMALL_STATE(2038)] = 26194, - [SMALL_STATE(2039)] = 26208, - [SMALL_STATE(2040)] = 26224, - [SMALL_STATE(2041)] = 26240, - [SMALL_STATE(2042)] = 26256, - [SMALL_STATE(2043)] = 26272, - [SMALL_STATE(2044)] = 26288, - [SMALL_STATE(2045)] = 26304, - [SMALL_STATE(2046)] = 26320, - [SMALL_STATE(2047)] = 26336, - [SMALL_STATE(2048)] = 26352, - [SMALL_STATE(2049)] = 26368, - [SMALL_STATE(2050)] = 26384, - [SMALL_STATE(2051)] = 26400, - [SMALL_STATE(2052)] = 26410, - [SMALL_STATE(2053)] = 26426, - [SMALL_STATE(2054)] = 26439, - [SMALL_STATE(2055)] = 26452, - [SMALL_STATE(2056)] = 26465, - [SMALL_STATE(2057)] = 26476, - [SMALL_STATE(2058)] = 26489, - [SMALL_STATE(2059)] = 26498, - [SMALL_STATE(2060)] = 26511, - [SMALL_STATE(2061)] = 26524, - [SMALL_STATE(2062)] = 26537, - [SMALL_STATE(2063)] = 26550, - [SMALL_STATE(2064)] = 26563, - [SMALL_STATE(2065)] = 26572, - [SMALL_STATE(2066)] = 26585, - [SMALL_STATE(2067)] = 26598, - [SMALL_STATE(2068)] = 26607, - [SMALL_STATE(2069)] = 26620, - [SMALL_STATE(2070)] = 26633, - [SMALL_STATE(2071)] = 26646, - [SMALL_STATE(2072)] = 26659, - [SMALL_STATE(2073)] = 26672, - [SMALL_STATE(2074)] = 26685, - [SMALL_STATE(2075)] = 26694, - [SMALL_STATE(2076)] = 26707, - [SMALL_STATE(2077)] = 26720, - [SMALL_STATE(2078)] = 26729, - [SMALL_STATE(2079)] = 26738, - [SMALL_STATE(2080)] = 26751, - [SMALL_STATE(2081)] = 26764, - [SMALL_STATE(2082)] = 26777, - [SMALL_STATE(2083)] = 26790, - [SMALL_STATE(2084)] = 26803, - [SMALL_STATE(2085)] = 26816, - [SMALL_STATE(2086)] = 26829, - [SMALL_STATE(2087)] = 26842, - [SMALL_STATE(2088)] = 26855, - [SMALL_STATE(2089)] = 26868, - [SMALL_STATE(2090)] = 26881, - [SMALL_STATE(2091)] = 26894, - [SMALL_STATE(2092)] = 26907, - [SMALL_STATE(2093)] = 26920, - [SMALL_STATE(2094)] = 26933, - [SMALL_STATE(2095)] = 26946, - [SMALL_STATE(2096)] = 26955, - [SMALL_STATE(2097)] = 26968, - [SMALL_STATE(2098)] = 26977, - [SMALL_STATE(2099)] = 26990, - [SMALL_STATE(2100)] = 27003, - [SMALL_STATE(2101)] = 27016, - [SMALL_STATE(2102)] = 27029, - [SMALL_STATE(2103)] = 27042, - [SMALL_STATE(2104)] = 27055, - [SMALL_STATE(2105)] = 27068, - [SMALL_STATE(2106)] = 27081, - [SMALL_STATE(2107)] = 27094, - [SMALL_STATE(2108)] = 27103, - [SMALL_STATE(2109)] = 27116, - [SMALL_STATE(2110)] = 27129, - [SMALL_STATE(2111)] = 27142, - [SMALL_STATE(2112)] = 27155, - [SMALL_STATE(2113)] = 27168, - [SMALL_STATE(2114)] = 27181, - [SMALL_STATE(2115)] = 27194, - [SMALL_STATE(2116)] = 27207, - [SMALL_STATE(2117)] = 27220, - [SMALL_STATE(2118)] = 27229, - [SMALL_STATE(2119)] = 27242, - [SMALL_STATE(2120)] = 27255, - [SMALL_STATE(2121)] = 27268, - [SMALL_STATE(2122)] = 27281, - [SMALL_STATE(2123)] = 27294, - [SMALL_STATE(2124)] = 27307, - [SMALL_STATE(2125)] = 27320, - [SMALL_STATE(2126)] = 27333, - [SMALL_STATE(2127)] = 27346, - [SMALL_STATE(2128)] = 27359, - [SMALL_STATE(2129)] = 27372, - [SMALL_STATE(2130)] = 27383, - [SMALL_STATE(2131)] = 27396, - [SMALL_STATE(2132)] = 27409, - [SMALL_STATE(2133)] = 27418, - [SMALL_STATE(2134)] = 27431, - [SMALL_STATE(2135)] = 27444, - [SMALL_STATE(2136)] = 27457, - [SMALL_STATE(2137)] = 27470, - [SMALL_STATE(2138)] = 27483, - [SMALL_STATE(2139)] = 27496, - [SMALL_STATE(2140)] = 27505, - [SMALL_STATE(2141)] = 27518, - [SMALL_STATE(2142)] = 27531, - [SMALL_STATE(2143)] = 27540, - [SMALL_STATE(2144)] = 27553, - [SMALL_STATE(2145)] = 27566, - [SMALL_STATE(2146)] = 27579, - [SMALL_STATE(2147)] = 27592, - [SMALL_STATE(2148)] = 27605, - [SMALL_STATE(2149)] = 27618, - [SMALL_STATE(2150)] = 27631, - [SMALL_STATE(2151)] = 27644, - [SMALL_STATE(2152)] = 27657, - [SMALL_STATE(2153)] = 27670, - [SMALL_STATE(2154)] = 27683, - [SMALL_STATE(2155)] = 27696, - [SMALL_STATE(2156)] = 27709, - [SMALL_STATE(2157)] = 27722, - [SMALL_STATE(2158)] = 27735, - [SMALL_STATE(2159)] = 27748, - [SMALL_STATE(2160)] = 27761, - [SMALL_STATE(2161)] = 27774, - [SMALL_STATE(2162)] = 27787, - [SMALL_STATE(2163)] = 27800, - [SMALL_STATE(2164)] = 27813, - [SMALL_STATE(2165)] = 27826, - [SMALL_STATE(2166)] = 27839, - [SMALL_STATE(2167)] = 27852, - [SMALL_STATE(2168)] = 27865, - [SMALL_STATE(2169)] = 27878, - [SMALL_STATE(2170)] = 27891, - [SMALL_STATE(2171)] = 27904, - [SMALL_STATE(2172)] = 27917, - [SMALL_STATE(2173)] = 27930, - [SMALL_STATE(2174)] = 27943, - [SMALL_STATE(2175)] = 27956, - [SMALL_STATE(2176)] = 27969, - [SMALL_STATE(2177)] = 27982, - [SMALL_STATE(2178)] = 27995, - [SMALL_STATE(2179)] = 28008, - [SMALL_STATE(2180)] = 28021, - [SMALL_STATE(2181)] = 28034, - [SMALL_STATE(2182)] = 28047, - [SMALL_STATE(2183)] = 28060, - [SMALL_STATE(2184)] = 28073, - [SMALL_STATE(2185)] = 28086, - [SMALL_STATE(2186)] = 28099, - [SMALL_STATE(2187)] = 28112, - [SMALL_STATE(2188)] = 28125, - [SMALL_STATE(2189)] = 28138, - [SMALL_STATE(2190)] = 28147, - [SMALL_STATE(2191)] = 28160, - [SMALL_STATE(2192)] = 28170, - [SMALL_STATE(2193)] = 28180, - [SMALL_STATE(2194)] = 28190, - [SMALL_STATE(2195)] = 28200, - [SMALL_STATE(2196)] = 28210, - [SMALL_STATE(2197)] = 28220, - [SMALL_STATE(2198)] = 28230, - [SMALL_STATE(2199)] = 28240, - [SMALL_STATE(2200)] = 28250, - [SMALL_STATE(2201)] = 28258, - [SMALL_STATE(2202)] = 28266, - [SMALL_STATE(2203)] = 28274, - [SMALL_STATE(2204)] = 28282, - [SMALL_STATE(2205)] = 28292, - [SMALL_STATE(2206)] = 28302, - [SMALL_STATE(2207)] = 28312, - [SMALL_STATE(2208)] = 28322, - [SMALL_STATE(2209)] = 28332, - [SMALL_STATE(2210)] = 28342, - [SMALL_STATE(2211)] = 28352, - [SMALL_STATE(2212)] = 28362, - [SMALL_STATE(2213)] = 28372, - [SMALL_STATE(2214)] = 28380, - [SMALL_STATE(2215)] = 28390, - [SMALL_STATE(2216)] = 28400, - [SMALL_STATE(2217)] = 28410, - [SMALL_STATE(2218)] = 28420, - [SMALL_STATE(2219)] = 28428, - [SMALL_STATE(2220)] = 28438, - [SMALL_STATE(2221)] = 28448, - [SMALL_STATE(2222)] = 28456, - [SMALL_STATE(2223)] = 28466, - [SMALL_STATE(2224)] = 28474, - [SMALL_STATE(2225)] = 28482, - [SMALL_STATE(2226)] = 28490, - [SMALL_STATE(2227)] = 28500, - [SMALL_STATE(2228)] = 28510, - [SMALL_STATE(2229)] = 28520, - [SMALL_STATE(2230)] = 28530, - [SMALL_STATE(2231)] = 28540, - [SMALL_STATE(2232)] = 28548, - [SMALL_STATE(2233)] = 28558, - [SMALL_STATE(2234)] = 28568, - [SMALL_STATE(2235)] = 28578, - [SMALL_STATE(2236)] = 28588, - [SMALL_STATE(2237)] = 28598, - [SMALL_STATE(2238)] = 28608, - [SMALL_STATE(2239)] = 28618, - [SMALL_STATE(2240)] = 28625, - [SMALL_STATE(2241)] = 28632, - [SMALL_STATE(2242)] = 28639, - [SMALL_STATE(2243)] = 28646, - [SMALL_STATE(2244)] = 28653, - [SMALL_STATE(2245)] = 28660, - [SMALL_STATE(2246)] = 28667, - [SMALL_STATE(2247)] = 28674, - [SMALL_STATE(2248)] = 28681, - [SMALL_STATE(2249)] = 28688, - [SMALL_STATE(2250)] = 28695, - [SMALL_STATE(2251)] = 28702, - [SMALL_STATE(2252)] = 28709, - [SMALL_STATE(2253)] = 28716, - [SMALL_STATE(2254)] = 28723, - [SMALL_STATE(2255)] = 28730, - [SMALL_STATE(2256)] = 28737, - [SMALL_STATE(2257)] = 28744, - [SMALL_STATE(2258)] = 28751, - [SMALL_STATE(2259)] = 28758, - [SMALL_STATE(2260)] = 28765, - [SMALL_STATE(2261)] = 28772, - [SMALL_STATE(2262)] = 28779, - [SMALL_STATE(2263)] = 28786, - [SMALL_STATE(2264)] = 28793, - [SMALL_STATE(2265)] = 28800, - [SMALL_STATE(2266)] = 28807, - [SMALL_STATE(2267)] = 28814, - [SMALL_STATE(2268)] = 28821, - [SMALL_STATE(2269)] = 28828, - [SMALL_STATE(2270)] = 28835, - [SMALL_STATE(2271)] = 28842, - [SMALL_STATE(2272)] = 28849, - [SMALL_STATE(2273)] = 28856, - [SMALL_STATE(2274)] = 28863, - [SMALL_STATE(2275)] = 28870, - [SMALL_STATE(2276)] = 28877, - [SMALL_STATE(2277)] = 28884, - [SMALL_STATE(2278)] = 28891, - [SMALL_STATE(2279)] = 28898, - [SMALL_STATE(2280)] = 28905, - [SMALL_STATE(2281)] = 28912, - [SMALL_STATE(2282)] = 28919, - [SMALL_STATE(2283)] = 28926, - [SMALL_STATE(2284)] = 28933, - [SMALL_STATE(2285)] = 28940, - [SMALL_STATE(2286)] = 28947, - [SMALL_STATE(2287)] = 28954, - [SMALL_STATE(2288)] = 28961, - [SMALL_STATE(2289)] = 28968, - [SMALL_STATE(2290)] = 28975, - [SMALL_STATE(2291)] = 28982, - [SMALL_STATE(2292)] = 28989, - [SMALL_STATE(2293)] = 28996, - [SMALL_STATE(2294)] = 29003, - [SMALL_STATE(2295)] = 29010, - [SMALL_STATE(2296)] = 29017, - [SMALL_STATE(2297)] = 29024, - [SMALL_STATE(2298)] = 29031, - [SMALL_STATE(2299)] = 29038, - [SMALL_STATE(2300)] = 29045, - [SMALL_STATE(2301)] = 29052, - [SMALL_STATE(2302)] = 29059, - [SMALL_STATE(2303)] = 29066, - [SMALL_STATE(2304)] = 29073, - [SMALL_STATE(2305)] = 29080, - [SMALL_STATE(2306)] = 29087, - [SMALL_STATE(2307)] = 29094, - [SMALL_STATE(2308)] = 29101, - [SMALL_STATE(2309)] = 29108, - [SMALL_STATE(2310)] = 29115, - [SMALL_STATE(2311)] = 29122, - [SMALL_STATE(2312)] = 29129, - [SMALL_STATE(2313)] = 29136, - [SMALL_STATE(2314)] = 29143, - [SMALL_STATE(2315)] = 29150, - [SMALL_STATE(2316)] = 29157, - [SMALL_STATE(2317)] = 29164, - [SMALL_STATE(2318)] = 29171, - [SMALL_STATE(2319)] = 29178, - [SMALL_STATE(2320)] = 29185, - [SMALL_STATE(2321)] = 29192, - [SMALL_STATE(2322)] = 29199, - [SMALL_STATE(2323)] = 29206, - [SMALL_STATE(2324)] = 29213, - [SMALL_STATE(2325)] = 29220, - [SMALL_STATE(2326)] = 29227, - [SMALL_STATE(2327)] = 29234, - [SMALL_STATE(2328)] = 29241, - [SMALL_STATE(2329)] = 29248, - [SMALL_STATE(2330)] = 29255, - [SMALL_STATE(2331)] = 29262, - [SMALL_STATE(2332)] = 29269, - [SMALL_STATE(2333)] = 29276, - [SMALL_STATE(2334)] = 29283, - [SMALL_STATE(2335)] = 29290, - [SMALL_STATE(2336)] = 29297, - [SMALL_STATE(2337)] = 29304, - [SMALL_STATE(2338)] = 29311, - [SMALL_STATE(2339)] = 29318, - [SMALL_STATE(2340)] = 29325, - [SMALL_STATE(2341)] = 29332, - [SMALL_STATE(2342)] = 29339, - [SMALL_STATE(2343)] = 29346, - [SMALL_STATE(2344)] = 29353, - [SMALL_STATE(2345)] = 29360, - [SMALL_STATE(2346)] = 29367, - [SMALL_STATE(2347)] = 29374, - [SMALL_STATE(2348)] = 29381, - [SMALL_STATE(2349)] = 29388, - [SMALL_STATE(2350)] = 29395, - [SMALL_STATE(2351)] = 29402, - [SMALL_STATE(2352)] = 29409, - [SMALL_STATE(2353)] = 29416, - [SMALL_STATE(2354)] = 29423, - [SMALL_STATE(2355)] = 29430, - [SMALL_STATE(2356)] = 29437, - [SMALL_STATE(2357)] = 29444, - [SMALL_STATE(2358)] = 29451, - [SMALL_STATE(2359)] = 29458, - [SMALL_STATE(2360)] = 29465, - [SMALL_STATE(2361)] = 29472, - [SMALL_STATE(2362)] = 29479, - [SMALL_STATE(2363)] = 29486, - [SMALL_STATE(2364)] = 29493, - [SMALL_STATE(2365)] = 29500, - [SMALL_STATE(2366)] = 29507, - [SMALL_STATE(2367)] = 29514, - [SMALL_STATE(2368)] = 29521, - [SMALL_STATE(2369)] = 29528, - [SMALL_STATE(2370)] = 29535, - [SMALL_STATE(2371)] = 29542, - [SMALL_STATE(2372)] = 29549, - [SMALL_STATE(2373)] = 29556, - [SMALL_STATE(2374)] = 29563, - [SMALL_STATE(2375)] = 29570, + [SMALL_STATE(1306)] = 75, + [SMALL_STATE(1307)] = 148, + [SMALL_STATE(1308)] = 222, + [SMALL_STATE(1309)] = 296, + [SMALL_STATE(1310)] = 370, + [SMALL_STATE(1311)] = 444, + [SMALL_STATE(1312)] = 518, + [SMALL_STATE(1313)] = 592, + [SMALL_STATE(1314)] = 666, + [SMALL_STATE(1315)] = 740, + [SMALL_STATE(1316)] = 807, + [SMALL_STATE(1317)] = 874, + [SMALL_STATE(1318)] = 941, + [SMALL_STATE(1319)] = 1008, + [SMALL_STATE(1320)] = 1075, + [SMALL_STATE(1321)] = 1142, + [SMALL_STATE(1322)] = 1209, + [SMALL_STATE(1323)] = 1276, + [SMALL_STATE(1324)] = 1346, + [SMALL_STATE(1325)] = 1418, + [SMALL_STATE(1326)] = 1488, + [SMALL_STATE(1327)] = 1560, + [SMALL_STATE(1328)] = 1645, + [SMALL_STATE(1329)] = 1732, + [SMALL_STATE(1330)] = 1819, + [SMALL_STATE(1331)] = 1906, + [SMALL_STATE(1332)] = 1986, + [SMALL_STATE(1333)] = 2066, + [SMALL_STATE(1334)] = 2146, + [SMALL_STATE(1335)] = 2226, + [SMALL_STATE(1336)] = 2306, + [SMALL_STATE(1337)] = 2386, + [SMALL_STATE(1338)] = 2466, + [SMALL_STATE(1339)] = 2546, + [SMALL_STATE(1340)] = 2626, + [SMALL_STATE(1341)] = 2703, + [SMALL_STATE(1342)] = 2780, + [SMALL_STATE(1343)] = 2857, + [SMALL_STATE(1344)] = 2934, + [SMALL_STATE(1345)] = 3011, + [SMALL_STATE(1346)] = 3088, + [SMALL_STATE(1347)] = 3165, + [SMALL_STATE(1348)] = 3242, + [SMALL_STATE(1349)] = 3319, + [SMALL_STATE(1350)] = 3396, + [SMALL_STATE(1351)] = 3473, + [SMALL_STATE(1352)] = 3550, + [SMALL_STATE(1353)] = 3627, + [SMALL_STATE(1354)] = 3701, + [SMALL_STATE(1355)] = 3775, + [SMALL_STATE(1356)] = 3849, + [SMALL_STATE(1357)] = 3923, + [SMALL_STATE(1358)] = 3997, + [SMALL_STATE(1359)] = 4071, + [SMALL_STATE(1360)] = 4145, + [SMALL_STATE(1361)] = 4219, + [SMALL_STATE(1362)] = 4293, + [SMALL_STATE(1363)] = 4367, + [SMALL_STATE(1364)] = 4441, + [SMALL_STATE(1365)] = 4515, + [SMALL_STATE(1366)] = 4589, + [SMALL_STATE(1367)] = 4663, + [SMALL_STATE(1368)] = 4737, + [SMALL_STATE(1369)] = 4811, + [SMALL_STATE(1370)] = 4885, + [SMALL_STATE(1371)] = 4959, + [SMALL_STATE(1372)] = 5033, + [SMALL_STATE(1373)] = 5107, + [SMALL_STATE(1374)] = 5181, + [SMALL_STATE(1375)] = 5255, + [SMALL_STATE(1376)] = 5329, + [SMALL_STATE(1377)] = 5403, + [SMALL_STATE(1378)] = 5477, + [SMALL_STATE(1379)] = 5551, + [SMALL_STATE(1380)] = 5625, + [SMALL_STATE(1381)] = 5699, + [SMALL_STATE(1382)] = 5773, + [SMALL_STATE(1383)] = 5847, + [SMALL_STATE(1384)] = 5921, + [SMALL_STATE(1385)] = 5995, + [SMALL_STATE(1386)] = 6069, + [SMALL_STATE(1387)] = 6143, + [SMALL_STATE(1388)] = 6214, + [SMALL_STATE(1389)] = 6285, + [SMALL_STATE(1390)] = 6356, + [SMALL_STATE(1391)] = 6427, + [SMALL_STATE(1392)] = 6498, + [SMALL_STATE(1393)] = 6569, + [SMALL_STATE(1394)] = 6640, + [SMALL_STATE(1395)] = 6711, + [SMALL_STATE(1396)] = 6782, + [SMALL_STATE(1397)] = 6853, + [SMALL_STATE(1398)] = 6924, + [SMALL_STATE(1399)] = 6995, + [SMALL_STATE(1400)] = 7066, + [SMALL_STATE(1401)] = 7137, + [SMALL_STATE(1402)] = 7208, + [SMALL_STATE(1403)] = 7279, + [SMALL_STATE(1404)] = 7350, + [SMALL_STATE(1405)] = 7421, + [SMALL_STATE(1406)] = 7492, + [SMALL_STATE(1407)] = 7563, + [SMALL_STATE(1408)] = 7634, + [SMALL_STATE(1409)] = 7705, + [SMALL_STATE(1410)] = 7776, + [SMALL_STATE(1411)] = 7847, + [SMALL_STATE(1412)] = 7918, + [SMALL_STATE(1413)] = 7989, + [SMALL_STATE(1414)] = 8060, + [SMALL_STATE(1415)] = 8131, + [SMALL_STATE(1416)] = 8202, + [SMALL_STATE(1417)] = 8273, + [SMALL_STATE(1418)] = 8344, + [SMALL_STATE(1419)] = 8415, + [SMALL_STATE(1420)] = 8486, + [SMALL_STATE(1421)] = 8557, + [SMALL_STATE(1422)] = 8628, + [SMALL_STATE(1423)] = 8699, + [SMALL_STATE(1424)] = 8770, + [SMALL_STATE(1425)] = 8841, + [SMALL_STATE(1426)] = 8912, + [SMALL_STATE(1427)] = 8980, + [SMALL_STATE(1428)] = 9034, + [SMALL_STATE(1429)] = 9086, + [SMALL_STATE(1430)] = 9138, + [SMALL_STATE(1431)] = 9189, + [SMALL_STATE(1432)] = 9247, + [SMALL_STATE(1433)] = 9301, + [SMALL_STATE(1434)] = 9355, + [SMALL_STATE(1435)] = 9404, + [SMALL_STATE(1436)] = 9453, + [SMALL_STATE(1437)] = 9502, + [SMALL_STATE(1438)] = 9551, + [SMALL_STATE(1439)] = 9600, + [SMALL_STATE(1440)] = 9649, + [SMALL_STATE(1441)] = 9698, + [SMALL_STATE(1442)] = 9747, + [SMALL_STATE(1443)] = 9796, + [SMALL_STATE(1444)] = 9850, + [SMALL_STATE(1445)] = 9918, + [SMALL_STATE(1446)] = 9980, + [SMALL_STATE(1447)] = 10056, + [SMALL_STATE(1448)] = 10112, + [SMALL_STATE(1449)] = 10174, + [SMALL_STATE(1450)] = 10234, + [SMALL_STATE(1451)] = 10294, + [SMALL_STATE(1452)] = 10354, + [SMALL_STATE(1453)] = 10422, + [SMALL_STATE(1454)] = 10476, + [SMALL_STATE(1455)] = 10540, + [SMALL_STATE(1456)] = 10600, + [SMALL_STATE(1457)] = 10656, + [SMALL_STATE(1458)] = 10720, + [SMALL_STATE(1459)] = 10774, + [SMALL_STATE(1460)] = 10842, + [SMALL_STATE(1461)] = 10898, + [SMALL_STATE(1462)] = 10966, + [SMALL_STATE(1463)] = 11028, + [SMALL_STATE(1464)] = 11092, + [SMALL_STATE(1465)] = 11156, + [SMALL_STATE(1466)] = 11218, + [SMALL_STATE(1467)] = 11274, + [SMALL_STATE(1468)] = 11328, + [SMALL_STATE(1469)] = 11403, + [SMALL_STATE(1470)] = 11469, + [SMALL_STATE(1471)] = 11529, + [SMALL_STATE(1472)] = 11591, + [SMALL_STATE(1473)] = 11651, + [SMALL_STATE(1474)] = 11713, + [SMALL_STATE(1475)] = 11767, + [SMALL_STATE(1476)] = 11825, + [SMALL_STATE(1477)] = 11877, + [SMALL_STATE(1478)] = 11927, + [SMALL_STATE(1479)] = 11985, + [SMALL_STATE(1480)] = 12039, + [SMALL_STATE(1481)] = 12091, + [SMALL_STATE(1482)] = 12157, + [SMALL_STATE(1483)] = 12230, + [SMALL_STATE(1484)] = 12304, + [SMALL_STATE(1485)] = 12378, + [SMALL_STATE(1486)] = 12448, + [SMALL_STATE(1487)] = 12520, + [SMALL_STATE(1488)] = 12587, + [SMALL_STATE(1489)] = 12664, + [SMALL_STATE(1490)] = 12733, + [SMALL_STATE(1491)] = 12807, + [SMALL_STATE(1492)] = 12881, + [SMALL_STATE(1493)] = 12955, + [SMALL_STATE(1494)] = 13029, + [SMALL_STATE(1495)] = 13103, + [SMALL_STATE(1496)] = 13177, + [SMALL_STATE(1497)] = 13251, + [SMALL_STATE(1498)] = 13325, + [SMALL_STATE(1499)] = 13399, + [SMALL_STATE(1500)] = 13473, + [SMALL_STATE(1501)] = 13547, + [SMALL_STATE(1502)] = 13621, + [SMALL_STATE(1503)] = 13695, + [SMALL_STATE(1504)] = 13769, + [SMALL_STATE(1505)] = 13840, + [SMALL_STATE(1506)] = 13911, + [SMALL_STATE(1507)] = 13950, + [SMALL_STATE(1508)] = 14017, + [SMALL_STATE(1509)] = 14088, + [SMALL_STATE(1510)] = 14127, + [SMALL_STATE(1511)] = 14174, + [SMALL_STATE(1512)] = 14213, + [SMALL_STATE(1513)] = 14284, + [SMALL_STATE(1514)] = 14323, + [SMALL_STATE(1515)] = 14390, + [SMALL_STATE(1516)] = 14461, + [SMALL_STATE(1517)] = 14532, + [SMALL_STATE(1518)] = 14586, + [SMALL_STATE(1519)] = 14646, + [SMALL_STATE(1520)] = 14702, + [SMALL_STATE(1521)] = 14756, + [SMALL_STATE(1522)] = 14808, + [SMALL_STATE(1523)] = 14856, + [SMALL_STATE(1524)] = 14924, + [SMALL_STATE(1525)] = 14970, + [SMALL_STATE(1526)] = 15030, + [SMALL_STATE(1527)] = 15086, + [SMALL_STATE(1528)] = 15138, + [SMALL_STATE(1529)] = 15186, + [SMALL_STATE(1530)] = 15254, + [SMALL_STATE(1531)] = 15296, + [SMALL_STATE(1532)] = 15358, + [SMALL_STATE(1533)] = 15400, + [SMALL_STATE(1534)] = 15442, + [SMALL_STATE(1535)] = 15504, + [SMALL_STATE(1536)] = 15572, + [SMALL_STATE(1537)] = 15634, + [SMALL_STATE(1538)] = 15678, + [SMALL_STATE(1539)] = 15746, + [SMALL_STATE(1540)] = 15810, + [SMALL_STATE(1541)] = 15878, + [SMALL_STATE(1542)] = 15920, + [SMALL_STATE(1543)] = 15982, + [SMALL_STATE(1544)] = 16050, + [SMALL_STATE(1545)] = 16112, + [SMALL_STATE(1546)] = 16158, + [SMALL_STATE(1547)] = 16220, + [SMALL_STATE(1548)] = 16285, + [SMALL_STATE(1549)] = 16350, + [SMALL_STATE(1550)] = 16411, + [SMALL_STATE(1551)] = 16476, + [SMALL_STATE(1552)] = 16541, + [SMALL_STATE(1553)] = 16606, + [SMALL_STATE(1554)] = 16671, + [SMALL_STATE(1555)] = 16732, + [SMALL_STATE(1556)] = 16793, + [SMALL_STATE(1557)] = 16858, + [SMALL_STATE(1558)] = 16919, + [SMALL_STATE(1559)] = 16984, + [SMALL_STATE(1560)] = 17049, + [SMALL_STATE(1561)] = 17110, + [SMALL_STATE(1562)] = 17171, + [SMALL_STATE(1563)] = 17236, + [SMALL_STATE(1564)] = 17301, + [SMALL_STATE(1565)] = 17366, + [SMALL_STATE(1566)] = 17427, + [SMALL_STATE(1567)] = 17492, + [SMALL_STATE(1568)] = 17553, + [SMALL_STATE(1569)] = 17597, + [SMALL_STATE(1570)] = 17643, + [SMALL_STATE(1571)] = 17701, + [SMALL_STATE(1572)] = 17755, + [SMALL_STATE(1573)] = 17807, + [SMALL_STATE(1574)] = 17857, + [SMALL_STATE(1575)] = 17903, + [SMALL_STATE(1576)] = 17947, + [SMALL_STATE(1577)] = 18005, + [SMALL_STATE(1578)] = 18059, + [SMALL_STATE(1579)] = 18111, + [SMALL_STATE(1580)] = 18161, + [SMALL_STATE(1581)] = 18220, + [SMALL_STATE(1582)] = 18279, + [SMALL_STATE(1583)] = 18338, + [SMALL_STATE(1584)] = 18397, + [SMALL_STATE(1585)] = 18456, + [SMALL_STATE(1586)] = 18489, + [SMALL_STATE(1587)] = 18522, + [SMALL_STATE(1588)] = 18555, + [SMALL_STATE(1589)] = 18588, + [SMALL_STATE(1590)] = 18621, + [SMALL_STATE(1591)] = 18654, + [SMALL_STATE(1592)] = 18684, + [SMALL_STATE(1593)] = 18714, + [SMALL_STATE(1594)] = 18744, + [SMALL_STATE(1595)] = 18774, + [SMALL_STATE(1596)] = 18796, + [SMALL_STATE(1597)] = 18822, + [SMALL_STATE(1598)] = 18848, + [SMALL_STATE(1599)] = 18874, + [SMALL_STATE(1600)] = 18900, + [SMALL_STATE(1601)] = 18926, + [SMALL_STATE(1602)] = 18948, + [SMALL_STATE(1603)] = 18970, + [SMALL_STATE(1604)] = 18996, + [SMALL_STATE(1605)] = 19018, + [SMALL_STATE(1606)] = 19040, + [SMALL_STATE(1607)] = 19066, + [SMALL_STATE(1608)] = 19088, + [SMALL_STATE(1609)] = 19114, + [SMALL_STATE(1610)] = 19140, + [SMALL_STATE(1611)] = 19166, + [SMALL_STATE(1612)] = 19192, + [SMALL_STATE(1613)] = 19218, + [SMALL_STATE(1614)] = 19244, + [SMALL_STATE(1615)] = 19266, + [SMALL_STATE(1616)] = 19288, + [SMALL_STATE(1617)] = 19310, + [SMALL_STATE(1618)] = 19332, + [SMALL_STATE(1619)] = 19354, + [SMALL_STATE(1620)] = 19380, + [SMALL_STATE(1621)] = 19402, + [SMALL_STATE(1622)] = 19425, + [SMALL_STATE(1623)] = 19448, + [SMALL_STATE(1624)] = 19473, + [SMALL_STATE(1625)] = 19496, + [SMALL_STATE(1626)] = 19519, + [SMALL_STATE(1627)] = 19533, + [SMALL_STATE(1628)] = 19547, + [SMALL_STATE(1629)] = 19561, + [SMALL_STATE(1630)] = 19575, + [SMALL_STATE(1631)] = 19589, + [SMALL_STATE(1632)] = 19603, + [SMALL_STATE(1633)] = 19623, + [SMALL_STATE(1634)] = 19637, + [SMALL_STATE(1635)] = 19651, + [SMALL_STATE(1636)] = 19665, + [SMALL_STATE(1637)] = 19679, + [SMALL_STATE(1638)] = 19693, + [SMALL_STATE(1639)] = 19707, + [SMALL_STATE(1640)] = 19721, + [SMALL_STATE(1641)] = 19735, + [SMALL_STATE(1642)] = 19749, + [SMALL_STATE(1643)] = 19763, + [SMALL_STATE(1644)] = 19777, + [SMALL_STATE(1645)] = 19791, + [SMALL_STATE(1646)] = 19805, + [SMALL_STATE(1647)] = 19819, + [SMALL_STATE(1648)] = 19841, + [SMALL_STATE(1649)] = 19855, + [SMALL_STATE(1650)] = 19869, + [SMALL_STATE(1651)] = 19883, + [SMALL_STATE(1652)] = 19897, + [SMALL_STATE(1653)] = 19917, + [SMALL_STATE(1654)] = 19931, + [SMALL_STATE(1655)] = 19945, + [SMALL_STATE(1656)] = 19959, + [SMALL_STATE(1657)] = 19973, + [SMALL_STATE(1658)] = 19987, + [SMALL_STATE(1659)] = 20001, + [SMALL_STATE(1660)] = 20015, + [SMALL_STATE(1661)] = 20029, + [SMALL_STATE(1662)] = 20043, + [SMALL_STATE(1663)] = 20057, + [SMALL_STATE(1664)] = 20071, + [SMALL_STATE(1665)] = 20085, + [SMALL_STATE(1666)] = 20099, + [SMALL_STATE(1667)] = 20113, + [SMALL_STATE(1668)] = 20133, + [SMALL_STATE(1669)] = 20147, + [SMALL_STATE(1670)] = 20161, + [SMALL_STATE(1671)] = 20183, + [SMALL_STATE(1672)] = 20197, + [SMALL_STATE(1673)] = 20211, + [SMALL_STATE(1674)] = 20225, + [SMALL_STATE(1675)] = 20239, + [SMALL_STATE(1676)] = 20253, + [SMALL_STATE(1677)] = 20267, + [SMALL_STATE(1678)] = 20281, + [SMALL_STATE(1679)] = 20295, + [SMALL_STATE(1680)] = 20309, + [SMALL_STATE(1681)] = 20328, + [SMALL_STATE(1682)] = 20347, + [SMALL_STATE(1683)] = 20366, + [SMALL_STATE(1684)] = 20385, + [SMALL_STATE(1685)] = 20404, + [SMALL_STATE(1686)] = 20423, + [SMALL_STATE(1687)] = 20442, + [SMALL_STATE(1688)] = 20461, + [SMALL_STATE(1689)] = 20480, + [SMALL_STATE(1690)] = 20499, + [SMALL_STATE(1691)] = 20518, + [SMALL_STATE(1692)] = 20537, + [SMALL_STATE(1693)] = 20556, + [SMALL_STATE(1694)] = 20575, + [SMALL_STATE(1695)] = 20594, + [SMALL_STATE(1696)] = 20613, + [SMALL_STATE(1697)] = 20632, + [SMALL_STATE(1698)] = 20651, + [SMALL_STATE(1699)] = 20670, + [SMALL_STATE(1700)] = 20689, + [SMALL_STATE(1701)] = 20708, + [SMALL_STATE(1702)] = 20727, + [SMALL_STATE(1703)] = 20746, + [SMALL_STATE(1704)] = 20765, + [SMALL_STATE(1705)] = 20784, + [SMALL_STATE(1706)] = 20797, + [SMALL_STATE(1707)] = 20816, + [SMALL_STATE(1708)] = 20835, + [SMALL_STATE(1709)] = 20854, + [SMALL_STATE(1710)] = 20873, + [SMALL_STATE(1711)] = 20892, + [SMALL_STATE(1712)] = 20911, + [SMALL_STATE(1713)] = 20930, + [SMALL_STATE(1714)] = 20949, + [SMALL_STATE(1715)] = 20968, + [SMALL_STATE(1716)] = 20987, + [SMALL_STATE(1717)] = 21006, + [SMALL_STATE(1718)] = 21025, + [SMALL_STATE(1719)] = 21044, + [SMALL_STATE(1720)] = 21063, + [SMALL_STATE(1721)] = 21082, + [SMALL_STATE(1722)] = 21101, + [SMALL_STATE(1723)] = 21120, + [SMALL_STATE(1724)] = 21139, + [SMALL_STATE(1725)] = 21158, + [SMALL_STATE(1726)] = 21177, + [SMALL_STATE(1727)] = 21196, + [SMALL_STATE(1728)] = 21215, + [SMALL_STATE(1729)] = 21234, + [SMALL_STATE(1730)] = 21253, + [SMALL_STATE(1731)] = 21272, + [SMALL_STATE(1732)] = 21291, + [SMALL_STATE(1733)] = 21310, + [SMALL_STATE(1734)] = 21329, + [SMALL_STATE(1735)] = 21348, + [SMALL_STATE(1736)] = 21367, + [SMALL_STATE(1737)] = 21386, + [SMALL_STATE(1738)] = 21405, + [SMALL_STATE(1739)] = 21424, + [SMALL_STATE(1740)] = 21443, + [SMALL_STATE(1741)] = 21462, + [SMALL_STATE(1742)] = 21481, + [SMALL_STATE(1743)] = 21500, + [SMALL_STATE(1744)] = 21519, + [SMALL_STATE(1745)] = 21538, + [SMALL_STATE(1746)] = 21557, + [SMALL_STATE(1747)] = 21576, + [SMALL_STATE(1748)] = 21595, + [SMALL_STATE(1749)] = 21614, + [SMALL_STATE(1750)] = 21633, + [SMALL_STATE(1751)] = 21652, + [SMALL_STATE(1752)] = 21671, + [SMALL_STATE(1753)] = 21690, + [SMALL_STATE(1754)] = 21709, + [SMALL_STATE(1755)] = 21728, + [SMALL_STATE(1756)] = 21747, + [SMALL_STATE(1757)] = 21766, + [SMALL_STATE(1758)] = 21785, + [SMALL_STATE(1759)] = 21804, + [SMALL_STATE(1760)] = 21823, + [SMALL_STATE(1761)] = 21842, + [SMALL_STATE(1762)] = 21861, + [SMALL_STATE(1763)] = 21880, + [SMALL_STATE(1764)] = 21899, + [SMALL_STATE(1765)] = 21918, + [SMALL_STATE(1766)] = 21937, + [SMALL_STATE(1767)] = 21956, + [SMALL_STATE(1768)] = 21975, + [SMALL_STATE(1769)] = 21994, + [SMALL_STATE(1770)] = 22013, + [SMALL_STATE(1771)] = 22032, + [SMALL_STATE(1772)] = 22051, + [SMALL_STATE(1773)] = 22070, + [SMALL_STATE(1774)] = 22089, + [SMALL_STATE(1775)] = 22108, + [SMALL_STATE(1776)] = 22127, + [SMALL_STATE(1777)] = 22146, + [SMALL_STATE(1778)] = 22165, + [SMALL_STATE(1779)] = 22184, + [SMALL_STATE(1780)] = 22203, + [SMALL_STATE(1781)] = 22222, + [SMALL_STATE(1782)] = 22241, + [SMALL_STATE(1783)] = 22260, + [SMALL_STATE(1784)] = 22279, + [SMALL_STATE(1785)] = 22298, + [SMALL_STATE(1786)] = 22317, + [SMALL_STATE(1787)] = 22336, + [SMALL_STATE(1788)] = 22355, + [SMALL_STATE(1789)] = 22374, + [SMALL_STATE(1790)] = 22393, + [SMALL_STATE(1791)] = 22412, + [SMALL_STATE(1792)] = 22431, + [SMALL_STATE(1793)] = 22450, + [SMALL_STATE(1794)] = 22469, + [SMALL_STATE(1795)] = 22488, + [SMALL_STATE(1796)] = 22507, + [SMALL_STATE(1797)] = 22526, + [SMALL_STATE(1798)] = 22545, + [SMALL_STATE(1799)] = 22564, + [SMALL_STATE(1800)] = 22583, + [SMALL_STATE(1801)] = 22602, + [SMALL_STATE(1802)] = 22618, + [SMALL_STATE(1803)] = 22634, + [SMALL_STATE(1804)] = 22650, + [SMALL_STATE(1805)] = 22660, + [SMALL_STATE(1806)] = 22676, + [SMALL_STATE(1807)] = 22692, + [SMALL_STATE(1808)] = 22708, + [SMALL_STATE(1809)] = 22724, + [SMALL_STATE(1810)] = 22740, + [SMALL_STATE(1811)] = 22756, + [SMALL_STATE(1812)] = 22772, + [SMALL_STATE(1813)] = 22788, + [SMALL_STATE(1814)] = 22804, + [SMALL_STATE(1815)] = 22820, + [SMALL_STATE(1816)] = 22836, + [SMALL_STATE(1817)] = 22850, + [SMALL_STATE(1818)] = 22862, + [SMALL_STATE(1819)] = 22878, + [SMALL_STATE(1820)] = 22894, + [SMALL_STATE(1821)] = 22910, + [SMALL_STATE(1822)] = 22926, + [SMALL_STATE(1823)] = 22942, + [SMALL_STATE(1824)] = 22958, + [SMALL_STATE(1825)] = 22974, + [SMALL_STATE(1826)] = 22990, + [SMALL_STATE(1827)] = 23006, + [SMALL_STATE(1828)] = 23022, + [SMALL_STATE(1829)] = 23038, + [SMALL_STATE(1830)] = 23054, + [SMALL_STATE(1831)] = 23070, + [SMALL_STATE(1832)] = 23086, + [SMALL_STATE(1833)] = 23102, + [SMALL_STATE(1834)] = 23118, + [SMALL_STATE(1835)] = 23134, + [SMALL_STATE(1836)] = 23150, + [SMALL_STATE(1837)] = 23166, + [SMALL_STATE(1838)] = 23182, + [SMALL_STATE(1839)] = 23198, + [SMALL_STATE(1840)] = 23214, + [SMALL_STATE(1841)] = 23230, + [SMALL_STATE(1842)] = 23246, + [SMALL_STATE(1843)] = 23262, + [SMALL_STATE(1844)] = 23278, + [SMALL_STATE(1845)] = 23294, + [SMALL_STATE(1846)] = 23310, + [SMALL_STATE(1847)] = 23326, + [SMALL_STATE(1848)] = 23342, + [SMALL_STATE(1849)] = 23358, + [SMALL_STATE(1850)] = 23374, + [SMALL_STATE(1851)] = 23390, + [SMALL_STATE(1852)] = 23406, + [SMALL_STATE(1853)] = 23422, + [SMALL_STATE(1854)] = 23438, + [SMALL_STATE(1855)] = 23454, + [SMALL_STATE(1856)] = 23470, + [SMALL_STATE(1857)] = 23486, + [SMALL_STATE(1858)] = 23500, + [SMALL_STATE(1859)] = 23516, + [SMALL_STATE(1860)] = 23532, + [SMALL_STATE(1861)] = 23548, + [SMALL_STATE(1862)] = 23564, + [SMALL_STATE(1863)] = 23578, + [SMALL_STATE(1864)] = 23594, + [SMALL_STATE(1865)] = 23610, + [SMALL_STATE(1866)] = 23626, + [SMALL_STATE(1867)] = 23642, + [SMALL_STATE(1868)] = 23658, + [SMALL_STATE(1869)] = 23674, + [SMALL_STATE(1870)] = 23690, + [SMALL_STATE(1871)] = 23706, + [SMALL_STATE(1872)] = 23722, + [SMALL_STATE(1873)] = 23738, + [SMALL_STATE(1874)] = 23754, + [SMALL_STATE(1875)] = 23770, + [SMALL_STATE(1876)] = 23786, + [SMALL_STATE(1877)] = 23802, + [SMALL_STATE(1878)] = 23818, + [SMALL_STATE(1879)] = 23834, + [SMALL_STATE(1880)] = 23850, + [SMALL_STATE(1881)] = 23866, + [SMALL_STATE(1882)] = 23882, + [SMALL_STATE(1883)] = 23898, + [SMALL_STATE(1884)] = 23914, + [SMALL_STATE(1885)] = 23928, + [SMALL_STATE(1886)] = 23944, + [SMALL_STATE(1887)] = 23960, + [SMALL_STATE(1888)] = 23976, + [SMALL_STATE(1889)] = 23992, + [SMALL_STATE(1890)] = 24008, + [SMALL_STATE(1891)] = 24024, + [SMALL_STATE(1892)] = 24040, + [SMALL_STATE(1893)] = 24056, + [SMALL_STATE(1894)] = 24072, + [SMALL_STATE(1895)] = 24088, + [SMALL_STATE(1896)] = 24104, + [SMALL_STATE(1897)] = 24120, + [SMALL_STATE(1898)] = 24136, + [SMALL_STATE(1899)] = 24152, + [SMALL_STATE(1900)] = 24168, + [SMALL_STATE(1901)] = 24184, + [SMALL_STATE(1902)] = 24200, + [SMALL_STATE(1903)] = 24216, + [SMALL_STATE(1904)] = 24232, + [SMALL_STATE(1905)] = 24248, + [SMALL_STATE(1906)] = 24264, + [SMALL_STATE(1907)] = 24280, + [SMALL_STATE(1908)] = 24296, + [SMALL_STATE(1909)] = 24312, + [SMALL_STATE(1910)] = 24328, + [SMALL_STATE(1911)] = 24344, + [SMALL_STATE(1912)] = 24360, + [SMALL_STATE(1913)] = 24376, + [SMALL_STATE(1914)] = 24390, + [SMALL_STATE(1915)] = 24406, + [SMALL_STATE(1916)] = 24422, + [SMALL_STATE(1917)] = 24438, + [SMALL_STATE(1918)] = 24454, + [SMALL_STATE(1919)] = 24470, + [SMALL_STATE(1920)] = 24486, + [SMALL_STATE(1921)] = 24502, + [SMALL_STATE(1922)] = 24518, + [SMALL_STATE(1923)] = 24534, + [SMALL_STATE(1924)] = 24544, + [SMALL_STATE(1925)] = 24560, + [SMALL_STATE(1926)] = 24576, + [SMALL_STATE(1927)] = 24590, + [SMALL_STATE(1928)] = 24606, + [SMALL_STATE(1929)] = 24622, + [SMALL_STATE(1930)] = 24638, + [SMALL_STATE(1931)] = 24654, + [SMALL_STATE(1932)] = 24670, + [SMALL_STATE(1933)] = 24686, + [SMALL_STATE(1934)] = 24702, + [SMALL_STATE(1935)] = 24718, + [SMALL_STATE(1936)] = 24732, + [SMALL_STATE(1937)] = 24742, + [SMALL_STATE(1938)] = 24758, + [SMALL_STATE(1939)] = 24774, + [SMALL_STATE(1940)] = 24790, + [SMALL_STATE(1941)] = 24806, + [SMALL_STATE(1942)] = 24822, + [SMALL_STATE(1943)] = 24836, + [SMALL_STATE(1944)] = 24852, + [SMALL_STATE(1945)] = 24868, + [SMALL_STATE(1946)] = 24884, + [SMALL_STATE(1947)] = 24900, + [SMALL_STATE(1948)] = 24916, + [SMALL_STATE(1949)] = 24932, + [SMALL_STATE(1950)] = 24948, + [SMALL_STATE(1951)] = 24964, + [SMALL_STATE(1952)] = 24980, + [SMALL_STATE(1953)] = 24996, + [SMALL_STATE(1954)] = 25012, + [SMALL_STATE(1955)] = 25028, + [SMALL_STATE(1956)] = 25044, + [SMALL_STATE(1957)] = 25060, + [SMALL_STATE(1958)] = 25076, + [SMALL_STATE(1959)] = 25092, + [SMALL_STATE(1960)] = 25108, + [SMALL_STATE(1961)] = 25124, + [SMALL_STATE(1962)] = 25140, + [SMALL_STATE(1963)] = 25156, + [SMALL_STATE(1964)] = 25172, + [SMALL_STATE(1965)] = 25188, + [SMALL_STATE(1966)] = 25204, + [SMALL_STATE(1967)] = 25220, + [SMALL_STATE(1968)] = 25236, + [SMALL_STATE(1969)] = 25252, + [SMALL_STATE(1970)] = 25268, + [SMALL_STATE(1971)] = 25284, + [SMALL_STATE(1972)] = 25300, + [SMALL_STATE(1973)] = 25316, + [SMALL_STATE(1974)] = 25332, + [SMALL_STATE(1975)] = 25348, + [SMALL_STATE(1976)] = 25364, + [SMALL_STATE(1977)] = 25380, + [SMALL_STATE(1978)] = 25396, + [SMALL_STATE(1979)] = 25412, + [SMALL_STATE(1980)] = 25428, + [SMALL_STATE(1981)] = 25444, + [SMALL_STATE(1982)] = 25460, + [SMALL_STATE(1983)] = 25476, + [SMALL_STATE(1984)] = 25492, + [SMALL_STATE(1985)] = 25508, + [SMALL_STATE(1986)] = 25524, + [SMALL_STATE(1987)] = 25540, + [SMALL_STATE(1988)] = 25556, + [SMALL_STATE(1989)] = 25572, + [SMALL_STATE(1990)] = 25588, + [SMALL_STATE(1991)] = 25604, + [SMALL_STATE(1992)] = 25620, + [SMALL_STATE(1993)] = 25634, + [SMALL_STATE(1994)] = 25650, + [SMALL_STATE(1995)] = 25664, + [SMALL_STATE(1996)] = 25680, + [SMALL_STATE(1997)] = 25696, + [SMALL_STATE(1998)] = 25710, + [SMALL_STATE(1999)] = 25726, + [SMALL_STATE(2000)] = 25742, + [SMALL_STATE(2001)] = 25758, + [SMALL_STATE(2002)] = 25774, + [SMALL_STATE(2003)] = 25790, + [SMALL_STATE(2004)] = 25800, + [SMALL_STATE(2005)] = 25814, + [SMALL_STATE(2006)] = 25830, + [SMALL_STATE(2007)] = 25844, + [SMALL_STATE(2008)] = 25860, + [SMALL_STATE(2009)] = 25876, + [SMALL_STATE(2010)] = 25892, + [SMALL_STATE(2011)] = 25908, + [SMALL_STATE(2012)] = 25924, + [SMALL_STATE(2013)] = 25940, + [SMALL_STATE(2014)] = 25956, + [SMALL_STATE(2015)] = 25972, + [SMALL_STATE(2016)] = 25986, + [SMALL_STATE(2017)] = 26002, + [SMALL_STATE(2018)] = 26018, + [SMALL_STATE(2019)] = 26032, + [SMALL_STATE(2020)] = 26046, + [SMALL_STATE(2021)] = 26060, + [SMALL_STATE(2022)] = 26074, + [SMALL_STATE(2023)] = 26090, + [SMALL_STATE(2024)] = 26106, + [SMALL_STATE(2025)] = 26122, + [SMALL_STATE(2026)] = 26138, + [SMALL_STATE(2027)] = 26154, + [SMALL_STATE(2028)] = 26170, + [SMALL_STATE(2029)] = 26186, + [SMALL_STATE(2030)] = 26202, + [SMALL_STATE(2031)] = 26218, + [SMALL_STATE(2032)] = 26234, + [SMALL_STATE(2033)] = 26250, + [SMALL_STATE(2034)] = 26266, + [SMALL_STATE(2035)] = 26282, + [SMALL_STATE(2036)] = 26298, + [SMALL_STATE(2037)] = 26314, + [SMALL_STATE(2038)] = 26330, + [SMALL_STATE(2039)] = 26344, + [SMALL_STATE(2040)] = 26360, + [SMALL_STATE(2041)] = 26376, + [SMALL_STATE(2042)] = 26392, + [SMALL_STATE(2043)] = 26408, + [SMALL_STATE(2044)] = 26424, + [SMALL_STATE(2045)] = 26440, + [SMALL_STATE(2046)] = 26456, + [SMALL_STATE(2047)] = 26472, + [SMALL_STATE(2048)] = 26488, + [SMALL_STATE(2049)] = 26504, + [SMALL_STATE(2050)] = 26520, + [SMALL_STATE(2051)] = 26536, + [SMALL_STATE(2052)] = 26546, + [SMALL_STATE(2053)] = 26562, + [SMALL_STATE(2054)] = 26575, + [SMALL_STATE(2055)] = 26588, + [SMALL_STATE(2056)] = 26601, + [SMALL_STATE(2057)] = 26612, + [SMALL_STATE(2058)] = 26625, + [SMALL_STATE(2059)] = 26634, + [SMALL_STATE(2060)] = 26647, + [SMALL_STATE(2061)] = 26660, + [SMALL_STATE(2062)] = 26673, + [SMALL_STATE(2063)] = 26686, + [SMALL_STATE(2064)] = 26699, + [SMALL_STATE(2065)] = 26708, + [SMALL_STATE(2066)] = 26721, + [SMALL_STATE(2067)] = 26734, + [SMALL_STATE(2068)] = 26743, + [SMALL_STATE(2069)] = 26756, + [SMALL_STATE(2070)] = 26769, + [SMALL_STATE(2071)] = 26782, + [SMALL_STATE(2072)] = 26795, + [SMALL_STATE(2073)] = 26808, + [SMALL_STATE(2074)] = 26821, + [SMALL_STATE(2075)] = 26830, + [SMALL_STATE(2076)] = 26843, + [SMALL_STATE(2077)] = 26856, + [SMALL_STATE(2078)] = 26865, + [SMALL_STATE(2079)] = 26874, + [SMALL_STATE(2080)] = 26887, + [SMALL_STATE(2081)] = 26900, + [SMALL_STATE(2082)] = 26913, + [SMALL_STATE(2083)] = 26926, + [SMALL_STATE(2084)] = 26939, + [SMALL_STATE(2085)] = 26952, + [SMALL_STATE(2086)] = 26965, + [SMALL_STATE(2087)] = 26978, + [SMALL_STATE(2088)] = 26991, + [SMALL_STATE(2089)] = 27004, + [SMALL_STATE(2090)] = 27017, + [SMALL_STATE(2091)] = 27030, + [SMALL_STATE(2092)] = 27043, + [SMALL_STATE(2093)] = 27056, + [SMALL_STATE(2094)] = 27069, + [SMALL_STATE(2095)] = 27082, + [SMALL_STATE(2096)] = 27091, + [SMALL_STATE(2097)] = 27104, + [SMALL_STATE(2098)] = 27113, + [SMALL_STATE(2099)] = 27126, + [SMALL_STATE(2100)] = 27139, + [SMALL_STATE(2101)] = 27152, + [SMALL_STATE(2102)] = 27165, + [SMALL_STATE(2103)] = 27178, + [SMALL_STATE(2104)] = 27191, + [SMALL_STATE(2105)] = 27204, + [SMALL_STATE(2106)] = 27217, + [SMALL_STATE(2107)] = 27230, + [SMALL_STATE(2108)] = 27239, + [SMALL_STATE(2109)] = 27252, + [SMALL_STATE(2110)] = 27265, + [SMALL_STATE(2111)] = 27278, + [SMALL_STATE(2112)] = 27291, + [SMALL_STATE(2113)] = 27304, + [SMALL_STATE(2114)] = 27317, + [SMALL_STATE(2115)] = 27330, + [SMALL_STATE(2116)] = 27343, + [SMALL_STATE(2117)] = 27356, + [SMALL_STATE(2118)] = 27365, + [SMALL_STATE(2119)] = 27378, + [SMALL_STATE(2120)] = 27391, + [SMALL_STATE(2121)] = 27404, + [SMALL_STATE(2122)] = 27417, + [SMALL_STATE(2123)] = 27430, + [SMALL_STATE(2124)] = 27443, + [SMALL_STATE(2125)] = 27456, + [SMALL_STATE(2126)] = 27469, + [SMALL_STATE(2127)] = 27482, + [SMALL_STATE(2128)] = 27495, + [SMALL_STATE(2129)] = 27508, + [SMALL_STATE(2130)] = 27519, + [SMALL_STATE(2131)] = 27532, + [SMALL_STATE(2132)] = 27545, + [SMALL_STATE(2133)] = 27554, + [SMALL_STATE(2134)] = 27567, + [SMALL_STATE(2135)] = 27580, + [SMALL_STATE(2136)] = 27593, + [SMALL_STATE(2137)] = 27606, + [SMALL_STATE(2138)] = 27619, + [SMALL_STATE(2139)] = 27632, + [SMALL_STATE(2140)] = 27641, + [SMALL_STATE(2141)] = 27654, + [SMALL_STATE(2142)] = 27667, + [SMALL_STATE(2143)] = 27676, + [SMALL_STATE(2144)] = 27689, + [SMALL_STATE(2145)] = 27702, + [SMALL_STATE(2146)] = 27715, + [SMALL_STATE(2147)] = 27728, + [SMALL_STATE(2148)] = 27741, + [SMALL_STATE(2149)] = 27754, + [SMALL_STATE(2150)] = 27767, + [SMALL_STATE(2151)] = 27780, + [SMALL_STATE(2152)] = 27793, + [SMALL_STATE(2153)] = 27806, + [SMALL_STATE(2154)] = 27819, + [SMALL_STATE(2155)] = 27832, + [SMALL_STATE(2156)] = 27845, + [SMALL_STATE(2157)] = 27858, + [SMALL_STATE(2158)] = 27871, + [SMALL_STATE(2159)] = 27884, + [SMALL_STATE(2160)] = 27897, + [SMALL_STATE(2161)] = 27910, + [SMALL_STATE(2162)] = 27923, + [SMALL_STATE(2163)] = 27936, + [SMALL_STATE(2164)] = 27949, + [SMALL_STATE(2165)] = 27962, + [SMALL_STATE(2166)] = 27975, + [SMALL_STATE(2167)] = 27988, + [SMALL_STATE(2168)] = 28001, + [SMALL_STATE(2169)] = 28014, + [SMALL_STATE(2170)] = 28027, + [SMALL_STATE(2171)] = 28040, + [SMALL_STATE(2172)] = 28053, + [SMALL_STATE(2173)] = 28066, + [SMALL_STATE(2174)] = 28079, + [SMALL_STATE(2175)] = 28092, + [SMALL_STATE(2176)] = 28105, + [SMALL_STATE(2177)] = 28118, + [SMALL_STATE(2178)] = 28131, + [SMALL_STATE(2179)] = 28144, + [SMALL_STATE(2180)] = 28157, + [SMALL_STATE(2181)] = 28170, + [SMALL_STATE(2182)] = 28183, + [SMALL_STATE(2183)] = 28196, + [SMALL_STATE(2184)] = 28209, + [SMALL_STATE(2185)] = 28222, + [SMALL_STATE(2186)] = 28235, + [SMALL_STATE(2187)] = 28248, + [SMALL_STATE(2188)] = 28261, + [SMALL_STATE(2189)] = 28274, + [SMALL_STATE(2190)] = 28283, + [SMALL_STATE(2191)] = 28296, + [SMALL_STATE(2192)] = 28306, + [SMALL_STATE(2193)] = 28316, + [SMALL_STATE(2194)] = 28326, + [SMALL_STATE(2195)] = 28336, + [SMALL_STATE(2196)] = 28346, + [SMALL_STATE(2197)] = 28356, + [SMALL_STATE(2198)] = 28366, + [SMALL_STATE(2199)] = 28376, + [SMALL_STATE(2200)] = 28386, + [SMALL_STATE(2201)] = 28394, + [SMALL_STATE(2202)] = 28402, + [SMALL_STATE(2203)] = 28410, + [SMALL_STATE(2204)] = 28418, + [SMALL_STATE(2205)] = 28428, + [SMALL_STATE(2206)] = 28438, + [SMALL_STATE(2207)] = 28448, + [SMALL_STATE(2208)] = 28458, + [SMALL_STATE(2209)] = 28468, + [SMALL_STATE(2210)] = 28478, + [SMALL_STATE(2211)] = 28488, + [SMALL_STATE(2212)] = 28498, + [SMALL_STATE(2213)] = 28508, + [SMALL_STATE(2214)] = 28516, + [SMALL_STATE(2215)] = 28526, + [SMALL_STATE(2216)] = 28536, + [SMALL_STATE(2217)] = 28546, + [SMALL_STATE(2218)] = 28556, + [SMALL_STATE(2219)] = 28564, + [SMALL_STATE(2220)] = 28574, + [SMALL_STATE(2221)] = 28584, + [SMALL_STATE(2222)] = 28592, + [SMALL_STATE(2223)] = 28602, + [SMALL_STATE(2224)] = 28610, + [SMALL_STATE(2225)] = 28618, + [SMALL_STATE(2226)] = 28626, + [SMALL_STATE(2227)] = 28636, + [SMALL_STATE(2228)] = 28646, + [SMALL_STATE(2229)] = 28656, + [SMALL_STATE(2230)] = 28666, + [SMALL_STATE(2231)] = 28676, + [SMALL_STATE(2232)] = 28684, + [SMALL_STATE(2233)] = 28694, + [SMALL_STATE(2234)] = 28704, + [SMALL_STATE(2235)] = 28714, + [SMALL_STATE(2236)] = 28724, + [SMALL_STATE(2237)] = 28734, + [SMALL_STATE(2238)] = 28744, + [SMALL_STATE(2239)] = 28754, + [SMALL_STATE(2240)] = 28761, + [SMALL_STATE(2241)] = 28768, + [SMALL_STATE(2242)] = 28775, + [SMALL_STATE(2243)] = 28782, + [SMALL_STATE(2244)] = 28789, + [SMALL_STATE(2245)] = 28796, + [SMALL_STATE(2246)] = 28803, + [SMALL_STATE(2247)] = 28810, + [SMALL_STATE(2248)] = 28817, + [SMALL_STATE(2249)] = 28824, + [SMALL_STATE(2250)] = 28831, + [SMALL_STATE(2251)] = 28838, + [SMALL_STATE(2252)] = 28845, + [SMALL_STATE(2253)] = 28852, + [SMALL_STATE(2254)] = 28859, + [SMALL_STATE(2255)] = 28866, + [SMALL_STATE(2256)] = 28873, + [SMALL_STATE(2257)] = 28880, + [SMALL_STATE(2258)] = 28887, + [SMALL_STATE(2259)] = 28894, + [SMALL_STATE(2260)] = 28901, + [SMALL_STATE(2261)] = 28908, + [SMALL_STATE(2262)] = 28915, + [SMALL_STATE(2263)] = 28922, + [SMALL_STATE(2264)] = 28929, + [SMALL_STATE(2265)] = 28936, + [SMALL_STATE(2266)] = 28943, + [SMALL_STATE(2267)] = 28950, + [SMALL_STATE(2268)] = 28957, + [SMALL_STATE(2269)] = 28964, + [SMALL_STATE(2270)] = 28971, + [SMALL_STATE(2271)] = 28978, + [SMALL_STATE(2272)] = 28985, + [SMALL_STATE(2273)] = 28992, + [SMALL_STATE(2274)] = 28999, + [SMALL_STATE(2275)] = 29006, + [SMALL_STATE(2276)] = 29013, + [SMALL_STATE(2277)] = 29020, + [SMALL_STATE(2278)] = 29027, + [SMALL_STATE(2279)] = 29034, + [SMALL_STATE(2280)] = 29041, + [SMALL_STATE(2281)] = 29048, + [SMALL_STATE(2282)] = 29055, + [SMALL_STATE(2283)] = 29062, + [SMALL_STATE(2284)] = 29069, + [SMALL_STATE(2285)] = 29076, + [SMALL_STATE(2286)] = 29083, + [SMALL_STATE(2287)] = 29090, + [SMALL_STATE(2288)] = 29097, + [SMALL_STATE(2289)] = 29104, + [SMALL_STATE(2290)] = 29111, + [SMALL_STATE(2291)] = 29118, + [SMALL_STATE(2292)] = 29125, + [SMALL_STATE(2293)] = 29132, + [SMALL_STATE(2294)] = 29139, + [SMALL_STATE(2295)] = 29146, + [SMALL_STATE(2296)] = 29153, + [SMALL_STATE(2297)] = 29160, + [SMALL_STATE(2298)] = 29167, + [SMALL_STATE(2299)] = 29174, + [SMALL_STATE(2300)] = 29181, + [SMALL_STATE(2301)] = 29188, + [SMALL_STATE(2302)] = 29195, + [SMALL_STATE(2303)] = 29202, + [SMALL_STATE(2304)] = 29209, + [SMALL_STATE(2305)] = 29216, + [SMALL_STATE(2306)] = 29223, + [SMALL_STATE(2307)] = 29230, + [SMALL_STATE(2308)] = 29237, + [SMALL_STATE(2309)] = 29244, + [SMALL_STATE(2310)] = 29251, + [SMALL_STATE(2311)] = 29258, + [SMALL_STATE(2312)] = 29265, + [SMALL_STATE(2313)] = 29272, + [SMALL_STATE(2314)] = 29279, + [SMALL_STATE(2315)] = 29286, + [SMALL_STATE(2316)] = 29293, + [SMALL_STATE(2317)] = 29300, + [SMALL_STATE(2318)] = 29307, + [SMALL_STATE(2319)] = 29314, + [SMALL_STATE(2320)] = 29321, + [SMALL_STATE(2321)] = 29328, + [SMALL_STATE(2322)] = 29335, + [SMALL_STATE(2323)] = 29342, + [SMALL_STATE(2324)] = 29349, + [SMALL_STATE(2325)] = 29356, + [SMALL_STATE(2326)] = 29363, + [SMALL_STATE(2327)] = 29370, + [SMALL_STATE(2328)] = 29377, + [SMALL_STATE(2329)] = 29384, + [SMALL_STATE(2330)] = 29391, + [SMALL_STATE(2331)] = 29398, + [SMALL_STATE(2332)] = 29405, + [SMALL_STATE(2333)] = 29412, + [SMALL_STATE(2334)] = 29419, + [SMALL_STATE(2335)] = 29426, + [SMALL_STATE(2336)] = 29433, + [SMALL_STATE(2337)] = 29440, + [SMALL_STATE(2338)] = 29447, + [SMALL_STATE(2339)] = 29454, + [SMALL_STATE(2340)] = 29461, + [SMALL_STATE(2341)] = 29468, + [SMALL_STATE(2342)] = 29475, + [SMALL_STATE(2343)] = 29482, + [SMALL_STATE(2344)] = 29489, + [SMALL_STATE(2345)] = 29496, + [SMALL_STATE(2346)] = 29503, + [SMALL_STATE(2347)] = 29510, + [SMALL_STATE(2348)] = 29517, + [SMALL_STATE(2349)] = 29524, + [SMALL_STATE(2350)] = 29531, + [SMALL_STATE(2351)] = 29538, + [SMALL_STATE(2352)] = 29545, + [SMALL_STATE(2353)] = 29552, + [SMALL_STATE(2354)] = 29559, + [SMALL_STATE(2355)] = 29566, + [SMALL_STATE(2356)] = 29573, + [SMALL_STATE(2357)] = 29580, + [SMALL_STATE(2358)] = 29587, + [SMALL_STATE(2359)] = 29594, + [SMALL_STATE(2360)] = 29601, + [SMALL_STATE(2361)] = 29608, + [SMALL_STATE(2362)] = 29615, + [SMALL_STATE(2363)] = 29622, + [SMALL_STATE(2364)] = 29629, + [SMALL_STATE(2365)] = 29636, + [SMALL_STATE(2366)] = 29643, + [SMALL_STATE(2367)] = 29650, + [SMALL_STATE(2368)] = 29657, + [SMALL_STATE(2369)] = 29664, + [SMALL_STATE(2370)] = 29671, + [SMALL_STATE(2371)] = 29678, + [SMALL_STATE(2372)] = 29685, + [SMALL_STATE(2373)] = 29692, + [SMALL_STATE(2374)] = 29699, + [SMALL_STATE(2375)] = 29706, }; static const TSParseActionEntry ts_parse_actions[] = { diff --git a/tree-sitter-brolang/test/corpus/syntax.txt b/tree-sitter-brolang/test/corpus/syntax.txt index a6fe46c..9e08044 100644 --- a/tree-sitter-brolang/test/corpus/syntax.txt +++ b/tree-sitter-brolang/test/corpus/syntax.txt @@ -493,3 +493,19 @@ visit func(kind Kind, value Value) void { (sink)) (expression (identifier)))))))))))) + +================== +Unsigned constraint +================== + +value uint :: 255 + +--- + +(source_file + (global_constant_declaration + (identifier) + (type + (builtin_type)) + (expression + (integer)))) diff --git a/tree-sitter-brolang/test/highlight/intrinsics.bro b/tree-sitter-brolang/test/highlight/intrinsics.bro index c05979a..f20eda8 100644 --- a/tree-sitter-brolang/test/highlight/intrinsics.bro +++ b/tree-sitter-brolang/test/highlight/intrinsics.bro @@ -1,6 +1,9 @@ hide helper func() void {} # <- keyword +value uint :: 1 +# ^^^^ type.builtin + main func() void { _ = sizeof!(i32) # ^^^^^^ function.builtin