From 630925d2ae1120a45282af8fe4ed22a1060ebf33 Mon Sep 17 00:00:00 2001 From: MarkMcCulloh <1237390+MarkMcCulloh@users.noreply.github.com> Date: Wed, 25 Sep 2024 20:05:59 +0000 Subject: [PATCH] [create-pull-request] automated change --- Cargo.toml | 2 +- Makefile | 2 +- grammar.js | 3 +- package.json | 2 +- pnpm-lock.yaml | 18 +- pyproject.toml | 2 +- src/grammar.json | 4 + src/node-types.json | 4 + src/parser.c | 5120 ++++++++++++++++++++++--------------------- 9 files changed, 2605 insertions(+), 2552 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4fd6e55..9cce9b8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tree-sitter-wing" description = "Wing grammar for tree-sitter" -version = "0.83.11" +version = "0.85.16" license = "MIT" readme = "README.md" keywords = ["incremental", "parsing", "tree-sitter", "wing"] diff --git a/Makefile b/Makefile index 61dd039..78d26cb 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION := 0.83.11 +VERSION := 0.85.16 LANGUAGE_NAME := tree-sitter-wing diff --git a/grammar.js b/grammar.js index eb4c91e..7a8bdda 100644 --- a/grammar.js +++ b/grammar.js @@ -539,7 +539,8 @@ module.exports = grammar({ "void", "duration", "datetime", - "regex" + "regex", + "bytes" ), initializer: ($) => diff --git a/package.json b/package.json index 3d98fea..b6961a8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@winglang/tree-sitter-wing", - "version": "0.83.11", + "version": "0.85.16", "description": "winglang grammar for tree-sitter", "main": "bindings/node", "types": "bindings/node", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 34852ad..24529df 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -15,7 +15,7 @@ dependencies: devDependencies: nodemon: specifier: ^3.1.4 - version: 3.1.4 + version: 3.1.7 tree-sitter-cli: specifier: 0.22.5 version: 0.22.5 @@ -72,8 +72,8 @@ packages: resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} dev: true - /debug@4.3.6(supports-color@5.5.0): - resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==} + /debug@4.3.7(supports-color@5.5.0): + resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} engines: {node: '>=6.0'} peerDependencies: supports-color: '*' @@ -81,7 +81,7 @@ packages: supports-color: optional: true dependencies: - ms: 2.1.2 + ms: 2.1.3 supports-color: 5.5.0 dev: true @@ -146,8 +146,8 @@ packages: brace-expansion: 1.1.11 dev: true - /ms@2.1.2: - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + /ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} dev: true /node-addon-api@7.1.1: @@ -164,13 +164,13 @@ packages: hasBin: true dev: false - /nodemon@3.1.4: - resolution: {integrity: sha512-wjPBbFhtpJwmIeY2yP7QF+UKzPfltVGtfce1g/bB15/8vCGZj8uxD62b/b9M9/WVgme0NZudpownKN+c0plXlQ==} + /nodemon@3.1.7: + resolution: {integrity: sha512-hLj7fuMow6f0lbB0cD14Lz2xNjwsyruH251Pk4t/yIitCFJbmY1myuLlHm/q06aST4jg6EgAh74PIBBrRqpVAQ==} engines: {node: '>=10'} hasBin: true dependencies: chokidar: 3.6.0 - debug: 4.3.6(supports-color@5.5.0) + debug: 4.3.7(supports-color@5.5.0) ignore-by-default: 1.0.1 minimatch: 3.1.2 pstree.remy: 1.1.8 diff --git a/pyproject.toml b/pyproject.toml index cdae8c6..b3fcdc7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] name = "tree-sitter-wing" description = "Wing grammar for tree-sitter" -version = "0.83.11" +version = "0.85.16" keywords = ["incremental", "parsing", "tree-sitter", "wing"] classifiers = [ "Intended Audience :: Developers", diff --git a/src/grammar.json b/src/grammar.json index a531bc8..fe22450 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2929,6 +2929,10 @@ { "type": "STRING", "value": "regex" + }, + { + "type": "STRING", + "value": "bytes" } ] }, diff --git a/src/node-types.json b/src/node-types.json index 16e86ce..a12bff4 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -3308,6 +3308,10 @@ "type": "bring", "named": false }, + { + "type": "bytes", + "named": false + }, { "type": "catch", "named": false diff --git a/src/parser.c b/src/parser.c index 18c36f0..9905d7e 100644 --- a/src/parser.c +++ b/src/parser.c @@ -7,9 +7,9 @@ #define LANGUAGE_VERSION 14 #define STATE_COUNT 1312 #define LARGE_STATE_COUNT 186 -#define SYMBOL_COUNT 247 +#define SYMBOL_COUNT 248 #define ALIAS_COUNT 7 -#define TOKEN_COUNT 113 +#define TOKEN_COUNT 114 #define EXTERNAL_TOKEN_COUNT 2 #define FIELD_COUNT 60 #define MAX_ALIAS_SEQUENCE_LENGTH 10 @@ -90,185 +90,186 @@ enum ts_symbol_identifiers { anon_sym_duration = 72, anon_sym_datetime = 73, anon_sym_regex = 74, - anon_sym_extern = 75, - anon_sym_pub = 76, - anon_sym_protected = 77, - anon_sym_internal = 78, - sym_variadic = 79, - anon_sym_Array = 80, - anon_sym_Set = 81, - anon_sym_Map = 82, - anon_sym_Promise = 83, - anon_sym_MutSet = 84, - anon_sym_MutMap = 85, - anon_sym_MutArray = 86, - anon_sym_LT = 87, - anon_sym_GT = 88, - anon_sym_BANG = 89, - anon_sym_DASH_DASH = 90, - anon_sym_DASH = 91, - anon_sym_PLUS = 92, - anon_sym_STAR = 93, - anon_sym_SLASH = 94, - anon_sym_BSLASH = 95, - anon_sym_PERCENT = 96, - anon_sym_STAR_STAR = 97, - anon_sym_PIPE_PIPE = 98, - anon_sym_AMP_AMP = 99, - anon_sym_EQ_EQ = 100, - anon_sym_BANG_EQ = 101, - anon_sym_GT_EQ = 102, - anon_sym_LT_EQ = 103, - anon_sym_QMARK_QMARK = 104, - anon_sym_EQ_GT = 105, - anon_sym_await = 106, - anon_sym_defer = 107, - anon_sym_Json = 108, - anon_sym_MutJson = 109, - anon_sym_test = 110, - sym_AUTOMATIC_SEMICOLON = 111, - sym_AUTOMATIC_BLOCK = 112, - sym_source = 113, - sym_block = 114, - sym__semicolon = 115, - sym_doc = 116, - sym_reference = 117, - sym_parenthesized_identifier = 118, - sym__type_identifier = 119, - sym__member_identifier = 120, - sym__reference_identifier = 121, - sym_custom_type = 122, - sym_nested_identifier = 123, - sym_accessor = 124, - sym_phase_specifier = 125, - sym__statement = 126, - sym_import_statement = 127, - sym_struct_definition = 128, - sym_struct_field = 129, - sym_enum_definition = 130, - sym_return_statement = 131, - sym_throw_statement = 132, - sym_lift_statement = 133, - sym_lift_qualifications = 134, - sym_lift_qualification = 135, - sym_assignment_operator = 136, - sym_variable_assignment_statement = 137, - sym_expression_statement = 138, - sym_variable_definition_statement = 139, - sym__type_annotation = 140, - sym_class_modifiers = 141, - sym_class_definition = 142, - sym_class_implementation = 143, - sym_field_modifiers = 144, - sym_class_field = 145, - sym_interface_modifiers = 146, - sym_interface_definition = 147, - sym_interface_implementation = 148, - sym_inclusive_range = 149, - sym_loop_range = 150, - sym_for_in_loop = 151, - sym_while_statement = 152, - sym_break_statement = 153, - sym_super_constructor_statement = 154, - sym_continue_statement = 155, - sym_if_let_statement = 156, - sym_else_if_let_block = 157, - sym_if_statement = 158, - sym_else_if_block = 159, - sym_try_catch_statement = 160, - sym_expression = 161, - sym_intrinsic = 162, - sym__literal = 163, - sym_number = 164, - sym_bool = 165, - sym_duration = 166, - sym_milliseconds = 167, - sym_seconds = 168, - sym_minutes = 169, - sym_hours = 170, - sym_days = 171, - sym_months = 172, - sym_years = 173, - sym_non_interpolated_string = 174, - sym_string = 175, - sym_template_substitution = 176, - sym_call = 177, - sym_super_call = 178, - sym_argument_list = 179, - sym_positional_argument = 180, - sym_keyword_argument = 181, - sym_new_expression = 182, - sym__type = 183, - sym__parenthesized_type = 184, - sym_optional = 185, - sym_function_type = 186, - sym_parameter_type_list = 187, - sym_builtin_type = 188, - sym_initializer = 189, - sym_extern_modifier = 190, - sym__return_type = 191, - sym_method_modifiers = 192, - sym_method_definition = 193, - sym_access_modifier = 194, - sym_parameter_definition = 195, - sym_parameter_list = 196, - sym_immutable_container_type = 197, - sym_mutable_container_type = 198, - sym__builtin_container_type = 199, - sym__container_value_type = 200, - sym_optional_unwrap = 201, - sym_unary_expression = 202, - sym_binary_expression = 203, - sym_closure_modifiers = 204, - sym_closure = 205, - sym_await_expression = 206, - sym_defer_expression = 207, - sym_parenthesized_expression = 208, - sym__collection_literal = 209, - sym_array_literal = 210, - sym_map_literal = 211, - sym_struct_literal = 212, - sym_map_literal_member = 213, - sym_struct_literal_member = 214, - sym_structured_access_expression = 215, - sym_json_literal = 216, - sym_json_map_literal = 217, - sym_json_literal_member = 218, - sym_json_container_type = 219, - sym__json_types = 220, - sym_test_statement = 221, - aux_sym_source_repeat1 = 222, - aux_sym_custom_type_repeat1 = 223, - aux_sym_struct_definition_repeat1 = 224, - aux_sym_struct_definition_repeat2 = 225, - aux_sym_enum_definition_repeat1 = 226, - aux_sym_lift_qualifications_repeat1 = 227, - aux_sym_lift_qualification_repeat1 = 228, - aux_sym_class_modifiers_repeat1 = 229, - aux_sym_class_definition_repeat1 = 230, - aux_sym_class_implementation_repeat1 = 231, - aux_sym_field_modifiers_repeat1 = 232, - aux_sym_interface_implementation_repeat1 = 233, - aux_sym_if_let_statement_repeat1 = 234, - aux_sym_if_statement_repeat1 = 235, - aux_sym_non_interpolated_string_repeat1 = 236, - aux_sym_string_repeat1 = 237, - aux_sym_argument_list_repeat1 = 238, - aux_sym_parameter_type_list_repeat1 = 239, - aux_sym_method_modifiers_repeat1 = 240, - aux_sym_parameter_list_repeat1 = 241, - aux_sym_closure_modifiers_repeat1 = 242, - aux_sym_array_literal_repeat1 = 243, - aux_sym_map_literal_repeat1 = 244, - aux_sym_struct_literal_repeat1 = 245, - aux_sym_json_map_literal_repeat1 = 246, - alias_sym_enum_field = 247, - alias_sym_keyword_argument_key = 248, - alias_sym_keyword_argument_value = 249, - alias_sym_lvalue = 250, - alias_sym_member_identifier = 251, - alias_sym_reference_identifier = 252, - alias_sym_type_identifier = 253, + anon_sym_bytes = 75, + anon_sym_extern = 76, + anon_sym_pub = 77, + anon_sym_protected = 78, + anon_sym_internal = 79, + sym_variadic = 80, + anon_sym_Array = 81, + anon_sym_Set = 82, + anon_sym_Map = 83, + anon_sym_Promise = 84, + anon_sym_MutSet = 85, + anon_sym_MutMap = 86, + anon_sym_MutArray = 87, + anon_sym_LT = 88, + anon_sym_GT = 89, + anon_sym_BANG = 90, + anon_sym_DASH_DASH = 91, + anon_sym_DASH = 92, + anon_sym_PLUS = 93, + anon_sym_STAR = 94, + anon_sym_SLASH = 95, + anon_sym_BSLASH = 96, + anon_sym_PERCENT = 97, + anon_sym_STAR_STAR = 98, + anon_sym_PIPE_PIPE = 99, + anon_sym_AMP_AMP = 100, + anon_sym_EQ_EQ = 101, + anon_sym_BANG_EQ = 102, + anon_sym_GT_EQ = 103, + anon_sym_LT_EQ = 104, + anon_sym_QMARK_QMARK = 105, + anon_sym_EQ_GT = 106, + anon_sym_await = 107, + anon_sym_defer = 108, + anon_sym_Json = 109, + anon_sym_MutJson = 110, + anon_sym_test = 111, + sym_AUTOMATIC_SEMICOLON = 112, + sym_AUTOMATIC_BLOCK = 113, + sym_source = 114, + sym_block = 115, + sym__semicolon = 116, + sym_doc = 117, + sym_reference = 118, + sym_parenthesized_identifier = 119, + sym__type_identifier = 120, + sym__member_identifier = 121, + sym__reference_identifier = 122, + sym_custom_type = 123, + sym_nested_identifier = 124, + sym_accessor = 125, + sym_phase_specifier = 126, + sym__statement = 127, + sym_import_statement = 128, + sym_struct_definition = 129, + sym_struct_field = 130, + sym_enum_definition = 131, + sym_return_statement = 132, + sym_throw_statement = 133, + sym_lift_statement = 134, + sym_lift_qualifications = 135, + sym_lift_qualification = 136, + sym_assignment_operator = 137, + sym_variable_assignment_statement = 138, + sym_expression_statement = 139, + sym_variable_definition_statement = 140, + sym__type_annotation = 141, + sym_class_modifiers = 142, + sym_class_definition = 143, + sym_class_implementation = 144, + sym_field_modifiers = 145, + sym_class_field = 146, + sym_interface_modifiers = 147, + sym_interface_definition = 148, + sym_interface_implementation = 149, + sym_inclusive_range = 150, + sym_loop_range = 151, + sym_for_in_loop = 152, + sym_while_statement = 153, + sym_break_statement = 154, + sym_super_constructor_statement = 155, + sym_continue_statement = 156, + sym_if_let_statement = 157, + sym_else_if_let_block = 158, + sym_if_statement = 159, + sym_else_if_block = 160, + sym_try_catch_statement = 161, + sym_expression = 162, + sym_intrinsic = 163, + sym__literal = 164, + sym_number = 165, + sym_bool = 166, + sym_duration = 167, + sym_milliseconds = 168, + sym_seconds = 169, + sym_minutes = 170, + sym_hours = 171, + sym_days = 172, + sym_months = 173, + sym_years = 174, + sym_non_interpolated_string = 175, + sym_string = 176, + sym_template_substitution = 177, + sym_call = 178, + sym_super_call = 179, + sym_argument_list = 180, + sym_positional_argument = 181, + sym_keyword_argument = 182, + sym_new_expression = 183, + sym__type = 184, + sym__parenthesized_type = 185, + sym_optional = 186, + sym_function_type = 187, + sym_parameter_type_list = 188, + sym_builtin_type = 189, + sym_initializer = 190, + sym_extern_modifier = 191, + sym__return_type = 192, + sym_method_modifiers = 193, + sym_method_definition = 194, + sym_access_modifier = 195, + sym_parameter_definition = 196, + sym_parameter_list = 197, + sym_immutable_container_type = 198, + sym_mutable_container_type = 199, + sym__builtin_container_type = 200, + sym__container_value_type = 201, + sym_optional_unwrap = 202, + sym_unary_expression = 203, + sym_binary_expression = 204, + sym_closure_modifiers = 205, + sym_closure = 206, + sym_await_expression = 207, + sym_defer_expression = 208, + sym_parenthesized_expression = 209, + sym__collection_literal = 210, + sym_array_literal = 211, + sym_map_literal = 212, + sym_struct_literal = 213, + sym_map_literal_member = 214, + sym_struct_literal_member = 215, + sym_structured_access_expression = 216, + sym_json_literal = 217, + sym_json_map_literal = 218, + sym_json_literal_member = 219, + sym_json_container_type = 220, + sym__json_types = 221, + sym_test_statement = 222, + aux_sym_source_repeat1 = 223, + aux_sym_custom_type_repeat1 = 224, + aux_sym_struct_definition_repeat1 = 225, + aux_sym_struct_definition_repeat2 = 226, + aux_sym_enum_definition_repeat1 = 227, + aux_sym_lift_qualifications_repeat1 = 228, + aux_sym_lift_qualification_repeat1 = 229, + aux_sym_class_modifiers_repeat1 = 230, + aux_sym_class_definition_repeat1 = 231, + aux_sym_class_implementation_repeat1 = 232, + aux_sym_field_modifiers_repeat1 = 233, + aux_sym_interface_implementation_repeat1 = 234, + aux_sym_if_let_statement_repeat1 = 235, + aux_sym_if_statement_repeat1 = 236, + aux_sym_non_interpolated_string_repeat1 = 237, + aux_sym_string_repeat1 = 238, + aux_sym_argument_list_repeat1 = 239, + aux_sym_parameter_type_list_repeat1 = 240, + aux_sym_method_modifiers_repeat1 = 241, + aux_sym_parameter_list_repeat1 = 242, + aux_sym_closure_modifiers_repeat1 = 243, + aux_sym_array_literal_repeat1 = 244, + aux_sym_map_literal_repeat1 = 245, + aux_sym_struct_literal_repeat1 = 246, + aux_sym_json_map_literal_repeat1 = 247, + alias_sym_enum_field = 248, + alias_sym_keyword_argument_key = 249, + alias_sym_keyword_argument_value = 250, + alias_sym_lvalue = 251, + alias_sym_member_identifier = 252, + alias_sym_reference_identifier = 253, + alias_sym_type_identifier = 254, }; static const char * const ts_symbol_names[] = { @@ -347,6 +348,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_duration] = "duration", [anon_sym_datetime] = "datetime", [anon_sym_regex] = "regex", + [anon_sym_bytes] = "bytes", [anon_sym_extern] = "extern", [anon_sym_pub] = "pub", [anon_sym_protected] = "protected", @@ -604,6 +606,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_duration] = anon_sym_duration, [anon_sym_datetime] = anon_sym_datetime, [anon_sym_regex] = anon_sym_regex, + [anon_sym_bytes] = anon_sym_bytes, [anon_sym_extern] = anon_sym_extern, [anon_sym_pub] = anon_sym_pub, [anon_sym_protected] = anon_sym_protected, @@ -1086,6 +1089,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_bytes] = { + .visible = true, + .named = false, + }, [anon_sym_extern] = { .visible = true, .named = false, @@ -3094,27 +3101,27 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [315] = 315, [316] = 312, [317] = 315, - [318] = 318, + [318] = 312, [319] = 312, - [320] = 312, - [321] = 315, - [322] = 312, - [323] = 323, + [320] = 315, + [321] = 312, + [322] = 322, + [323] = 311, [324] = 311, - [325] = 311, - [326] = 309, + [325] = 309, + [326] = 326, [327] = 327, [328] = 328, [329] = 327, [330] = 330, [331] = 331, - [332] = 318, + [332] = 326, [333] = 333, [334] = 327, - [335] = 318, + [335] = 326, [336] = 336, [337] = 337, - [338] = 318, + [338] = 326, [339] = 327, [340] = 340, [341] = 341, @@ -4880,696 +4887,709 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { case 7: if (lookahead == 'o') ADVANCE(34); if (lookahead == 'r') ADVANCE(35); + if (lookahead == 'y') ADVANCE(36); END_STATE(); case 8: - if (lookahead == 'a') ADVANCE(36); - if (lookahead == 'l') ADVANCE(37); - if (lookahead == 'o') ADVANCE(38); + if (lookahead == 'a') ADVANCE(37); + if (lookahead == 'l') ADVANCE(38); + if (lookahead == 'o') ADVANCE(39); END_STATE(); case 9: ACCEPT_TOKEN(anon_sym_d); - if (lookahead == 'a') ADVANCE(39); - if (lookahead == 'e') ADVANCE(40); - if (lookahead == 'u') ADVANCE(41); + if (lookahead == 'a') ADVANCE(40); + if (lookahead == 'e') ADVANCE(41); + if (lookahead == 'u') ADVANCE(42); END_STATE(); case 10: - if (lookahead == 'l') ADVANCE(42); - if (lookahead == 'n') ADVANCE(43); - if (lookahead == 'x') ADVANCE(44); + if (lookahead == 'l') ADVANCE(43); + if (lookahead == 'n') ADVANCE(44); + if (lookahead == 'x') ADVANCE(45); END_STATE(); case 11: - if (lookahead == 'a') ADVANCE(45); - if (lookahead == 'i') ADVANCE(46); - if (lookahead == 'o') ADVANCE(47); + if (lookahead == 'a') ADVANCE(46); + if (lookahead == 'i') ADVANCE(47); + if (lookahead == 'o') ADVANCE(48); END_STATE(); case 12: ACCEPT_TOKEN(anon_sym_h); END_STATE(); case 13: - if (lookahead == 'f') ADVANCE(48); - if (lookahead == 'm') ADVANCE(49); - if (lookahead == 'n') ADVANCE(50); + if (lookahead == 'f') ADVANCE(49); + if (lookahead == 'm') ADVANCE(50); + if (lookahead == 'n') ADVANCE(51); END_STATE(); case 14: - if (lookahead == 'e') ADVANCE(51); - if (lookahead == 'i') ADVANCE(52); + if (lookahead == 'e') ADVANCE(52); + if (lookahead == 'i') ADVANCE(53); END_STATE(); case 15: ACCEPT_TOKEN(anon_sym_m); - if (lookahead == 'o') ADVANCE(53); - if (lookahead == 's') ADVANCE(54); + if (lookahead == 'o') ADVANCE(54); + if (lookahead == 's') ADVANCE(55); END_STATE(); case 16: - if (lookahead == 'e') ADVANCE(55); - if (lookahead == 'i') ADVANCE(56); - if (lookahead == 'u') ADVANCE(57); + if (lookahead == 'e') ADVANCE(56); + if (lookahead == 'i') ADVANCE(57); + if (lookahead == 'u') ADVANCE(58); END_STATE(); case 17: - if (lookahead == 'r') ADVANCE(58); - if (lookahead == 'u') ADVANCE(59); + if (lookahead == 'r') ADVANCE(59); + if (lookahead == 'u') ADVANCE(60); END_STATE(); case 18: - if (lookahead == 'e') ADVANCE(60); + if (lookahead == 'e') ADVANCE(61); END_STATE(); case 19: ACCEPT_TOKEN(anon_sym_s); - if (lookahead == 't') ADVANCE(61); - if (lookahead == 'u') ADVANCE(62); + if (lookahead == 't') ADVANCE(62); + if (lookahead == 'u') ADVANCE(63); END_STATE(); case 20: - if (lookahead == 'e') ADVANCE(63); - if (lookahead == 'h') ADVANCE(64); - if (lookahead == 'r') ADVANCE(65); + if (lookahead == 'e') ADVANCE(64); + if (lookahead == 'h') ADVANCE(65); + if (lookahead == 'r') ADVANCE(66); END_STATE(); case 21: - if (lookahead == 'n') ADVANCE(66); + if (lookahead == 'n') ADVANCE(67); END_STATE(); case 22: - if (lookahead == 'a') ADVANCE(67); - if (lookahead == 'o') ADVANCE(68); + if (lookahead == 'a') ADVANCE(68); + if (lookahead == 'o') ADVANCE(69); END_STATE(); case 23: - if (lookahead == 'h') ADVANCE(69); + if (lookahead == 'h') ADVANCE(70); END_STATE(); case 24: ACCEPT_TOKEN(anon_sym_y); END_STATE(); case 25: - if (lookahead == 'r') ADVANCE(70); + if (lookahead == 'r') ADVANCE(71); END_STATE(); case 26: - if (lookahead == 'o') ADVANCE(71); + if (lookahead == 'o') ADVANCE(72); END_STATE(); case 27: - if (lookahead == 'p') ADVANCE(72); + if (lookahead == 'p') ADVANCE(73); END_STATE(); case 28: - if (lookahead == 't') ADVANCE(73); + if (lookahead == 't') ADVANCE(74); END_STATE(); case 29: - if (lookahead == 'o') ADVANCE(74); + if (lookahead == 'o') ADVANCE(75); END_STATE(); case 30: - if (lookahead == 't') ADVANCE(75); + if (lookahead == 't') ADVANCE(76); END_STATE(); case 31: - if (lookahead == 'y') ADVANCE(76); + if (lookahead == 'y') ADVANCE(77); END_STATE(); case 32: ACCEPT_TOKEN(anon_sym_as); END_STATE(); case 33: - if (lookahead == 'a') ADVANCE(77); + if (lookahead == 'a') ADVANCE(78); END_STATE(); case 34: - if (lookahead == 'o') ADVANCE(78); + if (lookahead == 'o') ADVANCE(79); END_STATE(); case 35: - if (lookahead == 'e') ADVANCE(79); - if (lookahead == 'i') ADVANCE(80); + if (lookahead == 'e') ADVANCE(80); + if (lookahead == 'i') ADVANCE(81); END_STATE(); case 36: - if (lookahead == 't') ADVANCE(81); + if (lookahead == 't') ADVANCE(82); END_STATE(); case 37: - if (lookahead == 'a') ADVANCE(82); + if (lookahead == 't') ADVANCE(83); END_STATE(); case 38: - if (lookahead == 'n') ADVANCE(83); + if (lookahead == 'a') ADVANCE(84); END_STATE(); case 39: - if (lookahead == 't') ADVANCE(84); + if (lookahead == 'n') ADVANCE(85); END_STATE(); case 40: - if (lookahead == 'f') ADVANCE(85); + if (lookahead == 't') ADVANCE(86); END_STATE(); case 41: - if (lookahead == 'r') ADVANCE(86); + if (lookahead == 'f') ADVANCE(87); END_STATE(); case 42: - if (lookahead == 's') ADVANCE(87); + if (lookahead == 'r') ADVANCE(88); END_STATE(); case 43: - if (lookahead == 'u') ADVANCE(88); + if (lookahead == 's') ADVANCE(89); END_STATE(); case 44: - if (lookahead == 't') ADVANCE(89); + if (lookahead == 'u') ADVANCE(90); END_STATE(); case 45: - if (lookahead == 'l') ADVANCE(90); + if (lookahead == 't') ADVANCE(91); END_STATE(); case 46: - if (lookahead == 'n') ADVANCE(91); + if (lookahead == 'l') ADVANCE(92); END_STATE(); case 47: - if (lookahead == 'r') ADVANCE(92); + if (lookahead == 'n') ADVANCE(93); END_STATE(); case 48: - ACCEPT_TOKEN(anon_sym_if); + if (lookahead == 'r') ADVANCE(94); END_STATE(); case 49: - if (lookahead == 'p') ADVANCE(93); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 50: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'f') ADVANCE(94); - if (lookahead == 't') ADVANCE(95); + if (lookahead == 'p') ADVANCE(95); END_STATE(); case 51: - if (lookahead == 't') ADVANCE(96); + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'f') ADVANCE(96); + if (lookahead == 't') ADVANCE(97); END_STATE(); case 52: - if (lookahead == 'f') ADVANCE(97); + if (lookahead == 't') ADVANCE(98); END_STATE(); case 53: - ACCEPT_TOKEN(anon_sym_mo); + if (lookahead == 'f') ADVANCE(99); END_STATE(); case 54: - ACCEPT_TOKEN(anon_sym_ms); + ACCEPT_TOKEN(anon_sym_mo); END_STATE(); case 55: - if (lookahead == 'w') ADVANCE(98); + ACCEPT_TOKEN(anon_sym_ms); END_STATE(); case 56: - if (lookahead == 'l') ADVANCE(99); + if (lookahead == 'w') ADVANCE(100); END_STATE(); case 57: - if (lookahead == 'm') ADVANCE(100); + if (lookahead == 'l') ADVANCE(101); END_STATE(); case 58: - if (lookahead == 'o') ADVANCE(101); + if (lookahead == 'm') ADVANCE(102); END_STATE(); case 59: - if (lookahead == 'b') ADVANCE(102); + if (lookahead == 'o') ADVANCE(103); END_STATE(); case 60: - if (lookahead == 'g') ADVANCE(103); - if (lookahead == 't') ADVANCE(104); + if (lookahead == 'b') ADVANCE(104); END_STATE(); case 61: - if (lookahead == 'a') ADVANCE(105); - if (lookahead == 'r') ADVANCE(106); + if (lookahead == 'g') ADVANCE(105); + if (lookahead == 't') ADVANCE(106); END_STATE(); case 62: - if (lookahead == 'p') ADVANCE(107); + if (lookahead == 'a') ADVANCE(107); + if (lookahead == 'r') ADVANCE(108); END_STATE(); case 63: - if (lookahead == 's') ADVANCE(108); + if (lookahead == 'p') ADVANCE(109); END_STATE(); case 64: - if (lookahead == 'r') ADVANCE(109); + if (lookahead == 's') ADVANCE(110); END_STATE(); case 65: - if (lookahead == 'u') ADVANCE(110); - if (lookahead == 'y') ADVANCE(111); + if (lookahead == 'r') ADVANCE(111); END_STATE(); case 66: - if (lookahead == 'p') ADVANCE(112); + if (lookahead == 'u') ADVANCE(112); + if (lookahead == 'y') ADVANCE(113); END_STATE(); case 67: - if (lookahead == 'r') ADVANCE(113); + if (lookahead == 'p') ADVANCE(114); END_STATE(); case 68: - if (lookahead == 'i') ADVANCE(114); + if (lookahead == 'r') ADVANCE(115); END_STATE(); case 69: - if (lookahead == 'i') ADVANCE(115); + if (lookahead == 'i') ADVANCE(116); END_STATE(); case 70: - if (lookahead == 'a') ADVANCE(116); + if (lookahead == 'i') ADVANCE(117); END_STATE(); case 71: - if (lookahead == 'n') ADVANCE(117); + if (lookahead == 'a') ADVANCE(118); END_STATE(); case 72: - ACCEPT_TOKEN(anon_sym_Map); + if (lookahead == 'n') ADVANCE(119); END_STATE(); case 73: - if (lookahead == 'A') ADVANCE(118); - if (lookahead == 'J') ADVANCE(119); - if (lookahead == 'M') ADVANCE(120); - if (lookahead == 'S') ADVANCE(121); + ACCEPT_TOKEN(anon_sym_Map); END_STATE(); case 74: - if (lookahead == 'm') ADVANCE(122); + if (lookahead == 'A') ADVANCE(120); + if (lookahead == 'J') ADVANCE(121); + if (lookahead == 'M') ADVANCE(122); + if (lookahead == 'S') ADVANCE(123); END_STATE(); case 75: - ACCEPT_TOKEN(anon_sym_Set); + if (lookahead == 'm') ADVANCE(124); END_STATE(); case 76: - ACCEPT_TOKEN(anon_sym_any); + ACCEPT_TOKEN(anon_sym_Set); END_STATE(); case 77: - if (lookahead == 'i') ADVANCE(123); + ACCEPT_TOKEN(anon_sym_any); END_STATE(); case 78: - if (lookahead == 'l') ADVANCE(124); + if (lookahead == 'i') ADVANCE(125); END_STATE(); case 79: - if (lookahead == 'a') ADVANCE(125); + if (lookahead == 'l') ADVANCE(126); END_STATE(); case 80: - if (lookahead == 'n') ADVANCE(126); + if (lookahead == 'a') ADVANCE(127); END_STATE(); case 81: - if (lookahead == 'c') ADVANCE(127); + if (lookahead == 'n') ADVANCE(128); END_STATE(); case 82: - if (lookahead == 's') ADVANCE(128); + if (lookahead == 'e') ADVANCE(129); END_STATE(); case 83: - if (lookahead == 't') ADVANCE(129); + if (lookahead == 'c') ADVANCE(130); END_STATE(); case 84: - if (lookahead == 'e') ADVANCE(130); + if (lookahead == 's') ADVANCE(131); END_STATE(); case 85: - if (lookahead == 'e') ADVANCE(131); + if (lookahead == 't') ADVANCE(132); END_STATE(); case 86: - if (lookahead == 'a') ADVANCE(132); + if (lookahead == 'e') ADVANCE(133); END_STATE(); case 87: - if (lookahead == 'e') ADVANCE(133); + if (lookahead == 'e') ADVANCE(134); END_STATE(); case 88: - if (lookahead == 'm') ADVANCE(134); + if (lookahead == 'a') ADVANCE(135); END_STATE(); case 89: - if (lookahead == 'e') ADVANCE(135); + if (lookahead == 'e') ADVANCE(136); END_STATE(); case 90: - if (lookahead == 's') ADVANCE(136); + if (lookahead == 'm') ADVANCE(137); END_STATE(); case 91: - if (lookahead == 'a') ADVANCE(137); + if (lookahead == 'e') ADVANCE(138); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 's') ADVANCE(139); END_STATE(); case 93: - if (lookahead == 'l') ADVANCE(138); + if (lookahead == 'a') ADVANCE(140); END_STATE(); case 94: - if (lookahead == 'l') ADVANCE(139); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 95: - if (lookahead == 'e') ADVANCE(140); + if (lookahead == 'l') ADVANCE(141); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_let); + if (lookahead == 'l') ADVANCE(142); END_STATE(); case 97: - if (lookahead == 't') ADVANCE(141); + if (lookahead == 'e') ADVANCE(143); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_new); + ACCEPT_TOKEN(anon_sym_let); END_STATE(); case 99: - ACCEPT_TOKEN(sym_nil_value); + if (lookahead == 't') ADVANCE(144); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_num); + ACCEPT_TOKEN(anon_sym_new); END_STATE(); case 101: - if (lookahead == 't') ADVANCE(142); + ACCEPT_TOKEN(sym_nil_value); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_pub); + ACCEPT_TOKEN(anon_sym_num); END_STATE(); case 103: - if (lookahead == 'e') ADVANCE(143); + if (lookahead == 't') ADVANCE(145); END_STATE(); case 104: - if (lookahead == 'u') ADVANCE(144); + ACCEPT_TOKEN(anon_sym_pub); END_STATE(); case 105: - if (lookahead == 't') ADVANCE(145); + if (lookahead == 'e') ADVANCE(146); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_str); - if (lookahead == 'u') ADVANCE(146); + if (lookahead == 'u') ADVANCE(147); END_STATE(); case 107: - if (lookahead == 'e') ADVANCE(147); + if (lookahead == 't') ADVANCE(148); END_STATE(); case 108: - if (lookahead == 't') ADVANCE(148); + ACCEPT_TOKEN(anon_sym_str); + if (lookahead == 'u') ADVANCE(149); END_STATE(); case 109: - if (lookahead == 'o') ADVANCE(149); + if (lookahead == 'e') ADVANCE(150); END_STATE(); case 110: - if (lookahead == 'e') ADVANCE(150); + if (lookahead == 't') ADVANCE(151); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_try); + if (lookahead == 'o') ADVANCE(152); END_STATE(); case 112: - if (lookahead == 'h') ADVANCE(151); + if (lookahead == 'e') ADVANCE(153); END_STATE(); case 113: - ACCEPT_TOKEN(sym_reassignable); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 114: - if (lookahead == 'd') ADVANCE(152); + if (lookahead == 'h') ADVANCE(154); END_STATE(); case 115: - if (lookahead == 'l') ADVANCE(153); + ACCEPT_TOKEN(sym_reassignable); END_STATE(); case 116: - if (lookahead == 'y') ADVANCE(154); + if (lookahead == 'd') ADVANCE(155); END_STATE(); case 117: - ACCEPT_TOKEN(anon_sym_Json); + if (lookahead == 'l') ADVANCE(156); END_STATE(); case 118: - if (lookahead == 'r') ADVANCE(155); + if (lookahead == 'y') ADVANCE(157); END_STATE(); case 119: - if (lookahead == 's') ADVANCE(156); + ACCEPT_TOKEN(anon_sym_Json); END_STATE(); case 120: - if (lookahead == 'a') ADVANCE(157); + if (lookahead == 'r') ADVANCE(158); END_STATE(); case 121: - if (lookahead == 'e') ADVANCE(158); + if (lookahead == 's') ADVANCE(159); END_STATE(); case 122: - if (lookahead == 'i') ADVANCE(159); + if (lookahead == 'a') ADVANCE(160); END_STATE(); case 123: - if (lookahead == 't') ADVANCE(160); + if (lookahead == 'e') ADVANCE(161); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_bool); + if (lookahead == 'i') ADVANCE(162); END_STATE(); case 125: - if (lookahead == 'k') ADVANCE(161); + if (lookahead == 't') ADVANCE(163); END_STATE(); case 126: - if (lookahead == 'g') ADVANCE(162); + ACCEPT_TOKEN(anon_sym_bool); END_STATE(); case 127: - if (lookahead == 'h') ADVANCE(163); + if (lookahead == 'k') ADVANCE(164); END_STATE(); case 128: - if (lookahead == 's') ADVANCE(164); + if (lookahead == 'g') ADVANCE(165); END_STATE(); case 129: - if (lookahead == 'i') ADVANCE(165); + if (lookahead == 's') ADVANCE(166); END_STATE(); case 130: - if (lookahead == 't') ADVANCE(166); + if (lookahead == 'h') ADVANCE(167); END_STATE(); case 131: - if (lookahead == 'r') ADVANCE(167); + if (lookahead == 's') ADVANCE(168); END_STATE(); case 132: - if (lookahead == 't') ADVANCE(168); + if (lookahead == 'i') ADVANCE(169); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 't') ADVANCE(170); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_enum); + if (lookahead == 'r') ADVANCE(171); END_STATE(); case 135: - if (lookahead == 'n') ADVANCE(169); - if (lookahead == 'r') ADVANCE(170); + if (lookahead == 't') ADVANCE(172); END_STATE(); case 136: - if (lookahead == 'e') ADVANCE(171); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 137: - if (lookahead == 'l') ADVANCE(172); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_impl); + if (lookahead == 'n') ADVANCE(173); + if (lookahead == 'r') ADVANCE(174); END_STATE(); case 139: - if (lookahead == 'i') ADVANCE(173); + if (lookahead == 'e') ADVANCE(175); END_STATE(); case 140: - if (lookahead == 'r') ADVANCE(174); + if (lookahead == 'l') ADVANCE(176); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_lift); + ACCEPT_TOKEN(anon_sym_impl); END_STATE(); case 142: - if (lookahead == 'e') ADVANCE(175); + if (lookahead == 'i') ADVANCE(177); END_STATE(); case 143: - if (lookahead == 'x') ADVANCE(176); + if (lookahead == 'r') ADVANCE(178); END_STATE(); case 144: - if (lookahead == 'r') ADVANCE(177); + ACCEPT_TOKEN(anon_sym_lift); END_STATE(); case 145: - if (lookahead == 'i') ADVANCE(178); + if (lookahead == 'e') ADVANCE(179); END_STATE(); case 146: - if (lookahead == 'c') ADVANCE(179); + if (lookahead == 'x') ADVANCE(180); END_STATE(); case 147: - if (lookahead == 'r') ADVANCE(180); + if (lookahead == 'r') ADVANCE(181); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_test); + if (lookahead == 'i') ADVANCE(182); END_STATE(); case 149: - if (lookahead == 'w') ADVANCE(181); + if (lookahead == 'c') ADVANCE(183); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_true); + if (lookahead == 'r') ADVANCE(184); END_STATE(); case 151: - if (lookahead == 'a') ADVANCE(182); + ACCEPT_TOKEN(anon_sym_test); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_void); + if (lookahead == 'w') ADVANCE(185); END_STATE(); case 153: - if (lookahead == 'e') ADVANCE(183); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_Array); + if (lookahead == 'a') ADVANCE(186); END_STATE(); case 155: - if (lookahead == 'r') ADVANCE(184); + ACCEPT_TOKEN(anon_sym_void); END_STATE(); case 156: - if (lookahead == 'o') ADVANCE(185); + if (lookahead == 'e') ADVANCE(187); END_STATE(); case 157: - if (lookahead == 'p') ADVANCE(186); + ACCEPT_TOKEN(anon_sym_Array); END_STATE(); case 158: - if (lookahead == 't') ADVANCE(187); + if (lookahead == 'r') ADVANCE(188); END_STATE(); case 159: - if (lookahead == 's') ADVANCE(188); + if (lookahead == 'o') ADVANCE(189); END_STATE(); case 160: - ACCEPT_TOKEN(anon_sym_await); + if (lookahead == 'p') ADVANCE(190); END_STATE(); case 161: - ACCEPT_TOKEN(anon_sym_break); + if (lookahead == 't') ADVANCE(191); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_bring); + if (lookahead == 's') ADVANCE(192); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_catch); + ACCEPT_TOKEN(anon_sym_await); END_STATE(); case 164: - ACCEPT_TOKEN(anon_sym_class); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 165: - if (lookahead == 'n') ADVANCE(189); + ACCEPT_TOKEN(anon_sym_bring); END_STATE(); case 166: - if (lookahead == 'i') ADVANCE(190); + ACCEPT_TOKEN(anon_sym_bytes); END_STATE(); case 167: - ACCEPT_TOKEN(anon_sym_defer); + ACCEPT_TOKEN(anon_sym_catch); END_STATE(); case 168: - if (lookahead == 'i') ADVANCE(191); + ACCEPT_TOKEN(anon_sym_class); END_STATE(); case 169: - if (lookahead == 'd') ADVANCE(192); + if (lookahead == 'n') ADVANCE(193); END_STATE(); case 170: - if (lookahead == 'n') ADVANCE(193); + if (lookahead == 'i') ADVANCE(194); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_false); + ACCEPT_TOKEN(anon_sym_defer); END_STATE(); case 172: - if (lookahead == 'l') ADVANCE(194); + if (lookahead == 'i') ADVANCE(195); END_STATE(); case 173: - if (lookahead == 'g') ADVANCE(195); + if (lookahead == 'd') ADVANCE(196); END_STATE(); case 174: - if (lookahead == 'f') ADVANCE(196); if (lookahead == 'n') ADVANCE(197); END_STATE(); case 175: - if (lookahead == 'c') ADVANCE(198); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 176: - ACCEPT_TOKEN(anon_sym_regex); + if (lookahead == 'l') ADVANCE(198); END_STATE(); case 177: - if (lookahead == 'n') ADVANCE(199); + if (lookahead == 'g') ADVANCE(199); END_STATE(); case 178: - if (lookahead == 'c') ADVANCE(200); + if (lookahead == 'f') ADVANCE(200); + if (lookahead == 'n') ADVANCE(201); END_STATE(); case 179: - if (lookahead == 't') ADVANCE(201); + if (lookahead == 'c') ADVANCE(202); END_STATE(); case 180: - ACCEPT_TOKEN(sym__super); + ACCEPT_TOKEN(anon_sym_regex); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_throw); + if (lookahead == 'n') ADVANCE(203); END_STATE(); case 182: - if (lookahead == 's') ADVANCE(202); + if (lookahead == 'c') ADVANCE(204); END_STATE(); case 183: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 't') ADVANCE(205); END_STATE(); case 184: - if (lookahead == 'a') ADVANCE(203); + ACCEPT_TOKEN(sym__super); END_STATE(); case 185: - if (lookahead == 'n') ADVANCE(204); + ACCEPT_TOKEN(anon_sym_throw); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_MutMap); + if (lookahead == 's') ADVANCE(206); END_STATE(); case 187: - ACCEPT_TOKEN(anon_sym_MutSet); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 188: - if (lookahead == 'e') ADVANCE(205); + if (lookahead == 'a') ADVANCE(207); END_STATE(); case 189: - if (lookahead == 'u') ADVANCE(206); + if (lookahead == 'n') ADVANCE(208); END_STATE(); case 190: - if (lookahead == 'm') ADVANCE(207); + ACCEPT_TOKEN(anon_sym_MutMap); END_STATE(); case 191: - if (lookahead == 'o') ADVANCE(208); + ACCEPT_TOKEN(anon_sym_MutSet); END_STATE(); case 192: - if (lookahead == 's') ADVANCE(209); + if (lookahead == 'e') ADVANCE(209); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_extern); + if (lookahead == 'u') ADVANCE(210); END_STATE(); case 194: - if (lookahead == 'y') ADVANCE(210); + if (lookahead == 'm') ADVANCE(211); END_STATE(); case 195: - if (lookahead == 'h') ADVANCE(211); + if (lookahead == 'o') ADVANCE(212); END_STATE(); case 196: - if (lookahead == 'a') ADVANCE(212); + if (lookahead == 's') ADVANCE(213); END_STATE(); case 197: - if (lookahead == 'a') ADVANCE(213); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 198: - if (lookahead == 't') ADVANCE(214); + if (lookahead == 'y') ADVANCE(214); END_STATE(); case 199: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 'h') ADVANCE(215); END_STATE(); case 200: - ACCEPT_TOKEN(sym_static); + if (lookahead == 'a') ADVANCE(216); END_STATE(); case 201: - ACCEPT_TOKEN(anon_sym_struct); + if (lookahead == 'a') ADVANCE(217); END_STATE(); case 202: - if (lookahead == 'e') ADVANCE(215); + if (lookahead == 't') ADVANCE(218); END_STATE(); case 203: - if (lookahead == 'y') ADVANCE(216); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 204: - ACCEPT_TOKEN(anon_sym_MutJson); + ACCEPT_TOKEN(sym_static); END_STATE(); case 205: - ACCEPT_TOKEN(anon_sym_Promise); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 206: - if (lookahead == 'e') ADVANCE(217); + if (lookahead == 'e') ADVANCE(219); END_STATE(); case 207: - if (lookahead == 'e') ADVANCE(218); + if (lookahead == 'y') ADVANCE(220); END_STATE(); case 208: - if (lookahead == 'n') ADVANCE(219); + ACCEPT_TOKEN(anon_sym_MutJson); END_STATE(); case 209: - ACCEPT_TOKEN(anon_sym_extends); + ACCEPT_TOKEN(anon_sym_Promise); END_STATE(); case 210: - ACCEPT_TOKEN(anon_sym_finally); + if (lookahead == 'e') ADVANCE(221); END_STATE(); case 211: - if (lookahead == 't') ADVANCE(220); + if (lookahead == 'e') ADVANCE(222); END_STATE(); case 212: - if (lookahead == 'c') ADVANCE(221); + if (lookahead == 'n') ADVANCE(223); END_STATE(); case 213: - if (lookahead == 'l') ADVANCE(222); + ACCEPT_TOKEN(anon_sym_extends); END_STATE(); case 214: - if (lookahead == 'e') ADVANCE(223); + ACCEPT_TOKEN(anon_sym_finally); END_STATE(); case 215: - if (lookahead == 'd') ADVANCE(224); + if (lookahead == 't') ADVANCE(224); END_STATE(); case 216: - ACCEPT_TOKEN(anon_sym_MutArray); + if (lookahead == 'c') ADVANCE(225); END_STATE(); case 217: - ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == 'l') ADVANCE(226); END_STATE(); case 218: - ACCEPT_TOKEN(anon_sym_datetime); + if (lookahead == 'e') ADVANCE(227); END_STATE(); case 219: - ACCEPT_TOKEN(anon_sym_duration); + if (lookahead == 'd') ADVANCE(228); END_STATE(); case 220: - ACCEPT_TOKEN(anon_sym_inflight); + ACCEPT_TOKEN(anon_sym_MutArray); END_STATE(); case 221: - if (lookahead == 'e') ADVANCE(225); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 222: - ACCEPT_TOKEN(anon_sym_internal); + ACCEPT_TOKEN(anon_sym_datetime); END_STATE(); case 223: - if (lookahead == 'd') ADVANCE(226); + ACCEPT_TOKEN(anon_sym_duration); END_STATE(); case 224: - ACCEPT_TOKEN(anon_sym_unphased); + ACCEPT_TOKEN(anon_sym_inflight); END_STATE(); case 225: - ACCEPT_TOKEN(anon_sym_interface); + if (lookahead == 'e') ADVANCE(229); END_STATE(); case 226: + ACCEPT_TOKEN(anon_sym_internal); + END_STATE(); + case 227: + if (lookahead == 'd') ADVANCE(230); + END_STATE(); + case 228: + ACCEPT_TOKEN(anon_sym_unphased); + END_STATE(); + case 229: + ACCEPT_TOKEN(anon_sym_interface); + END_STATE(); + case 230: ACCEPT_TOKEN(anon_sym_protected); END_STATE(); default: @@ -5896,7 +5916,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [315] = {.lex_state = 0}, [316] = {.lex_state = 0}, [317] = {.lex_state = 0}, - [318] = {.lex_state = 1}, + [318] = {.lex_state = 0}, [319] = {.lex_state = 0}, [320] = {.lex_state = 0}, [321] = {.lex_state = 0}, @@ -5904,7 +5924,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [323] = {.lex_state = 0}, [324] = {.lex_state = 0}, [325] = {.lex_state = 0}, - [326] = {.lex_state = 0}, + [326] = {.lex_state = 1}, [327] = {.lex_state = 1}, [328] = {.lex_state = 1}, [329] = {.lex_state = 3, .external_lex_state = 3}, @@ -6966,6 +6986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_duration] = ACTIONS(1), [anon_sym_datetime] = ACTIONS(1), [anon_sym_regex] = ACTIONS(1), + [anon_sym_bytes] = ACTIONS(1), [anon_sym_extern] = ACTIONS(1), [anon_sym_pub] = ACTIONS(1), [anon_sym_protected] = ACTIONS(1), @@ -29887,7 +29908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_builtin_type, sym__builtin_container_type, sym_json_container_type, - ACTIONS(975), 8, + ACTIONS(975), 9, anon_sym_num, anon_sym_bool, anon_sym_any, @@ -29896,7 +29917,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_duration, anon_sym_datetime, anon_sym_regex, - [7780] = 18, + anon_sym_bytes, + [7781] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -29945,7 +29967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_builtin_type, sym__builtin_container_type, sym_json_container_type, - ACTIONS(975), 8, + ACTIONS(975), 9, anon_sym_num, anon_sym_bool, anon_sym_any, @@ -29954,7 +29976,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_duration, anon_sym_datetime, anon_sym_regex, - [7856] = 18, + anon_sym_bytes, + [7858] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -30003,7 +30026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_builtin_type, sym__builtin_container_type, sym_json_container_type, - ACTIONS(975), 8, + ACTIONS(975), 9, anon_sym_num, anon_sym_bool, anon_sym_any, @@ -30012,7 +30035,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_duration, anon_sym_datetime, anon_sym_regex, - [7932] = 18, + anon_sym_bytes, + [7935] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -30061,7 +30085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_builtin_type, sym__builtin_container_type, sym_json_container_type, - ACTIONS(975), 8, + ACTIONS(975), 9, anon_sym_num, anon_sym_bool, anon_sym_any, @@ -30070,7 +30094,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_duration, anon_sym_datetime, anon_sym_regex, - [8008] = 18, + anon_sym_bytes, + [8012] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -30119,7 +30144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_builtin_type, sym__builtin_container_type, sym_json_container_type, - ACTIONS(975), 8, + ACTIONS(975), 9, anon_sym_num, anon_sym_bool, anon_sym_any, @@ -30128,7 +30153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_duration, anon_sym_datetime, anon_sym_regex, - [8084] = 18, + anon_sym_bytes, + [8089] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -30177,7 +30203,7 @@ static const uint16_t ts_small_parse_table[] = { sym_builtin_type, sym__builtin_container_type, sym_json_container_type, - ACTIONS(975), 8, + ACTIONS(975), 9, anon_sym_num, anon_sym_bool, anon_sym_any, @@ -30186,7 +30212,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_duration, anon_sym_datetime, anon_sym_regex, - [8160] = 17, + anon_sym_bytes, + [8166] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -30233,7 +30260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_builtin_type, sym__builtin_container_type, sym_json_container_type, - ACTIONS(989), 8, + ACTIONS(989), 9, anon_sym_num, anon_sym_bool, anon_sym_any, @@ -30242,7 +30269,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_duration, anon_sym_datetime, anon_sym_regex, - [8233] = 17, + anon_sym_bytes, + [8240] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -30289,7 +30317,7 @@ static const uint16_t ts_small_parse_table[] = { sym_builtin_type, sym__builtin_container_type, sym_json_container_type, - ACTIONS(1001), 8, + ACTIONS(1001), 9, anon_sym_num, anon_sym_bool, anon_sym_any, @@ -30298,7 +30326,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_duration, anon_sym_datetime, anon_sym_regex, - [8306] = 17, + anon_sym_bytes, + [8314] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -30345,7 +30374,7 @@ static const uint16_t ts_small_parse_table[] = { sym_builtin_type, sym__builtin_container_type, sym_json_container_type, - ACTIONS(975), 8, + ACTIONS(975), 9, anon_sym_num, anon_sym_bool, anon_sym_any, @@ -30354,7 +30383,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_duration, anon_sym_datetime, anon_sym_regex, - [8379] = 17, + anon_sym_bytes, + [8388] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -30401,7 +30431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_builtin_type, sym__builtin_container_type, sym_json_container_type, - ACTIONS(975), 8, + ACTIONS(975), 9, anon_sym_num, anon_sym_bool, anon_sym_any, @@ -30410,7 +30440,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_duration, anon_sym_datetime, anon_sym_regex, - [8452] = 17, + anon_sym_bytes, + [8462] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -30457,7 +30488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_builtin_type, sym__builtin_container_type, sym_json_container_type, - ACTIONS(975), 8, + ACTIONS(975), 9, anon_sym_num, anon_sym_bool, anon_sym_any, @@ -30466,7 +30497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_duration, anon_sym_datetime, anon_sym_regex, - [8525] = 17, + anon_sym_bytes, + [8536] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -30513,7 +30545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_builtin_type, sym__builtin_container_type, sym_json_container_type, - ACTIONS(975), 8, + ACTIONS(975), 9, anon_sym_num, anon_sym_bool, anon_sym_any, @@ -30522,7 +30554,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_duration, anon_sym_datetime, anon_sym_regex, - [8598] = 17, + anon_sym_bytes, + [8610] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -30569,7 +30602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_builtin_type, sym__builtin_container_type, sym_json_container_type, - ACTIONS(989), 8, + ACTIONS(989), 9, anon_sym_num, anon_sym_bool, anon_sym_any, @@ -30578,7 +30611,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_duration, anon_sym_datetime, anon_sym_regex, - [8671] = 17, + anon_sym_bytes, + [8684] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -30625,7 +30659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_builtin_type, sym__builtin_container_type, sym_json_container_type, - ACTIONS(975), 8, + ACTIONS(975), 9, anon_sym_num, anon_sym_bool, anon_sym_any, @@ -30634,7 +30668,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_duration, anon_sym_datetime, anon_sym_regex, - [8744] = 17, + anon_sym_bytes, + [8758] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -30681,7 +30716,7 @@ static const uint16_t ts_small_parse_table[] = { sym_builtin_type, sym__builtin_container_type, sym_json_container_type, - ACTIONS(1001), 8, + ACTIONS(1001), 9, anon_sym_num, anon_sym_bool, anon_sym_any, @@ -30690,51 +30725,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_duration, anon_sym_datetime, anon_sym_regex, - [8817] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - anon_sym_SLASH_SLASH_SLASH, - STATE(318), 1, - sym_doc, - ACTIONS(1011), 6, - anon_sym_m, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1009), 29, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_in, - anon_sym_ms, - anon_sym_s, - anon_sym_h, - anon_sym_d, - anon_sym_mo, - anon_sym_y, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_BSLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_EQ_GT, - [8866] = 17, + anon_sym_bytes, + [8832] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -30745,7 +30737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(302), 1, sym__json_types, - STATE(319), 1, + STATE(318), 1, sym_doc, STATE(821), 1, sym__type_identifier, @@ -30781,7 +30773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_builtin_type, sym__builtin_container_type, sym_json_container_type, - ACTIONS(975), 8, + ACTIONS(975), 9, anon_sym_num, anon_sym_bool, anon_sym_any, @@ -30790,7 +30782,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_duration, anon_sym_datetime, anon_sym_regex, - [8939] = 17, + anon_sym_bytes, + [8906] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -30801,7 +30794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(302), 1, sym__json_types, - STATE(320), 1, + STATE(319), 1, sym_doc, STATE(821), 1, sym__type_identifier, @@ -30837,7 +30830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_builtin_type, sym__builtin_container_type, sym_json_container_type, - ACTIONS(975), 8, + ACTIONS(975), 9, anon_sym_num, anon_sym_bool, anon_sym_any, @@ -30846,7 +30839,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_duration, anon_sym_datetime, anon_sym_regex, - [9012] = 17, + anon_sym_bytes, + [8980] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -30857,7 +30851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(302), 1, sym__json_types, - STATE(321), 1, + STATE(320), 1, sym_doc, STATE(821), 1, sym__type_identifier, @@ -30893,7 +30887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_builtin_type, sym__builtin_container_type, sym_json_container_type, - ACTIONS(975), 8, + ACTIONS(975), 9, anon_sym_num, anon_sym_bool, anon_sym_any, @@ -30902,7 +30896,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_duration, anon_sym_datetime, anon_sym_regex, - [9085] = 17, + anon_sym_bytes, + [9054] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -30913,7 +30908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(302), 1, sym__json_types, - STATE(322), 1, + STATE(321), 1, sym_doc, STATE(821), 1, sym__type_identifier, @@ -30949,7 +30944,7 @@ static const uint16_t ts_small_parse_table[] = { sym_builtin_type, sym__builtin_container_type, sym_json_container_type, - ACTIONS(975), 8, + ACTIONS(975), 9, anon_sym_num, anon_sym_bool, anon_sym_any, @@ -30958,7 +30953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_duration, anon_sym_datetime, anon_sym_regex, - [9158] = 17, + anon_sym_bytes, + [9128] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -30969,7 +30965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(302), 1, sym__json_types, - STATE(323), 1, + STATE(322), 1, sym_doc, STATE(821), 1, sym__type_identifier, @@ -31005,7 +31001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_builtin_type, sym__builtin_container_type, sym_json_container_type, - ACTIONS(975), 8, + ACTIONS(975), 9, anon_sym_num, anon_sym_bool, anon_sym_any, @@ -31014,7 +31010,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_duration, anon_sym_datetime, anon_sym_regex, - [9231] = 17, + anon_sym_bytes, + [9202] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -31023,7 +31020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(999), 1, anon_sym_LPAREN, - STATE(324), 1, + STATE(323), 1, sym_doc, STATE(834), 1, sym__type_identifier, @@ -31061,7 +31058,7 @@ static const uint16_t ts_small_parse_table[] = { sym_builtin_type, sym__builtin_container_type, sym_json_container_type, - ACTIONS(1001), 8, + ACTIONS(1001), 9, anon_sym_num, anon_sym_bool, anon_sym_any, @@ -31070,7 +31067,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_duration, anon_sym_datetime, anon_sym_regex, - [9304] = 17, + anon_sym_bytes, + [9276] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -31079,7 +31077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(987), 1, anon_sym_LPAREN, - STATE(325), 1, + STATE(324), 1, sym_doc, STATE(839), 1, sym__type_identifier, @@ -31117,7 +31115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_builtin_type, sym__builtin_container_type, sym_json_container_type, - ACTIONS(989), 8, + ACTIONS(989), 9, anon_sym_num, anon_sym_bool, anon_sym_any, @@ -31126,7 +31124,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_duration, anon_sym_datetime, anon_sym_regex, - [9377] = 17, + anon_sym_bytes, + [9350] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -31137,7 +31136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(302), 1, sym__json_types, - STATE(326), 1, + STATE(325), 1, sym_doc, STATE(821), 1, sym__type_identifier, @@ -31173,7 +31172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_builtin_type, sym__builtin_container_type, sym_json_container_type, - ACTIONS(975), 8, + ACTIONS(975), 9, anon_sym_num, anon_sym_bool, anon_sym_any, @@ -31182,7 +31181,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_duration, anon_sym_datetime, anon_sym_regex, - [9450] = 12, + anon_sym_bytes, + [9424] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + anon_sym_SLASH_SLASH_SLASH, + STATE(326), 1, + sym_doc, + ACTIONS(1011), 6, + anon_sym_m, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1009), 29, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_in, + anon_sym_ms, + anon_sym_s, + anon_sym_h, + anon_sym_d, + anon_sym_mo, + anon_sym_y, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_BSLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_EQ_GT, + [9473] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -31233,7 +31277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [9513] = 7, + [9536] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -31277,7 +31321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [9564] = 12, + [9587] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -31325,7 +31369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [9624] = 6, + [9647] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -31367,7 +31411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [9672] = 7, + [9695] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -31410,7 +31454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [9722] = 5, + [9745] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -31451,7 +31495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [9768] = 7, + [9791] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -31494,7 +31538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [9818] = 12, + [9841] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -31541,7 +31585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [9877] = 5, + [9900] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -31581,7 +31625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [9922] = 5, + [9945] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -31621,7 +31665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [9967] = 5, + [9990] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -31661,7 +31705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [10012] = 5, + [10035] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -31701,7 +31745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [10057] = 12, + [10080] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -31748,7 +31792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [10116] = 16, + [10139] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -31798,7 +31842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [10182] = 20, + [10205] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -31852,7 +31896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_in, anon_sym_EQ_GT, - [10256] = 14, + [10279] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -31900,7 +31944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [10318] = 12, + [10341] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -31946,7 +31990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [10376] = 19, + [10399] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -31999,7 +32043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE_PIPE, anon_sym_EQ_GT, - [10448] = 20, + [10471] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -32053,7 +32097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_in, anon_sym_EQ_GT, - [10522] = 20, + [10545] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -32107,7 +32151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_in, anon_sym_EQ_GT, - [10596] = 18, + [10619] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -32159,7 +32203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_GT, - [10666] = 9, + [10689] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -32202,7 +32246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [10718] = 20, + [10741] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -32256,7 +32300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_in, anon_sym_EQ_GT, - [10792] = 11, + [10815] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -32301,7 +32345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [10848] = 5, + [10871] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -32340,7 +32384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [10892] = 5, + [10915] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -32379,7 +32423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defer, anon_sym_Json, anon_sym_MutJson, - [10936] = 7, + [10959] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -32420,7 +32464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [10984] = 5, + [11007] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -32459,7 +32503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [11028] = 20, + [11051] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -32513,7 +32557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_in, anon_sym_EQ_GT, - [11102] = 21, + [11125] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -32568,7 +32612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_EQ_GT, - [11178] = 17, + [11201] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -32619,7 +32663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_GT, - [11246] = 5, + [11269] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -32658,7 +32702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_defer, anon_sym_Json, anon_sym_MutJson, - [11290] = 16, + [11313] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -32708,7 +32752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_EQ_GT, - [11356] = 12, + [11379] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -32754,7 +32798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [11414] = 20, + [11437] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -32808,7 +32852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_in, anon_sym_EQ_GT, - [11488] = 20, + [11511] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -32862,7 +32906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_in, anon_sym_EQ_GT, - [11562] = 21, + [11585] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -32917,7 +32961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_EQ_GT, - [11638] = 5, + [11661] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -32955,7 +32999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [11681] = 7, + [11704] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -32995,7 +33039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [11728] = 7, + [11751] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -33035,7 +33079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [11775] = 5, + [11798] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -33073,7 +33117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [11818] = 7, + [11841] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -33113,7 +33157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [11865] = 5, + [11888] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -33151,7 +33195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [11908] = 5, + [11931] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -33189,7 +33233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [11951] = 5, + [11974] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -33227,7 +33271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [11994] = 7, + [12017] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -33267,7 +33311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [12041] = 5, + [12064] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -33304,7 +33348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [12083] = 5, + [12106] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -33341,7 +33385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [12125] = 7, + [12148] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -33380,7 +33424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [12171] = 5, + [12194] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -33417,7 +33461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [12213] = 5, + [12236] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -33454,7 +33498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [12255] = 5, + [12278] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -33491,7 +33535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [12297] = 5, + [12320] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -33528,7 +33572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [12339] = 5, + [12362] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -33565,7 +33609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [12381] = 5, + [12404] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -33602,7 +33646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [12423] = 5, + [12446] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -33639,7 +33683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [12465] = 5, + [12488] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -33676,7 +33720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [12507] = 5, + [12530] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -33713,7 +33757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [12549] = 5, + [12572] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -33750,7 +33794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [12591] = 5, + [12614] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -33787,7 +33831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [12633] = 5, + [12656] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -33824,7 +33868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [12675] = 5, + [12698] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -33861,7 +33905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [12717] = 5, + [12740] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -33898,7 +33942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [12759] = 5, + [12782] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -33935,7 +33979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [12801] = 5, + [12824] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -33972,7 +34016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [12843] = 5, + [12866] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -34009,7 +34053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [12885] = 5, + [12908] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -34046,7 +34090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [12927] = 5, + [12950] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -34083,7 +34127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [12969] = 5, + [12992] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -34120,7 +34164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [13011] = 5, + [13034] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -34157,7 +34201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [13053] = 5, + [13076] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -34194,7 +34238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [13095] = 5, + [13118] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -34231,7 +34275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [13137] = 5, + [13160] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -34268,7 +34312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [13179] = 5, + [13202] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -34305,7 +34349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [13221] = 5, + [13244] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -34342,7 +34386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [13263] = 5, + [13286] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -34379,7 +34423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [13305] = 5, + [13328] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -34416,7 +34460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [13347] = 5, + [13370] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -34453,7 +34497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [13389] = 5, + [13412] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -34490,7 +34534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [13431] = 5, + [13454] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -34527,7 +34571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [13473] = 5, + [13496] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -34564,7 +34608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [13515] = 5, + [13538] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -34601,7 +34645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [13557] = 5, + [13580] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -34638,7 +34682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [13599] = 5, + [13622] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -34675,7 +34719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [13641] = 5, + [13664] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -34712,7 +34756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [13683] = 5, + [13706] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -34749,7 +34793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [13725] = 5, + [13748] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -34786,7 +34830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [13767] = 5, + [13790] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -34823,7 +34867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [13809] = 5, + [13832] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -34860,7 +34904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [13851] = 5, + [13874] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -34897,7 +34941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [13893] = 5, + [13916] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -34934,7 +34978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [13935] = 5, + [13958] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -34971,7 +35015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [13977] = 5, + [14000] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -35008,7 +35052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [14019] = 5, + [14042] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -35045,7 +35089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [14061] = 5, + [14084] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -35082,7 +35126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [14103] = 5, + [14126] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -35119,7 +35163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [14145] = 5, + [14168] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -35156,7 +35200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [14187] = 5, + [14210] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -35193,7 +35237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [14229] = 7, + [14252] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -35232,7 +35276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [14275] = 5, + [14298] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -35269,7 +35313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [14317] = 5, + [14340] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -35306,7 +35350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [14359] = 5, + [14382] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -35343,7 +35387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [14401] = 5, + [14424] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -35380,7 +35424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [14443] = 5, + [14466] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -35417,7 +35461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [14485] = 5, + [14508] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -35454,7 +35498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [14527] = 5, + [14550] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -35491,7 +35535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [14569] = 5, + [14592] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -35528,7 +35572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [14611] = 5, + [14634] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -35565,7 +35609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [14653] = 5, + [14676] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -35602,7 +35646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [14695] = 5, + [14718] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -35639,7 +35683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [14737] = 9, + [14760] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -35679,7 +35723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [14786] = 8, + [14809] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -35718,7 +35762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [14833] = 5, + [14856] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -35754,7 +35798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [14874] = 6, + [14897] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -35791,7 +35835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [14917] = 7, + [14940] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -35829,7 +35873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [14962] = 21, + [14985] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -35881,7 +35925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_in, - [15035] = 21, + [15058] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -35933,7 +35977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_in, - [15108] = 5, + [15131] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -35969,7 +36013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [15149] = 5, + [15172] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -36005,7 +36049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [15190] = 21, + [15213] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -36057,7 +36101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_in, - [15263] = 22, + [15286] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -36110,7 +36154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_AUTOMATIC_BLOCK, anon_sym_LBRACE, anon_sym_DOT_DOT, - [15338] = 21, + [15361] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -36162,7 +36206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_in, - [15411] = 22, + [15434] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -36215,7 +36259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_AUTOMATIC_BLOCK, anon_sym_LBRACE, anon_sym_DOT_DOT, - [15486] = 17, + [15509] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -36263,7 +36307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [15551] = 18, + [15574] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -36312,7 +36356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [15618] = 19, + [15641] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -36362,7 +36406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [15687] = 7, + [15710] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -36400,7 +36444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [15732] = 20, + [15755] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -36451,7 +36495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_in, anon_sym_PIPE_PIPE, - [15803] = 12, + [15826] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -36494,7 +36538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [15858] = 13, + [15881] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -36538,7 +36582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [15915] = 15, + [15938] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -36584,7 +36628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [15976] = 17, + [15999] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -36632,7 +36676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [16041] = 21, + [16064] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -36684,7 +36728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_in, - [16114] = 7, + [16137] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -36722,7 +36766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [16159] = 5, + [16182] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -36758,7 +36802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [16200] = 13, + [16223] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -36802,7 +36846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [16257] = 21, + [16280] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -36854,7 +36898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_in, - [16330] = 7, + [16353] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -36892,7 +36936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [16375] = 7, + [16398] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -36930,7 +36974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [16420] = 21, + [16443] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -36982,7 +37026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_in, - [16493] = 24, + [16516] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -37037,7 +37081,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1498), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [16572] = 21, + [16595] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -37088,7 +37132,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1540), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [16644] = 18, + [16667] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -37136,7 +37180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [16710] = 20, + [16733] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -37186,7 +37230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_AUTOMATIC_BLOCK, anon_sym_LBRACE, anon_sym_in, - [16780] = 21, + [16803] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -37237,7 +37281,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1540), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [16852] = 11, + [16875] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -37278,7 +37322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [16904] = 20, + [16927] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -37328,7 +37372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_AUTOMATIC_BLOCK, anon_sym_LBRACE, anon_sym_in, - [16974] = 20, + [16997] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -37378,7 +37422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_AUTOMATIC_BLOCK, anon_sym_LBRACE, anon_sym_in, - [17044] = 12, + [17067] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -37420,7 +37464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [17098] = 6, + [17121] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -37456,7 +37500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [17140] = 9, + [17163] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -37495,7 +37539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [17188] = 21, + [17211] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -37546,7 +37590,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1562), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [17260] = 20, + [17283] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -37596,7 +37640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_AUTOMATIC_SEMICOLON, anon_sym_SEMI, anon_sym_in, - [17330] = 7, + [17353] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -37633,7 +37677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [17374] = 20, + [17397] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -37683,7 +37727,7 @@ static const uint16_t ts_small_parse_table[] = { sym_AUTOMATIC_BLOCK, anon_sym_LBRACE, anon_sym_in, - [17444] = 21, + [17467] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -37734,7 +37778,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1540), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [17516] = 9, + [17539] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -37773,7 +37817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [17564] = 7, + [17587] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -37810,7 +37854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [17608] = 20, + [17631] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -37860,7 +37904,7 @@ static const uint16_t ts_small_parse_table[] = { sym_AUTOMATIC_BLOCK, anon_sym_LBRACE, anon_sym_in, - [17678] = 22, + [17701] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -37912,7 +37956,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1134), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [17752] = 20, + [17775] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -37962,7 +38006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_AUTOMATIC_BLOCK, anon_sym_LBRACE, anon_sym_in, - [17822] = 7, + [17845] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -37999,7 +38043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [17866] = 22, + [17889] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -38051,7 +38095,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1562), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [17940] = 21, + [17963] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -38102,7 +38146,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1540), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18012] = 22, + [18035] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -38154,7 +38198,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1562), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18086] = 5, + [18109] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -38189,7 +38233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [18126] = 5, + [18149] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -38224,7 +38268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [18166] = 21, + [18189] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -38275,7 +38319,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1540), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18238] = 7, + [18261] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -38312,7 +38356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [18282] = 21, + [18305] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -38363,7 +38407,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1562), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18354] = 5, + [18377] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -38398,7 +38442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [18394] = 7, + [18417] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -38435,7 +38479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [18438] = 5, + [18461] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -38470,7 +38514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [18478] = 20, + [18501] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -38520,7 +38564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_AUTOMATIC_SEMICOLON, anon_sym_SEMI, anon_sym_in, - [18548] = 21, + [18571] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -38571,7 +38615,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1540), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18620] = 20, + [18643] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -38621,7 +38665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_AUTOMATIC_SEMICOLON, anon_sym_SEMI, anon_sym_in, - [18690] = 7, + [18713] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -38658,7 +38702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [18734] = 21, + [18757] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -38709,7 +38753,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1540), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18806] = 16, + [18829] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -38755,7 +38799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18868] = 21, + [18891] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -38806,7 +38850,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1540), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [18940] = 17, + [18963] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -38853,7 +38897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [19004] = 7, + [19027] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -38890,7 +38934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [19048] = 20, + [19071] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -38940,7 +38984,7 @@ static const uint16_t ts_small_parse_table[] = { sym_AUTOMATIC_BLOCK, anon_sym_LBRACE, anon_sym_in, - [19118] = 22, + [19141] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -38992,7 +39036,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1134), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [19192] = 5, + [19215] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -39027,7 +39071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [19232] = 19, + [19255] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -39076,7 +39120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_in, anon_sym_PIPE_PIPE, - [19300] = 11, + [19323] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -39117,7 +39161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [19352] = 21, + [19375] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -39168,7 +39212,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1540), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [19424] = 5, + [19447] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -39203,7 +39247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [19464] = 5, + [19487] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -39238,7 +39282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [19504] = 22, + [19527] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -39290,7 +39334,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1562), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [19578] = 22, + [19601] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -39342,7 +39386,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1562), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [19652] = 5, + [19675] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -39377,7 +39421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [19692] = 12, + [19715] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -39419,7 +39463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [19746] = 20, + [19769] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -39469,7 +39513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_AUTOMATIC_SEMICOLON, anon_sym_SEMI, anon_sym_in, - [19816] = 16, + [19839] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -39515,7 +39559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [19878] = 17, + [19901] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -39562,7 +39606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [19942] = 18, + [19965] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -39610,7 +39654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [20008] = 19, + [20031] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -39659,7 +39703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_in, anon_sym_PIPE_PIPE, - [20076] = 11, + [20099] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -39700,7 +39744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [20128] = 20, + [20151] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -39750,7 +39794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_AUTOMATIC_SEMICOLON, anon_sym_SEMI, anon_sym_in, - [20198] = 12, + [20221] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -39792,7 +39836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [20252] = 22, + [20275] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -39844,7 +39888,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1562), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [20326] = 22, + [20349] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -39896,7 +39940,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1562), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [20400] = 14, + [20423] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -39940,7 +39984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [20458] = 16, + [20481] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -39986,7 +40030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [20520] = 20, + [20543] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -40036,7 +40080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_AUTOMATIC_SEMICOLON, anon_sym_SEMI, anon_sym_in, - [20590] = 12, + [20613] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -40078,7 +40122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [20644] = 5, + [20667] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -40113,7 +40157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [20684] = 14, + [20707] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -40157,7 +40201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [20742] = 20, + [20765] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -40207,7 +40251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_AUTOMATIC_SEMICOLON, anon_sym_SEMI, anon_sym_in, - [20812] = 16, + [20835] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -40253,7 +40297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [20874] = 22, + [20897] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -40305,7 +40349,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1134), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [20948] = 21, + [20971] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -40356,7 +40400,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1540), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [21020] = 9, + [21043] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -40395,7 +40439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [21068] = 22, + [21091] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -40447,7 +40491,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1134), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [21142] = 22, + [21165] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -40499,7 +40543,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1134), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [21216] = 21, + [21239] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -40550,7 +40594,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1540), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [21288] = 22, + [21311] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -40602,7 +40646,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1134), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [21362] = 21, + [21385] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -40653,7 +40697,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1540), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [21434] = 6, + [21457] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -40689,7 +40733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [21476] = 22, + [21499] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -40741,7 +40785,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1562), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [21550] = 22, + [21573] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -40793,7 +40837,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1134), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [21624] = 22, + [21647] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -40845,7 +40889,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1134), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [21698] = 5, + [21721] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -40879,7 +40923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [21737] = 5, + [21760] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -40913,7 +40957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [21776] = 5, + [21799] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -40947,7 +40991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [21815] = 8, + [21838] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -40984,7 +41028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [21860] = 5, + [21883] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -41018,7 +41062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [21899] = 5, + [21922] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -41052,7 +41096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [21938] = 5, + [21961] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -41086,7 +41130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [21977] = 20, + [22000] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -41135,7 +41179,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1647), 2, anon_sym_RPAREN, anon_sym_COMMA, - [22046] = 7, + [22069] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -41171,7 +41215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [22089] = 5, + [22112] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -41205,7 +41249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [22128] = 20, + [22151] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -41254,7 +41298,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1649), 2, anon_sym_COMMA, anon_sym_RBRACK, - [22197] = 5, + [22220] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -41288,7 +41332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [22236] = 5, + [22259] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -41322,7 +41366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [22275] = 5, + [22298] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -41356,7 +41400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [22314] = 5, + [22337] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -41390,7 +41434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [22353] = 7, + [22376] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -41426,7 +41470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [22396] = 5, + [22419] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -41460,7 +41504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [22435] = 5, + [22458] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -41494,7 +41538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [22474] = 5, + [22497] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -41528,7 +41572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [22513] = 5, + [22536] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -41562,7 +41606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [22552] = 5, + [22575] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -41596,7 +41640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [22591] = 20, + [22614] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -41645,7 +41689,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1655), 2, anon_sym_RPAREN, anon_sym_COMMA, - [22660] = 5, + [22683] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -41679,7 +41723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [22699] = 5, + [22722] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -41713,7 +41757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [22738] = 5, + [22761] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -41747,7 +41791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [22777] = 5, + [22800] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -41781,7 +41825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [22816] = 7, + [22839] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -41817,7 +41861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [22859] = 5, + [22882] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -41851,7 +41895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [22898] = 5, + [22921] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -41885,7 +41929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [22937] = 5, + [22960] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -41919,7 +41963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [22976] = 5, + [22999] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -41953,7 +41997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [23015] = 5, + [23038] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -41987,7 +42031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [23054] = 5, + [23077] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -42021,7 +42065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [23093] = 5, + [23116] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -42055,7 +42099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [23132] = 5, + [23155] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -42089,7 +42133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [23171] = 5, + [23194] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -42123,7 +42167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [23210] = 5, + [23233] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -42157,7 +42201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [23249] = 5, + [23272] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -42191,7 +42235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [23288] = 7, + [23311] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -42227,7 +42271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [23331] = 5, + [23354] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -42261,7 +42305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [23370] = 20, + [23393] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -42310,7 +42354,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1660), 2, anon_sym_RBRACE, anon_sym_COMMA, - [23439] = 5, + [23462] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -42344,7 +42388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [23478] = 5, + [23501] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -42378,7 +42422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [23517] = 20, + [23540] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -42427,7 +42471,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1662), 2, sym_AUTOMATIC_BLOCK, anon_sym_LBRACE, - [23586] = 5, + [23609] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -42461,7 +42505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [23625] = 20, + [23648] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -42510,7 +42554,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1664), 2, anon_sym_RBRACE, anon_sym_COMMA, - [23694] = 5, + [23717] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -42544,7 +42588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [23733] = 5, + [23756] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -42578,7 +42622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [23772] = 5, + [23795] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -42612,7 +42656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [23811] = 5, + [23834] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -42646,7 +42690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [23850] = 5, + [23873] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -42680,7 +42724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [23889] = 5, + [23912] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -42714,7 +42758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [23928] = 5, + [23951] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -42748,7 +42792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [23967] = 5, + [23990] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -42782,7 +42826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [24006] = 5, + [24029] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -42816,7 +42860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [24045] = 5, + [24068] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -42850,7 +42894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [24084] = 5, + [24107] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -42884,7 +42928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [24123] = 5, + [24146] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -42918,7 +42962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [24162] = 20, + [24185] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -42967,7 +43011,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1666), 2, sym_AUTOMATIC_BLOCK, anon_sym_LBRACE, - [24231] = 5, + [24254] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -43001,7 +43045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [24270] = 5, + [24293] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -43035,7 +43079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [24309] = 7, + [24332] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -43071,7 +43115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [24352] = 20, + [24375] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -43120,7 +43164,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1672), 2, anon_sym_RBRACE, anon_sym_COMMA, - [24421] = 5, + [24444] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -43154,7 +43198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [24460] = 5, + [24483] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -43188,7 +43232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [24499] = 5, + [24522] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -43222,7 +43266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [24538] = 5, + [24561] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -43256,7 +43300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [24577] = 5, + [24600] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -43290,7 +43334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [24616] = 5, + [24639] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -43324,7 +43368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [24655] = 5, + [24678] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -43358,7 +43402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [24694] = 5, + [24717] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -43392,7 +43436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [24733] = 5, + [24756] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -43426,7 +43470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [24772] = 5, + [24795] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -43460,7 +43504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [24811] = 5, + [24834] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -43494,7 +43538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [24850] = 5, + [24873] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -43528,7 +43572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [24889] = 5, + [24912] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -43562,7 +43606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [24928] = 5, + [24951] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -43596,7 +43640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [24967] = 5, + [24990] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -43630,7 +43674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [25006] = 5, + [25029] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -43664,7 +43708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [25045] = 5, + [25068] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -43698,7 +43742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [25084] = 5, + [25107] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -43732,7 +43776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [25123] = 5, + [25146] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -43766,7 +43810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [25162] = 5, + [25185] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -43800,7 +43844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [25201] = 5, + [25224] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -43834,7 +43878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [25240] = 5, + [25263] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -43868,7 +43912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [25279] = 5, + [25302] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -43902,7 +43946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [25318] = 5, + [25341] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -43936,7 +43980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [25357] = 5, + [25380] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -43970,7 +44014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [25396] = 5, + [25419] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -44004,7 +44048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [25435] = 5, + [25458] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -44038,7 +44082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [25474] = 5, + [25497] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -44072,7 +44116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [25513] = 5, + [25536] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -44106,7 +44150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [25552] = 5, + [25575] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -44140,7 +44184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [25591] = 5, + [25614] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -44174,7 +44218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [25630] = 5, + [25653] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -44207,7 +44251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [25668] = 5, + [25691] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -44240,7 +44284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [25706] = 6, + [25729] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -44274,7 +44318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [25746] = 20, + [25769] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -44322,7 +44366,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1134), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [25814] = 5, + [25837] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -44355,7 +44399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [25852] = 5, + [25875] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -44388,7 +44432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [25890] = 5, + [25913] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -44421,7 +44465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [25928] = 5, + [25951] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -44454,7 +44498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [25966] = 5, + [25989] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -44487,7 +44531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [26004] = 5, + [26027] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -44520,7 +44564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [26042] = 5, + [26065] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -44553,7 +44597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [26080] = 5, + [26103] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -44586,7 +44630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [26118] = 5, + [26141] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -44619,7 +44663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [26156] = 5, + [26179] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -44652,7 +44696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [26194] = 5, + [26217] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -44685,7 +44729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [26232] = 5, + [26255] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -44718,7 +44762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [26270] = 5, + [26293] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -44751,7 +44795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [26308] = 5, + [26331] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -44784,7 +44828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [26346] = 5, + [26369] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -44817,7 +44861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [26384] = 5, + [26407] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -44850,7 +44894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [26422] = 5, + [26445] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -44883,7 +44927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [26460] = 5, + [26483] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -44916,7 +44960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [26498] = 5, + [26521] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -44949,7 +44993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [26536] = 5, + [26559] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -44982,7 +45026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [26574] = 5, + [26597] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -45015,7 +45059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [26612] = 20, + [26635] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -45063,7 +45107,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1134), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [26680] = 5, + [26703] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -45096,7 +45140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [26718] = 5, + [26741] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -45129,7 +45173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [26756] = 5, + [26779] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -45162,7 +45206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [26794] = 5, + [26817] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -45195,7 +45239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [26832] = 5, + [26855] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -45228,7 +45272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [26870] = 5, + [26893] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -45261,7 +45305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [26908] = 5, + [26931] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -45294,7 +45338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [26946] = 5, + [26969] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -45327,7 +45371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [26984] = 5, + [27007] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -45360,7 +45404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [27022] = 5, + [27045] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -45393,7 +45437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [27060] = 5, + [27083] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -45426,7 +45470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [27098] = 5, + [27121] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -45459,7 +45503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [27136] = 20, + [27159] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -45507,7 +45551,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1134), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27204] = 5, + [27227] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -45540,7 +45584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [27242] = 5, + [27265] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -45573,7 +45617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [27280] = 5, + [27303] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -45606,7 +45650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [27318] = 5, + [27341] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -45639,7 +45683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [27356] = 20, + [27379] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -45687,7 +45731,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1134), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27424] = 20, + [27447] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -45735,7 +45779,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1134), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27492] = 20, + [27515] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -45783,7 +45827,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1134), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27560] = 5, + [27583] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -45816,7 +45860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [27598] = 5, + [27621] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -45849,7 +45893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [27636] = 5, + [27659] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -45882,7 +45926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [27674] = 20, + [27697] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -45930,7 +45974,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1134), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [27742] = 5, + [27765] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -45963,7 +46007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [27780] = 5, + [27803] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -45996,7 +46040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [27818] = 5, + [27841] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -46029,7 +46073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [27856] = 5, + [27879] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -46062,7 +46106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [27894] = 5, + [27917] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -46095,7 +46139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [27932] = 5, + [27955] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -46128,7 +46172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [27970] = 5, + [27993] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -46161,7 +46205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [28008] = 5, + [28031] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -46194,7 +46238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [28046] = 5, + [28069] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -46227,7 +46271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [28084] = 5, + [28107] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -46260,7 +46304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [28122] = 5, + [28145] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -46293,7 +46337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [28160] = 5, + [28183] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -46326,7 +46370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [28198] = 5, + [28221] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -46359,7 +46403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [28236] = 5, + [28259] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -46392,7 +46436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [28274] = 5, + [28297] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -46425,7 +46469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [28312] = 5, + [28335] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -46458,7 +46502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [28350] = 5, + [28373] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -46491,7 +46535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [28388] = 5, + [28411] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -46524,7 +46568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [28426] = 5, + [28449] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -46557,7 +46601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [28464] = 5, + [28487] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -46590,7 +46634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [28502] = 5, + [28525] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -46623,7 +46667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [28540] = 5, + [28563] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -46656,7 +46700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [28578] = 5, + [28601] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -46689,7 +46733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [28616] = 5, + [28639] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -46722,7 +46766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [28654] = 5, + [28677] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -46755,7 +46799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [28692] = 5, + [28715] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -46788,7 +46832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [28730] = 5, + [28753] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -46821,7 +46865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [28768] = 5, + [28791] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -46854,7 +46898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [28806] = 5, + [28829] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -46887,7 +46931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [28844] = 5, + [28867] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -46920,7 +46964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [28882] = 5, + [28905] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -46953,7 +46997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [28920] = 5, + [28943] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -46986,7 +47030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [28958] = 5, + [28981] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -47019,7 +47063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [28996] = 5, + [29019] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -47052,7 +47096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [29034] = 20, + [29057] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -47100,7 +47144,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1134), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [29102] = 5, + [29125] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -47133,7 +47177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [29140] = 5, + [29163] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -47166,7 +47210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [29178] = 5, + [29201] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -47199,7 +47243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [29216] = 5, + [29239] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -47232,7 +47276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [29254] = 5, + [29277] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -47265,7 +47309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [29292] = 5, + [29315] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -47298,7 +47342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [29330] = 5, + [29353] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -47331,7 +47375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [29368] = 5, + [29391] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -47364,7 +47408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [29406] = 5, + [29429] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -47397,7 +47441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [29444] = 5, + [29467] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -47430,7 +47474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [29482] = 5, + [29505] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -47463,7 +47507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [29520] = 5, + [29543] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -47496,7 +47540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [29558] = 5, + [29581] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -47529,7 +47573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [29596] = 5, + [29619] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -47562,7 +47606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [29634] = 5, + [29657] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -47595,7 +47639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [29672] = 5, + [29695] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -47628,7 +47672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [29710] = 5, + [29733] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -47661,7 +47705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [29748] = 5, + [29771] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -47694,7 +47738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [29786] = 5, + [29809] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -47727,7 +47771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [29824] = 5, + [29847] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -47760,7 +47804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [29862] = 20, + [29885] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -47808,7 +47852,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1134), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [29930] = 5, + [29953] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -47841,7 +47885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [29968] = 5, + [29991] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -47874,7 +47918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [30006] = 5, + [30029] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -47907,7 +47951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [30044] = 5, + [30067] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -47940,7 +47984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [30082] = 20, + [30105] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -47988,7 +48032,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1134), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30150] = 20, + [30173] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -48036,7 +48080,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1134), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [30218] = 5, + [30241] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -48069,7 +48113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [30256] = 5, + [30279] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -48102,7 +48146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [30294] = 5, + [30317] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -48135,7 +48179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [30332] = 5, + [30355] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -48168,7 +48212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [30370] = 5, + [30393] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -48201,7 +48245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [30408] = 5, + [30431] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -48234,7 +48278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [30446] = 5, + [30469] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -48267,7 +48311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [30484] = 5, + [30507] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -48300,7 +48344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [30522] = 5, + [30545] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -48333,7 +48377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [30560] = 5, + [30583] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -48366,7 +48410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [30598] = 5, + [30621] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -48399,7 +48443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [30636] = 5, + [30659] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -48432,7 +48476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [30674] = 5, + [30697] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -48465,7 +48509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [30712] = 5, + [30735] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -48498,7 +48542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [30750] = 5, + [30773] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -48531,7 +48575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [30788] = 5, + [30811] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -48564,7 +48608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_QMARK_QMARK, - [30826] = 6, + [30849] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -48597,7 +48641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_QMARK_QMARK, anon_sym_EQ_GT, - [30865] = 19, + [30888] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -48642,7 +48686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_class_field, sym_initializer, sym_method_definition, - [30929] = 20, + [30952] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -48688,7 +48732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_class_field, sym_initializer, sym_method_definition, - [30995] = 20, + [31018] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -48734,7 +48778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_class_field, sym_initializer, sym_method_definition, - [31061] = 18, + [31084] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -48776,7 +48820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [31121] = 17, + [31144] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -48817,7 +48861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [31179] = 18, + [31202] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -48859,7 +48903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [31239] = 5, + [31262] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -48881,7 +48925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [31266] = 4, + [31289] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -48902,7 +48946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [31291] = 10, + [31314] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -48928,7 +48972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_phase_specifier, sym_extern_modifier, sym_access_modifier, - [31327] = 9, + [31350] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -48953,7 +48997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_phase_specifier, sym_extern_modifier, sym_access_modifier, - [31361] = 5, + [31384] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -48973,7 +49017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [31386] = 5, + [31409] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -48993,7 +49037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [31411] = 9, + [31434] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49017,7 +49061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [31444] = 5, + [31467] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49037,7 +49081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [31469] = 5, + [31492] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49057,7 +49101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [31494] = 5, + [31517] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49077,7 +49121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [31519] = 5, + [31542] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49097,7 +49141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [31544] = 8, + [31567] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49120,7 +49164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [31575] = 5, + [31598] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49140,7 +49184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [31600] = 5, + [31623] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49160,7 +49204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [31625] = 5, + [31648] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49180,7 +49224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [31650] = 5, + [31673] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49200,7 +49244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [31675] = 5, + [31698] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49220,7 +49264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [31700] = 5, + [31723] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49240,7 +49284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [31725] = 5, + [31748] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49260,7 +49304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [31750] = 5, + [31773] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49280,7 +49324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [31775] = 5, + [31798] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49300,7 +49344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [31800] = 7, + [31823] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49321,7 +49365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [31828] = 5, + [31851] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49340,7 +49384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [31852] = 7, + [31875] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49361,7 +49405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [31880] = 9, + [31903] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49384,7 +49428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [31912] = 6, + [31935] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49403,7 +49447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [31937] = 6, + [31960] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49422,7 +49466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [31962] = 11, + [31985] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49446,7 +49490,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(263), 2, sym_AUTOMATIC_SEMICOLON, anon_sym_SEMI, - [31997] = 11, + [32020] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49470,7 +49514,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(263), 2, sym_AUTOMATIC_SEMICOLON, anon_sym_SEMI, - [32032] = 7, + [32055] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49490,7 +49534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_GT, anon_sym_EQ_GT, - [32059] = 4, + [32082] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49506,7 +49550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [32079] = 6, + [32102] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49524,7 +49568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK, - [32103] = 5, + [32126] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49541,7 +49585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_GT, anon_sym_EQ_GT, - [32125] = 5, + [32148] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49558,7 +49602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_GT, anon_sym_EQ_GT, - [32147] = 4, + [32170] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49574,7 +49618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [32167] = 4, + [32190] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49590,7 +49634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [32187] = 7, + [32210] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49609,7 +49653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_GT, anon_sym_EQ_GT, - [32213] = 6, + [32236] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49627,7 +49671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_GT, anon_sym_EQ_GT, - [32237] = 6, + [32260] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49645,7 +49689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [32261] = 4, + [32284] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49661,7 +49705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [32281] = 4, + [32304] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49677,7 +49721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [32301] = 7, + [32324] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49696,7 +49740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_GT, anon_sym_EQ_GT, - [32327] = 5, + [32350] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49712,7 +49756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_GT, anon_sym_EQ_GT, - [32348] = 6, + [32371] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49729,7 +49773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ, anon_sym_QMARK, - [32371] = 9, + [32394] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49749,7 +49793,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(263), 2, sym_AUTOMATIC_SEMICOLON, anon_sym_SEMI, - [32400] = 5, + [32423] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49765,7 +49809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_SEMI, anon_sym_QMARK, - [32421] = 7, + [32444] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49783,7 +49827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_MutSet, anon_sym_MutMap, anon_sym_MutArray, - [32446] = 6, + [32469] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49800,7 +49844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_SEMI, anon_sym_QMARK, - [32469] = 6, + [32492] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49817,7 +49861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_GT, anon_sym_EQ_GT, - [32492] = 5, + [32515] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49833,7 +49877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_GT, anon_sym_EQ_GT, - [32513] = 7, + [32536] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49851,7 +49895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_MutSet, anon_sym_MutMap, anon_sym_MutArray, - [32538] = 4, + [32561] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49866,7 +49910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_protected, anon_sym_internal, - [32557] = 7, + [32580] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49884,7 +49928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_MutSet, anon_sym_MutMap, anon_sym_MutArray, - [32582] = 7, + [32605] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49902,7 +49946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_MutSet, anon_sym_MutMap, anon_sym_MutArray, - [32607] = 6, + [32630] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49919,7 +49963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_SEMI, anon_sym_QMARK, - [32630] = 6, + [32653] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49935,7 +49979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_QMARK, - [32652] = 8, + [32675] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49953,7 +49997,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(263), 2, sym_AUTOMATIC_SEMICOLON, anon_sym_SEMI, - [32678] = 5, + [32701] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -49968,7 +50012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_GT, anon_sym_EQ_GT, - [32698] = 8, + [32721] = 8, ACTIONS(1944), 1, anon_sym_LBRACE, ACTIONS(1946), 1, @@ -49986,7 +50030,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1952), 2, sym__string_fragment, sym__escape_sequence, - [32724] = 6, + [32747] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50002,7 +50046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_QMARK, - [32746] = 7, + [32769] = 7, ACTIONS(1946), 1, sym_comment, ACTIONS(1948), 1, @@ -50019,7 +50063,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(840), 2, sym_doc, aux_sym_string_repeat1, - [32770] = 8, + [32793] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50037,7 +50081,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(263), 2, sym_AUTOMATIC_SEMICOLON, anon_sym_SEMI, - [32796] = 8, + [32819] = 8, ACTIONS(1944), 1, anon_sym_LBRACE, ACTIONS(1946), 1, @@ -50055,7 +50099,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1952), 2, sym__string_fragment, sym__escape_sequence, - [32822] = 8, + [32845] = 8, ACTIONS(1944), 1, anon_sym_LBRACE, ACTIONS(1946), 1, @@ -50073,7 +50117,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1952), 2, sym__string_fragment, sym__escape_sequence, - [32848] = 5, + [32871] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50088,7 +50132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_GT, anon_sym_EQ_GT, - [32868] = 9, + [32891] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50107,7 +50151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1117), 1, sym_parenthesized_identifier, - [32896] = 8, + [32919] = 8, ACTIONS(1944), 1, anon_sym_LBRACE, ACTIONS(1946), 1, @@ -50125,7 +50169,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1952), 2, sym__string_fragment, sym__escape_sequence, - [32922] = 8, + [32945] = 8, ACTIONS(1944), 1, anon_sym_LBRACE, ACTIONS(1946), 1, @@ -50143,7 +50187,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1952), 2, sym__string_fragment, sym__escape_sequence, - [32948] = 5, + [32971] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50158,7 +50202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_GT, anon_sym_EQ_GT, - [32968] = 4, + [32991] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50172,7 +50216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK, - [32986] = 5, + [33009] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50187,7 +50231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_QMARK, - [33006] = 8, + [33029] = 8, ACTIONS(1944), 1, anon_sym_LBRACE, ACTIONS(1946), 1, @@ -50205,7 +50249,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1952), 2, sym__string_fragment, sym__escape_sequence, - [33032] = 6, + [33055] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50221,7 +50265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_EQ_GT, - [33054] = 4, + [33077] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50235,7 +50279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK, - [33072] = 8, + [33095] = 8, ACTIONS(1944), 1, anon_sym_LBRACE, ACTIONS(1946), 1, @@ -50253,7 +50297,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1952), 2, sym__string_fragment, sym__escape_sequence, - [33098] = 5, + [33121] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50268,7 +50312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_GT, anon_sym_EQ_GT, - [33118] = 8, + [33141] = 8, ACTIONS(1944), 1, anon_sym_LBRACE, ACTIONS(1946), 1, @@ -50286,7 +50330,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1952), 2, sym__string_fragment, sym__escape_sequence, - [33144] = 6, + [33167] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50302,7 +50346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_GT, anon_sym_EQ_GT, - [33166] = 8, + [33189] = 8, ACTIONS(1944), 1, anon_sym_LBRACE, ACTIONS(1946), 1, @@ -50320,7 +50364,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1952), 2, sym__string_fragment, sym__escape_sequence, - [33192] = 5, + [33215] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50335,7 +50379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_GT, anon_sym_EQ_GT, - [33212] = 8, + [33235] = 8, ACTIONS(1944), 1, anon_sym_LBRACE, ACTIONS(1946), 1, @@ -50353,7 +50397,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1952), 2, sym__string_fragment, sym__escape_sequence, - [33238] = 5, + [33261] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50368,7 +50412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_SEMI, anon_sym_QMARK, - [33258] = 8, + [33281] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50385,7 +50429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1232), 1, sym_parameter_definition, - [33283] = 8, + [33306] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50402,7 +50446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1109), 1, sym_parameter_definition, - [33308] = 8, + [33331] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50419,7 +50463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1195), 1, sym_custom_type, - [33333] = 4, + [33356] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50432,7 +50476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_SEMI, anon_sym_QMARK, - [33350] = 4, + [33373] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50445,7 +50489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_SEMI, anon_sym_COLON, - [33367] = 8, + [33390] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50462,7 +50506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1195), 1, sym_custom_type, - [33392] = 8, + [33415] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50479,7 +50523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1195), 1, sym_custom_type, - [33417] = 8, + [33440] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50496,7 +50540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_json_literal_member, STATE(1265), 1, sym_string, - [33442] = 8, + [33465] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50513,7 +50557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1195), 1, sym_custom_type, - [33467] = 4, + [33490] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50526,7 +50570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_SEMI, anon_sym_COLON, - [33484] = 8, + [33507] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50543,7 +50587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1232), 1, sym_parameter_definition, - [33509] = 8, + [33532] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50560,7 +50604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_json_literal_member, STATE(1265), 1, sym_string, - [33534] = 8, + [33557] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50577,7 +50621,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1232), 1, sym_parameter_definition, - [33559] = 8, + [33582] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50594,7 +50638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_json_literal_member, STATE(1265), 1, sym_string, - [33584] = 8, + [33607] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50611,7 +50655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1195), 1, sym_custom_type, - [33609] = 8, + [33632] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50628,7 +50672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_json_literal_member, STATE(1265), 1, sym_string, - [33634] = 6, + [33657] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50643,7 +50687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_EQ_GT, - [33655] = 8, + [33678] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50660,7 +50704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1135), 1, sym_parameter_definition, - [33680] = 8, + [33703] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50677,7 +50721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1195), 1, sym_custom_type, - [33705] = 8, + [33728] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50694,7 +50738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1025), 1, sym_parameter_definition, - [33730] = 8, + [33753] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50711,7 +50755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1195), 1, sym_custom_type, - [33755] = 4, + [33778] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50724,7 +50768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_SEMI, anon_sym_COLON, - [33772] = 8, + [33795] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50741,7 +50785,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1195), 1, sym_custom_type, - [33797] = 5, + [33820] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50755,7 +50799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_AUTOMATIC_BLOCK, anon_sym_LBRACE, anon_sym_SEMI, - [33816] = 8, + [33839] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50772,7 +50816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1232), 1, sym_parameter_definition, - [33841] = 8, + [33864] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50789,7 +50833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_json_literal_member, STATE(1265), 1, sym_string, - [33866] = 7, + [33889] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50805,7 +50849,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1875), 2, anon_sym_unphased, anon_sym_inflight, - [33889] = 8, + [33912] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50822,7 +50866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1232), 1, sym_parameter_definition, - [33914] = 4, + [33937] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50835,7 +50879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_SEMI, anon_sym_QMARK, - [33931] = 4, + [33954] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50848,7 +50892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_SEMI, anon_sym_QMARK, - [33948] = 8, + [33971] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50865,7 +50909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_json_literal_member, STATE(1265), 1, sym_string, - [33973] = 8, + [33996] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50882,7 +50926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1195), 1, sym_custom_type, - [33998] = 8, + [34021] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50899,7 +50943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1232), 1, sym_parameter_definition, - [34023] = 6, + [34046] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50914,7 +50958,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(895), 2, sym_doc, aux_sym_closure_modifiers_repeat1, - [34044] = 5, + [34067] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50928,7 +50972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_QMARK, - [34063] = 5, + [34086] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50942,7 +50986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_AUTOMATIC_BLOCK, anon_sym_LBRACE, anon_sym_SEMI, - [34082] = 8, + [34105] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50959,7 +51003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_json_literal_member, STATE(1265), 1, sym_string, - [34107] = 4, + [34130] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50972,7 +51016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ, anon_sym_QMARK, - [34124] = 4, + [34147] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -50985,7 +51029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_SEMI, anon_sym_QMARK, - [34141] = 8, + [34164] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51002,7 +51046,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1195), 1, sym_custom_type, - [34166] = 4, + [34189] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51015,7 +51059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_SEMI, anon_sym_QMARK, - [34183] = 4, + [34206] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51028,7 +51072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_SEMI, anon_sym_QMARK, - [34200] = 5, + [34223] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51042,7 +51086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_AUTOMATIC_BLOCK, anon_sym_LBRACE, anon_sym_SEMI, - [34219] = 4, + [34242] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51055,7 +51099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_SEMI, anon_sym_QMARK, - [34236] = 8, + [34259] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51072,7 +51116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1195), 1, sym_custom_type, - [34261] = 4, + [34284] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51085,7 +51129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_SEMI, anon_sym_QMARK, - [34278] = 4, + [34301] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51098,7 +51142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ, anon_sym_QMARK, - [34295] = 4, + [34318] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51111,7 +51155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_SEMI, anon_sym_COLON, - [34312] = 4, + [34335] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51124,7 +51168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_SEMI, anon_sym_QMARK, - [34329] = 8, + [34352] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51141,7 +51185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_json_literal_member, STATE(1265), 1, sym_string, - [34354] = 8, + [34377] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51158,7 +51202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1195), 1, sym_custom_type, - [34379] = 7, + [34402] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51173,7 +51217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_class_implementation, STATE(913), 1, sym_doc, - [34401] = 6, + [34424] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51187,7 +51231,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(914), 2, sym_doc, aux_sym_struct_definition_repeat2, - [34421] = 4, + [34444] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51199,7 +51243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_QMARK, - [34437] = 7, + [34460] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51214,7 +51258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(920), 1, sym__type_annotation, - [34459] = 4, + [34482] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51226,7 +51270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_QMARK, - [34475] = 6, + [34498] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51240,7 +51284,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2081), 2, anon_sym_RPAREN, anon_sym_COMMA, - [34495] = 6, + [34518] = 6, ACTIONS(1946), 1, sym_comment, ACTIONS(1948), 1, @@ -51254,7 +51298,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2085), 2, sym__non_interpolated_string_fragment, sym__escape_sequence, - [34515] = 6, + [34538] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51268,7 +51312,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(263), 2, sym_AUTOMATIC_SEMICOLON, anon_sym_SEMI, - [34535] = 7, + [34558] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51283,7 +51327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(921), 1, sym_doc, - [34557] = 7, + [34580] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51298,7 +51342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1048), 1, aux_sym_class_definition_repeat1, - [34579] = 7, + [34602] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51313,7 +51357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1062), 1, aux_sym_parameter_type_list_repeat1, - [34601] = 4, + [34624] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51325,7 +51369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_AUTOMATIC_BLOCK, anon_sym_LBRACE, anon_sym_SEMI, - [34617] = 7, + [34640] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51340,7 +51384,7 @@ static const uint16_t ts_small_parse_table[] = { sym__type_annotation, STATE(1304), 1, sym__return_type, - [34639] = 7, + [34662] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51355,7 +51399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_class_implementation, STATE(926), 1, sym_doc, - [34661] = 7, + [34684] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51370,7 +51414,7 @@ static const uint16_t ts_small_parse_table[] = { sym__type_annotation, STATE(1302), 1, sym__return_type, - [34683] = 7, + [34706] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51385,7 +51429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1048), 1, aux_sym_class_definition_repeat1, - [34705] = 5, + [34728] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51398,7 +51442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_AUTOMATIC_SEMICOLON, anon_sym_SEMI, anon_sym_EQ, - [34723] = 6, + [34746] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51412,7 +51456,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2111), 2, anon_sym_RPAREN, anon_sym_COMMA, - [34743] = 4, + [34766] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51424,7 +51468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_QMARK, - [34759] = 7, + [34782] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51439,7 +51483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(932), 1, sym_doc, - [34781] = 7, + [34804] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51454,7 +51498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(933), 1, sym_doc, - [34803] = 7, + [34826] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51469,7 +51513,7 @@ static const uint16_t ts_small_parse_table[] = { sym__return_type, STATE(1283), 1, sym__type_annotation, - [34825] = 4, + [34848] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51481,7 +51525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_QMARK, - [34841] = 7, + [34864] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51496,7 +51540,7 @@ static const uint16_t ts_small_parse_table[] = { sym__type_annotation, STATE(1295), 1, sym__return_type, - [34863] = 4, + [34886] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51508,7 +51552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_QMARK, - [34879] = 5, + [34902] = 5, ACTIONS(1946), 1, sym_comment, ACTIONS(1948), 1, @@ -51521,7 +51565,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2121), 2, sym__string_fragment, sym__escape_sequence, - [34897] = 5, + [34920] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51534,7 +51578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_AUTOMATIC_SEMICOLON, anon_sym_SEMI, anon_sym_EQ, - [34915] = 6, + [34938] = 6, ACTIONS(1946), 1, sym_comment, ACTIONS(1948), 1, @@ -51548,7 +51592,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2085), 2, sym__non_interpolated_string_fragment, sym__escape_sequence, - [34935] = 4, + [34958] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51560,7 +51604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_QMARK, - [34951] = 7, + [34974] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51575,7 +51619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1185), 1, sym_custom_type, - [34973] = 7, + [34996] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51590,7 +51634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(992), 1, aux_sym_class_definition_repeat1, - [34995] = 7, + [35018] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51605,7 +51649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1062), 1, aux_sym_parameter_type_list_repeat1, - [35017] = 7, + [35040] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51620,7 +51664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1048), 1, aux_sym_class_definition_repeat1, - [35039] = 6, + [35062] = 6, ACTIONS(1946), 1, sym_comment, ACTIONS(1948), 1, @@ -51634,7 +51678,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2085), 2, sym__non_interpolated_string_fragment, sym__escape_sequence, - [35059] = 5, + [35082] = 5, ACTIONS(1946), 1, sym_comment, ACTIONS(1948), 1, @@ -51647,7 +51691,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2137), 2, sym__string_fragment, sym__escape_sequence, - [35077] = 7, + [35100] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51662,7 +51706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1056), 1, sym_custom_type, - [35099] = 7, + [35122] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51677,7 +51721,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_struct_definition_repeat2, STATE(1236), 1, sym_struct_field, - [35121] = 7, + [35144] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51692,7 +51736,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1185), 1, sym_custom_type, - [35143] = 7, + [35166] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51707,7 +51751,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_struct_definition_repeat2, STATE(1236), 1, sym_struct_field, - [35165] = 4, + [35188] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51719,7 +51763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_QMARK, - [35181] = 5, + [35204] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51732,7 +51776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_AUTOMATIC_SEMICOLON, anon_sym_SEMI, anon_sym_EQ, - [35199] = 7, + [35222] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51747,7 +51791,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_struct_definition_repeat2, STATE(1236), 1, sym_struct_field, - [35221] = 7, + [35244] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51762,7 +51806,7 @@ static const uint16_t ts_small_parse_table[] = { sym__return_type, STATE(1283), 1, sym__type_annotation, - [35243] = 7, + [35266] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51777,7 +51821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1236), 1, sym_struct_field, - [35265] = 4, + [35288] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51789,7 +51833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_QMARK, - [35281] = 7, + [35304] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51804,7 +51848,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_struct_definition_repeat2, STATE(1236), 1, sym_struct_field, - [35303] = 7, + [35326] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51819,7 +51863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1236), 1, sym_struct_field, - [35325] = 7, + [35348] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51834,7 +51878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1236), 1, sym_struct_field, - [35347] = 7, + [35370] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51849,7 +51893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1185), 1, sym_custom_type, - [35369] = 6, + [35392] = 6, ACTIONS(1946), 1, sym_comment, ACTIONS(1948), 1, @@ -51863,7 +51907,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2085), 2, sym__non_interpolated_string_fragment, sym__escape_sequence, - [35389] = 7, + [35412] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51878,7 +51922,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_definition_repeat1, STATE(963), 1, sym_doc, - [35411] = 7, + [35434] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51893,7 +51937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(987), 1, aux_sym_class_definition_repeat1, - [35433] = 7, + [35456] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51908,7 +51952,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1004), 1, aux_sym_class_definition_repeat1, - [35455] = 7, + [35478] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51923,7 +51967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1236), 1, sym_struct_field, - [35477] = 7, + [35500] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51938,7 +51982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1236), 1, sym_struct_field, - [35499] = 4, + [35522] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51950,7 +51994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_EQ, anon_sym_QMARK, - [35515] = 6, + [35538] = 6, ACTIONS(1946), 1, sym_comment, ACTIONS(1948), 1, @@ -51964,7 +52008,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2085), 2, sym__non_interpolated_string_fragment, sym__escape_sequence, - [35535] = 7, + [35558] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51979,7 +52023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1236), 1, sym_struct_field, - [35557] = 7, + [35580] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -51994,7 +52038,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_struct_definition_repeat2, STATE(1236), 1, sym_struct_field, - [35579] = 7, + [35602] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52009,7 +52053,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1062), 1, aux_sym_parameter_type_list_repeat1, - [35601] = 7, + [35624] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52024,7 +52068,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_struct_definition_repeat2, STATE(1236), 1, sym_struct_field, - [35623] = 7, + [35646] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52039,7 +52083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1232), 1, sym_parameter_definition, - [35645] = 7, + [35668] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52054,7 +52098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1236), 1, sym_struct_field, - [35667] = 7, + [35690] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52069,7 +52113,7 @@ static const uint16_t ts_small_parse_table[] = { sym__type_annotation, STATE(1284), 1, sym__return_type, - [35689] = 6, + [35712] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52083,7 +52127,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1573), 2, anon_sym_RPAREN, anon_sym_COMMA, - [35709] = 6, + [35732] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52097,7 +52141,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(263), 2, sym_AUTOMATIC_SEMICOLON, anon_sym_SEMI, - [35729] = 7, + [35752] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52112,7 +52156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_json_literal_member, STATE(1265), 1, sym_string, - [35751] = 6, + [35774] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52126,7 +52170,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2191), 2, anon_sym_RPAREN, anon_sym_COMMA, - [35771] = 7, + [35794] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52141,7 +52185,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_definition_repeat1, STATE(981), 1, sym_doc, - [35793] = 7, + [35816] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52156,7 +52200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(982), 1, sym_doc, - [35815] = 7, + [35838] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52171,7 +52215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(983), 1, sym_doc, - [35837] = 7, + [35860] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52186,7 +52230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1042), 1, sym_custom_type, - [35859] = 7, + [35882] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52201,7 +52245,7 @@ static const uint16_t ts_small_parse_table[] = { sym__type_annotation, STATE(1291), 1, sym__return_type, - [35881] = 6, + [35904] = 6, ACTIONS(1946), 1, sym_comment, ACTIONS(1948), 1, @@ -52215,7 +52259,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2085), 2, sym__non_interpolated_string_fragment, sym__escape_sequence, - [35901] = 7, + [35924] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52230,7 +52274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1048), 1, aux_sym_class_definition_repeat1, - [35923] = 7, + [35946] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52245,7 +52289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1236), 1, sym_struct_field, - [35945] = 7, + [35968] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52260,7 +52304,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1236), 1, sym_struct_field, - [35967] = 6, + [35990] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52274,7 +52318,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(263), 2, sym_AUTOMATIC_SEMICOLON, anon_sym_SEMI, - [35987] = 6, + [36010] = 6, ACTIONS(1946), 1, sym_comment, ACTIONS(1948), 1, @@ -52288,7 +52332,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2085), 2, sym__non_interpolated_string_fragment, sym__escape_sequence, - [36007] = 7, + [36030] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52303,7 +52347,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1048), 1, aux_sym_class_definition_repeat1, - [36029] = 7, + [36052] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52318,7 +52362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1236), 1, sym_struct_field, - [36051] = 7, + [36074] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52333,7 +52377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1236), 1, sym_struct_field, - [36073] = 7, + [36096] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52348,7 +52392,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_struct_definition_repeat2, STATE(1236), 1, sym_struct_field, - [36095] = 7, + [36118] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52363,7 +52407,7 @@ static const uint16_t ts_small_parse_table[] = { sym__return_type, STATE(1283), 1, sym__type_annotation, - [36117] = 7, + [36140] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52378,7 +52422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1236), 1, sym_struct_field, - [36139] = 7, + [36162] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52393,7 +52437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1236), 1, sym_struct_field, - [36161] = 7, + [36184] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52408,7 +52452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1236), 1, sym_struct_field, - [36183] = 7, + [36206] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52423,7 +52467,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1185), 1, sym_custom_type, - [36205] = 6, + [36228] = 6, ACTIONS(1946), 1, sym_comment, ACTIONS(1948), 1, @@ -52437,7 +52481,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2085), 2, sym__non_interpolated_string_fragment, sym__escape_sequence, - [36225] = 7, + [36248] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52452,7 +52496,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_definition_repeat1, STATE(1002), 1, sym_doc, - [36247] = 7, + [36270] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52467,7 +52511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1003), 1, sym_doc, - [36269] = 7, + [36292] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52482,7 +52526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1048), 1, aux_sym_class_definition_repeat1, - [36291] = 5, + [36314] = 5, ACTIONS(1946), 1, sym_comment, ACTIONS(1948), 1, @@ -52495,7 +52539,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1005), 2, sym_doc, aux_sym_non_interpolated_string_repeat1, - [36309] = 7, + [36332] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52510,7 +52554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1236), 1, sym_struct_field, - [36331] = 7, + [36354] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52525,7 +52569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1236), 1, sym_struct_field, - [36353] = 7, + [36376] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52540,7 +52584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1236), 1, sym_struct_field, - [36375] = 7, + [36398] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52555,7 +52599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1062), 1, aux_sym_parameter_type_list_repeat1, - [36397] = 6, + [36420] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52568,7 +52612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1121), 1, aux_sym_lift_qualifications_repeat1, - [36416] = 6, + [36439] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52581,7 +52625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1091), 1, aux_sym_array_literal_repeat1, - [36435] = 5, + [36458] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52593,7 +52637,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1012), 2, sym_doc, aux_sym_struct_definition_repeat1, - [36452] = 5, + [36475] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52605,7 +52649,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1013), 2, sym_doc, aux_sym_map_literal_repeat1, - [36469] = 6, + [36492] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52618,7 +52662,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_lift_qualifications_repeat1, STATE(1014), 1, sym_doc, - [36488] = 6, + [36511] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52631,7 +52675,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_map_literal_repeat1, STATE(1015), 1, sym_doc, - [36507] = 5, + [36530] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52643,7 +52687,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1618), 2, anon_sym_RBRACE, anon_sym_COMMA, - [36524] = 6, + [36547] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52656,7 +52700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1052), 1, aux_sym_struct_literal_repeat1, - [36543] = 6, + [36566] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52669,7 +52713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1237), 1, sym_struct_literal_member, - [36562] = 6, + [36585] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52682,7 +52726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1111), 1, aux_sym_lift_qualification_repeat1, - [36581] = 6, + [36604] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52695,7 +52739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1237), 1, sym_struct_literal_member, - [36600] = 6, + [36623] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52708,7 +52752,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1021), 1, sym_doc, - [36619] = 6, + [36642] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52721,7 +52765,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1022), 1, sym_doc, - [36638] = 6, + [36661] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52734,7 +52778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1023), 1, sym_doc, - [36657] = 5, + [36680] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52746,7 +52790,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1024), 2, sym_doc, aux_sym_enum_definition_repeat1, - [36674] = 6, + [36697] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52759,7 +52803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1041), 1, aux_sym_parameter_list_repeat1, - [36693] = 6, + [36716] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52772,7 +52816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_custom_type, STATE(1026), 1, sym_doc, - [36712] = 6, + [36735] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52785,7 +52829,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1046), 1, aux_sym_map_literal_repeat1, - [36731] = 6, + [36754] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52798,7 +52842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1058), 1, aux_sym_json_map_literal_repeat1, - [36750] = 5, + [36773] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52810,7 +52854,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(263), 2, sym_AUTOMATIC_SEMICOLON, anon_sym_SEMI, - [36767] = 5, + [36790] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52822,7 +52866,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1030), 2, sym_doc, aux_sym_json_map_literal_repeat1, - [36784] = 6, + [36807] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52835,7 +52879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1031), 1, sym_doc, - [36803] = 6, + [36826] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52848,7 +52892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1032), 1, sym_doc, - [36822] = 6, + [36845] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52861,7 +52905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1254), 1, sym__type_annotation, - [36841] = 6, + [36864] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52874,7 +52918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1084), 1, sym_struct_literal_member, - [36860] = 6, + [36883] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52887,7 +52931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1035), 1, sym_doc, - [36879] = 5, + [36902] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52899,7 +52943,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1036), 2, sym_doc, aux_sym_lift_qualification_repeat1, - [36896] = 6, + [36919] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52912,7 +52956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1083), 1, aux_sym_argument_list_repeat1, - [36915] = 6, + [36938] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52925,7 +52969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1043), 1, aux_sym_map_literal_repeat1, - [36934] = 5, + [36957] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52937,7 +52981,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1039), 2, sym_doc, aux_sym_parameter_type_list_repeat1, - [36951] = 5, + [36974] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52949,7 +52993,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1040), 2, sym_doc, aux_sym_parameter_list_repeat1, - [36968] = 6, + [36991] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52962,7 +53006,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_parameter_list_repeat1, STATE(1041), 1, sym_doc, - [36987] = 6, + [37010] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52975,7 +53019,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1050), 1, aux_sym_struct_definition_repeat1, - [37006] = 6, + [37029] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -52988,7 +53032,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_map_literal_repeat1, STATE(1043), 1, sym_doc, - [37025] = 5, + [37048] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53000,7 +53044,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(263), 2, sym_AUTOMATIC_SEMICOLON, anon_sym_SEMI, - [37042] = 6, + [37065] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53013,7 +53057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1045), 1, sym_doc, - [37061] = 6, + [37084] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53026,7 +53070,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_map_literal_repeat1, STATE(1046), 1, sym_doc, - [37080] = 6, + [37103] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53039,7 +53083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1271), 1, sym__type_annotation, - [37099] = 5, + [37122] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53051,7 +53095,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1048), 2, sym_doc, aux_sym_class_definition_repeat1, - [37116] = 6, + [37139] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53064,7 +53108,7 @@ static const uint16_t ts_small_parse_table[] = { sym_class_implementation, STATE(1049), 1, sym_doc, - [37135] = 6, + [37158] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53077,7 +53121,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_struct_definition_repeat1, STATE(1050), 1, sym_doc, - [37154] = 6, + [37177] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53090,7 +53134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1051), 1, sym_doc, - [37173] = 5, + [37196] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53102,7 +53146,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1052), 2, sym_doc, aux_sym_struct_literal_repeat1, - [37190] = 6, + [37213] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53115,7 +53159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1053), 1, sym_doc, - [37209] = 6, + [37232] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53128,7 +53172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1237), 1, sym_struct_literal_member, - [37228] = 6, + [37251] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53141,7 +53185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1079), 1, sym_struct_literal_member, - [37247] = 6, + [37270] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53154,7 +53198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1143), 1, aux_sym_struct_definition_repeat1, - [37266] = 6, + [37289] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53167,7 +53211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1141), 1, aux_sym_enum_definition_repeat1, - [37285] = 6, + [37308] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53180,7 +53224,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_json_map_literal_repeat1, STATE(1058), 1, sym_doc, - [37304] = 6, + [37327] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53193,7 +53237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_custom_type, STATE(1059), 1, sym_doc, - [37323] = 6, + [37346] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53206,7 +53250,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_map_literal_repeat1, STATE(1060), 1, sym_doc, - [37342] = 6, + [37365] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53219,7 +53263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1061), 1, sym_doc, - [37361] = 6, + [37384] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53232,7 +53276,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_parameter_type_list_repeat1, STATE(1062), 1, sym_doc, - [37380] = 6, + [37403] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53245,7 +53289,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_struct_literal_repeat1, STATE(1063), 1, sym_doc, - [37399] = 6, + [37422] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53258,7 +53302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1078), 1, aux_sym_json_map_literal_repeat1, - [37418] = 6, + [37441] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53271,7 +53315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_custom_type, STATE(1065), 1, sym_doc, - [37437] = 6, + [37460] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53284,7 +53328,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_argument_list_repeat1, STATE(1066), 1, sym_doc, - [37456] = 6, + [37479] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53297,7 +53341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1091), 1, aux_sym_array_literal_repeat1, - [37475] = 6, + [37498] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53310,7 +53354,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_parameter_list_repeat1, STATE(1068), 1, sym_doc, - [37494] = 6, + [37517] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53323,7 +53367,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_struct_literal_repeat1, STATE(1069), 1, sym_doc, - [37513] = 6, + [37536] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53336,7 +53380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1083), 1, aux_sym_argument_list_repeat1, - [37532] = 6, + [37555] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53349,7 +53393,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1071), 1, sym_doc, - [37551] = 6, + [37574] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53362,7 +53406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_implementation, STATE(1072), 1, sym_doc, - [37570] = 6, + [37593] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53375,7 +53419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1091), 1, aux_sym_array_literal_repeat1, - [37589] = 5, + [37612] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53387,7 +53431,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2335), 2, anon_sym_RPAREN, anon_sym_COMMA, - [37606] = 6, + [37629] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53400,7 +53444,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_map_literal_repeat1, STATE(1075), 1, sym_doc, - [37625] = 6, + [37648] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53413,7 +53457,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1099), 1, aux_sym_argument_list_repeat1, - [37644] = 6, + [37667] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53426,7 +53470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1237), 1, sym_struct_literal_member, - [37663] = 6, + [37686] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53439,7 +53483,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_json_map_literal_repeat1, STATE(1078), 1, sym_doc, - [37682] = 6, + [37705] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53452,7 +53496,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_struct_literal_repeat1, STATE(1079), 1, sym_doc, - [37701] = 6, + [37724] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53465,7 +53509,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1195), 1, sym_custom_type, - [37720] = 6, + [37743] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53478,7 +53522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_custom_type, STATE(1081), 1, sym_doc, - [37739] = 6, + [37762] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53491,7 +53535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1082), 1, sym_doc, - [37758] = 5, + [37781] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53503,7 +53547,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1083), 2, sym_doc, aux_sym_argument_list_repeat1, - [37775] = 6, + [37798] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53516,7 +53560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1102), 1, aux_sym_struct_literal_repeat1, - [37794] = 6, + [37817] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53529,7 +53573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1085), 1, sym_doc, - [37813] = 6, + [37836] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53542,7 +53586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1132), 1, aux_sym_enum_definition_repeat1, - [37832] = 6, + [37855] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53555,7 +53599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1091), 1, aux_sym_array_literal_repeat1, - [37851] = 6, + [37874] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53568,7 +53612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_custom_type, STATE(1088), 1, sym_doc, - [37870] = 6, + [37893] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53581,7 +53625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1105), 1, aux_sym_map_literal_repeat1, - [37889] = 6, + [37912] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53594,7 +53638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_custom_type, STATE(1090), 1, sym_doc, - [37908] = 5, + [37931] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53606,7 +53650,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1091), 2, sym_doc, aux_sym_array_literal_repeat1, - [37925] = 6, + [37948] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53619,7 +53663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1092), 1, sym_doc, - [37944] = 6, + [37967] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53632,7 +53676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1093), 1, sym_doc, - [37963] = 6, + [37986] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53645,7 +53689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1094), 1, sym_doc, - [37982] = 6, + [38005] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53658,7 +53702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1095), 1, sym_doc, - [38001] = 5, + [38024] = 5, ACTIONS(1946), 1, sym_comment, ACTIONS(1948), 1, @@ -53670,7 +53714,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2475), 2, sym__non_interpolated_string_fragment, sym__escape_sequence, - [38018] = 6, + [38041] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53683,7 +53727,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1097), 1, sym_doc, - [38037] = 6, + [38060] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53696,7 +53740,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_map_literal_repeat1, STATE(1098), 1, sym_doc, - [38056] = 6, + [38079] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53709,7 +53753,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_argument_list_repeat1, STATE(1099), 1, sym_doc, - [38075] = 6, + [38098] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53722,7 +53766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1237), 1, sym_struct_literal_member, - [38094] = 5, + [38117] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53734,7 +53778,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(263), 2, sym_AUTOMATIC_SEMICOLON, anon_sym_SEMI, - [38111] = 6, + [38134] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53747,7 +53791,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_struct_literal_repeat1, STATE(1102), 1, sym_doc, - [38130] = 6, + [38153] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53760,7 +53804,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_json_map_literal_repeat1, STATE(1103), 1, sym_doc, - [38149] = 5, + [38172] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53772,7 +53816,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(263), 2, sym_AUTOMATIC_SEMICOLON, anon_sym_SEMI, - [38166] = 6, + [38189] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53785,7 +53829,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_map_literal_repeat1, STATE(1105), 1, sym_doc, - [38185] = 6, + [38208] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53798,7 +53842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1120), 1, aux_sym_map_literal_repeat1, - [38204] = 6, + [38227] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53811,7 +53855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1122), 1, aux_sym_json_map_literal_repeat1, - [38223] = 6, + [38246] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53824,7 +53868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_custom_type, STATE(1108), 1, sym_doc, - [38242] = 6, + [38265] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53837,7 +53881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1124), 1, aux_sym_parameter_list_repeat1, - [38261] = 5, + [38284] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53849,7 +53893,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2509), 2, anon_sym_RBRACE, anon_sym_COMMA, - [38278] = 6, + [38301] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53862,7 +53906,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_lift_qualification_repeat1, STATE(1111), 1, sym_doc, - [38297] = 4, + [38320] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53873,7 +53917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_unphased, anon_sym_inflight, - [38312] = 6, + [38335] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53886,7 +53930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_argument_list, STATE(1113), 1, sym_doc, - [38331] = 6, + [38354] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53899,7 +53943,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_array_literal_repeat1, STATE(1114), 1, sym_doc, - [38350] = 6, + [38373] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53912,7 +53956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1131), 1, sym_struct_literal_member, - [38369] = 6, + [38392] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53925,7 +53969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1116), 1, sym_doc, - [38388] = 6, + [38411] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53938,7 +53982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1117), 1, sym_doc, - [38407] = 6, + [38430] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53951,7 +53995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_struct_literal_member, STATE(1118), 1, sym_doc, - [38426] = 6, + [38449] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53964,7 +54008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1119), 1, sym_doc, - [38445] = 6, + [38468] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53977,7 +54021,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_map_literal_repeat1, STATE(1120), 1, sym_doc, - [38464] = 5, + [38487] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -53989,7 +54033,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1121), 2, sym_doc, aux_sym_lift_qualifications_repeat1, - [38481] = 6, + [38504] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54002,7 +54046,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_json_map_literal_repeat1, STATE(1122), 1, sym_doc, - [38500] = 6, + [38523] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54015,7 +54059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1123), 1, sym_doc, - [38519] = 6, + [38542] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54028,7 +54072,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_parameter_list_repeat1, STATE(1124), 1, sym_doc, - [38538] = 6, + [38561] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54041,7 +54085,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_map_literal_repeat1, STATE(1125), 1, sym_doc, - [38557] = 6, + [38580] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54054,7 +54098,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_array_literal_repeat1, STATE(1126), 1, sym_doc, - [38576] = 6, + [38599] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54067,7 +54111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1142), 1, aux_sym_argument_list_repeat1, - [38595] = 6, + [38618] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54080,7 +54124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1128), 1, sym_doc, - [38614] = 6, + [38637] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54093,7 +54137,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_map_literal_repeat1, STATE(1129), 1, sym_doc, - [38633] = 6, + [38656] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54106,7 +54150,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_json_map_literal_repeat1, STATE(1130), 1, sym_doc, - [38652] = 6, + [38675] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54119,7 +54163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1146), 1, aux_sym_struct_literal_repeat1, - [38671] = 6, + [38694] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54132,7 +54176,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_enum_definition_repeat1, STATE(1132), 1, sym_doc, - [38690] = 6, + [38713] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54145,7 +54189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1133), 1, sym_doc, - [38709] = 6, + [38732] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54158,7 +54202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1148), 1, aux_sym_map_literal_repeat1, - [38728] = 6, + [38751] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54171,7 +54215,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_parameter_list_repeat1, STATE(1135), 1, sym_doc, - [38747] = 6, + [38770] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54184,7 +54228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1136), 1, sym_doc, - [38766] = 6, + [38789] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54197,7 +54241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1185), 1, sym_custom_type, - [38785] = 6, + [38808] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54210,7 +54254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_implementation, STATE(1138), 1, sym_doc, - [38804] = 5, + [38827] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54222,7 +54266,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(263), 2, sym_AUTOMATIC_SEMICOLON, anon_sym_SEMI, - [38821] = 6, + [38844] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54235,7 +54279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1237), 1, sym_struct_literal_member, - [38840] = 6, + [38863] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54248,7 +54292,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_enum_definition_repeat1, STATE(1141), 1, sym_doc, - [38859] = 6, + [38882] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54261,7 +54305,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_argument_list_repeat1, STATE(1142), 1, sym_doc, - [38878] = 6, + [38901] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54274,7 +54318,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_struct_definition_repeat1, STATE(1143), 1, sym_doc, - [38897] = 5, + [38920] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54286,7 +54330,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(263), 2, sym_AUTOMATIC_SEMICOLON, anon_sym_SEMI, - [38914] = 6, + [38937] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54299,7 +54343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1237), 1, sym_struct_literal_member, - [38933] = 6, + [38956] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54312,7 +54356,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_struct_literal_repeat1, STATE(1146), 1, sym_doc, - [38952] = 6, + [38975] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54325,7 +54369,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_argument_list_repeat1, STATE(1147), 1, sym_doc, - [38971] = 6, + [38994] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54338,7 +54382,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_map_literal_repeat1, STATE(1148), 1, sym_doc, - [38990] = 6, + [39013] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54351,7 +54395,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1149), 1, sym_doc, - [39009] = 6, + [39032] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54364,7 +54408,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_array_literal_repeat1, STATE(1150), 1, sym_doc, - [39028] = 6, + [39051] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54377,7 +54421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1151), 1, sym_doc, - [39047] = 6, + [39070] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54390,7 +54434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, STATE(1152), 1, sym_doc, - [39066] = 6, + [39089] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54403,7 +54447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1237), 1, sym_struct_literal_member, - [39085] = 6, + [39108] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54416,7 +54460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1156), 1, sym_custom_type, - [39104] = 6, + [39127] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54429,7 +54473,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_array_literal_repeat1, STATE(1155), 1, sym_doc, - [39123] = 6, + [39146] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54442,7 +54486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_class_implementation, STATE(1156), 1, sym_doc, - [39142] = 4, + [39165] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54452,7 +54496,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2622), 2, sym_AUTOMATIC_BLOCK, anon_sym_LBRACE, - [39156] = 5, + [39179] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54463,7 +54507,7 @@ static const uint16_t ts_small_parse_table[] = { sym__container_value_type, STATE(1158), 1, sym_doc, - [39172] = 5, + [39195] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54474,7 +54518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_argument_list, STATE(1159), 1, sym_doc, - [39188] = 5, + [39211] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54485,7 +54529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parameter_list, STATE(1160), 1, sym_doc, - [39204] = 4, + [39227] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54495,7 +54539,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2628), 2, anon_sym_RBRACE, anon_sym_COMMA, - [39218] = 5, + [39241] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54506,7 +54550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1162), 1, sym_doc, - [39234] = 5, + [39257] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54517,7 +54561,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parameter_list, STATE(1163), 1, sym_doc, - [39250] = 5, + [39273] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54528,7 +54572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, STATE(1164), 1, sym_doc, - [39266] = 5, + [39289] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54539,7 +54583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parameter_list, STATE(1165), 1, sym_doc, - [39282] = 5, + [39305] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54550,7 +54594,7 @@ static const uint16_t ts_small_parse_table[] = { sym__container_value_type, STATE(1166), 1, sym_doc, - [39298] = 5, + [39321] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54561,7 +54605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1167), 1, sym_doc, - [39314] = 5, + [39337] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54572,7 +54616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, STATE(1168), 1, sym_doc, - [39330] = 5, + [39353] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54583,7 +54627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, STATE(1169), 1, sym_doc, - [39346] = 5, + [39369] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54594,7 +54638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parameter_list, STATE(1170), 1, sym_doc, - [39362] = 5, + [39385] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54605,7 +54649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, STATE(1171), 1, sym_doc, - [39378] = 5, + [39401] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54616,7 +54660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_argument_list, STATE(1172), 1, sym_doc, - [39394] = 5, + [39417] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54627,7 +54671,7 @@ static const uint16_t ts_small_parse_table[] = { sym__container_value_type, STATE(1173), 1, sym_doc, - [39410] = 5, + [39433] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54638,7 +54682,7 @@ static const uint16_t ts_small_parse_table[] = { sym__container_value_type, STATE(1174), 1, sym_doc, - [39426] = 5, + [39449] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54649,7 +54693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_argument_list, STATE(1175), 1, sym_doc, - [39442] = 5, + [39465] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54660,7 +54704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1303), 1, sym_parameter_type_list, - [39458] = 5, + [39481] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54671,7 +54715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1177), 1, sym_doc, - [39474] = 4, + [39497] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54681,7 +54725,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2041), 2, sym_AUTOMATIC_BLOCK, anon_sym_LBRACE, - [39488] = 5, + [39511] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54692,7 +54736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1179), 1, sym_doc, - [39504] = 5, + [39527] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54703,7 +54747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1273), 1, sym_parameter_type_list, - [39520] = 5, + [39543] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54714,7 +54758,7 @@ static const uint16_t ts_small_parse_table[] = { sym__container_value_type, STATE(1181), 1, sym_doc, - [39536] = 4, + [39559] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54724,7 +54768,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2662), 2, sym_AUTOMATIC_BLOCK, anon_sym_LBRACE, - [39550] = 5, + [39573] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54735,7 +54779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_reassignable, STATE(1183), 1, sym_doc, - [39566] = 4, + [39589] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54745,7 +54789,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2064), 2, anon_sym_COLON, anon_sym_EQ_GT, - [39580] = 4, + [39603] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54755,7 +54799,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2668), 2, anon_sym_LBRACE, anon_sym_COMMA, - [39594] = 5, + [39617] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54766,7 +54810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, STATE(1186), 1, sym_doc, - [39610] = 5, + [39633] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54777,7 +54821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, STATE(1187), 1, sym_doc, - [39626] = 4, + [39649] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54787,7 +54831,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2676), 2, anon_sym_RPAREN, anon_sym_COMMA, - [39640] = 5, + [39663] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54798,7 +54842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc, STATE(1299), 1, sym_parameter_type_list, - [39656] = 5, + [39679] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54809,7 +54853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, STATE(1190), 1, sym_doc, - [39672] = 4, + [39695] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54819,7 +54863,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2015), 2, anon_sym_COLON, anon_sym_EQ_GT, - [39686] = 5, + [39709] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54830,7 +54874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, STATE(1192), 1, sym_doc, - [39702] = 4, + [39725] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54840,7 +54884,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2064), 2, sym_AUTOMATIC_BLOCK, anon_sym_LBRACE, - [39716] = 5, + [39739] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54851,7 +54895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1194), 1, sym_doc, - [39732] = 4, + [39755] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54861,7 +54905,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2361), 2, anon_sym_LBRACE, anon_sym_COMMA, - [39746] = 4, + [39769] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54871,7 +54915,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2327), 2, anon_sym_COMMA, anon_sym_RBRACK, - [39760] = 4, + [39783] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54881,7 +54925,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2688), 2, anon_sym_RBRACE, anon_sym_COMMA, - [39774] = 4, + [39797] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54891,7 +54935,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2041), 2, anon_sym_COLON, anon_sym_EQ_GT, - [39788] = 5, + [39811] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54902,7 +54946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lift_qualifications, STATE(1199), 1, sym_doc, - [39804] = 5, + [39827] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54913,7 +54957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_variadic, STATE(1200), 1, sym_doc, - [39820] = 5, + [39843] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54924,7 +54968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, STATE(1201), 1, sym_doc, - [39836] = 5, + [39859] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54935,7 +54979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, STATE(1202), 1, sym_doc, - [39852] = 5, + [39875] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54946,7 +54990,7 @@ static const uint16_t ts_small_parse_table[] = { sym__container_value_type, STATE(1203), 1, sym_doc, - [39868] = 4, + [39891] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54956,7 +55000,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2702), 2, anon_sym_RBRACE, anon_sym_COMMA, - [39882] = 4, + [39905] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54966,7 +55010,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2704), 2, sym_AUTOMATIC_BLOCK, anon_sym_LBRACE, - [39896] = 5, + [39919] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54977,7 +55021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, STATE(1206), 1, sym_doc, - [39912] = 4, + [39935] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54987,7 +55031,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2708), 2, anon_sym_RBRACE, anon_sym_COMMA, - [39926] = 5, + [39949] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -54998,7 +55042,7 @@ static const uint16_t ts_small_parse_table[] = { sym__container_value_type, STATE(1208), 1, sym_doc, - [39942] = 5, + [39965] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55009,7 +55053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, STATE(1209), 1, sym_doc, - [39958] = 5, + [39981] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55020,7 +55064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_reassignable, STATE(1210), 1, sym_doc, - [39974] = 5, + [39997] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55031,7 +55075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_reassignable, STATE(1211), 1, sym_doc, - [39990] = 5, + [40013] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55042,7 +55086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1212), 1, sym_doc, - [40006] = 5, + [40029] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55053,7 +55097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, STATE(1213), 1, sym_doc, - [40022] = 5, + [40045] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55064,7 +55108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, STATE(1214), 1, sym_doc, - [40038] = 5, + [40061] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55075,7 +55119,7 @@ static const uint16_t ts_small_parse_table[] = { sym__container_value_type, STATE(1215), 1, sym_doc, - [40054] = 4, + [40077] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55085,7 +55129,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2724), 2, anon_sym_RBRACE, anon_sym_COMMA, - [40068] = 5, + [40091] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55096,7 +55140,7 @@ static const uint16_t ts_small_parse_table[] = { sym__container_value_type, STATE(1217), 1, sym_doc, - [40084] = 4, + [40107] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55106,7 +55150,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2728), 2, sym_AUTOMATIC_BLOCK, anon_sym_LBRACE, - [40098] = 5, + [40121] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55117,7 +55161,7 @@ static const uint16_t ts_small_parse_table[] = { sym__container_value_type, STATE(1219), 1, sym_doc, - [40114] = 5, + [40137] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55128,7 +55172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_argument_list, STATE(1220), 1, sym_doc, - [40130] = 4, + [40153] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55138,7 +55182,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2535), 2, anon_sym_RBRACE, anon_sym_COMMA, - [40144] = 4, + [40167] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55148,7 +55192,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2730), 2, anon_sym_RBRACE, sym_identifier, - [40158] = 4, + [40181] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55158,7 +55202,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2732), 2, anon_sym_RBRACE, anon_sym_COMMA, - [40172] = 4, + [40195] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55168,7 +55212,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2734), 2, anon_sym_RBRACE, anon_sym_COMMA, - [40186] = 5, + [40209] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55179,7 +55223,7 @@ static const uint16_t ts_small_parse_table[] = { sym__container_value_type, STATE(1225), 1, sym_doc, - [40202] = 5, + [40225] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55190,7 +55234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_string, STATE(1226), 1, sym_doc, - [40218] = 5, + [40241] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55201,7 +55245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, STATE(1227), 1, sym_doc, - [40234] = 5, + [40257] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55212,7 +55256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parameter_list, STATE(1228), 1, sym_doc, - [40250] = 4, + [40273] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55222,7 +55266,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2744), 2, anon_sym_RPAREN, anon_sym_COMMA, - [40264] = 4, + [40287] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55232,7 +55276,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2746), 2, anon_sym_RPAREN, anon_sym_COMMA, - [40278] = 4, + [40301] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55242,7 +55286,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2023), 2, anon_sym_COLON, anon_sym_EQ_GT, - [40292] = 4, + [40315] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55252,7 +55296,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2340), 2, anon_sym_RPAREN, anon_sym_COMMA, - [40306] = 5, + [40329] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55263,7 +55307,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parameter_list, STATE(1233), 1, sym_doc, - [40322] = 4, + [40345] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55273,7 +55317,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2023), 2, sym_AUTOMATIC_BLOCK, anon_sym_LBRACE, - [40336] = 5, + [40359] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55284,7 +55328,7 @@ static const uint16_t ts_small_parse_table[] = { sym__type_annotation, STATE(1235), 1, sym_doc, - [40352] = 4, + [40375] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55294,7 +55338,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2748), 2, anon_sym_RBRACE, sym_identifier, - [40366] = 4, + [40389] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55304,7 +55348,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2750), 2, anon_sym_RBRACE, anon_sym_COMMA, - [40380] = 5, + [40403] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55315,7 +55359,7 @@ static const uint16_t ts_small_parse_table[] = { sym__type_annotation, STATE(1238), 1, sym_doc, - [40396] = 5, + [40419] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55326,7 +55370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parameter_list, STATE(1239), 1, sym_doc, - [40412] = 5, + [40435] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55337,7 +55381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, STATE(1240), 1, sym_doc, - [40428] = 5, + [40451] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55348,7 +55392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, STATE(1241), 1, sym_doc, - [40444] = 4, + [40467] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55358,7 +55402,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2015), 2, sym_AUTOMATIC_BLOCK, anon_sym_LBRACE, - [40458] = 5, + [40481] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55369,7 +55413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_struct_literal_member, STATE(1243), 1, sym_doc, - [40474] = 4, + [40497] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55379,7 +55423,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2758), 2, anon_sym_RPAREN, anon_sym_COMMA, - [40488] = 4, + [40511] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55389,7 +55433,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2447), 2, anon_sym_RPAREN, anon_sym_COMMA, - [40502] = 4, + [40525] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55398,7 +55442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1246), 1, sym_doc, - [40515] = 4, + [40538] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55407,7 +55451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1247), 1, sym_doc, - [40528] = 4, + [40551] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55416,7 +55460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, STATE(1248), 1, sym_doc, - [40541] = 4, + [40564] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55425,7 +55469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, STATE(1249), 1, sym_doc, - [40554] = 4, + [40577] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55434,7 +55478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1250), 1, sym_doc, - [40567] = 4, + [40590] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55443,7 +55487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1251), 1, sym_doc, - [40580] = 4, + [40603] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55452,7 +55496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1252), 1, sym_doc, - [40593] = 4, + [40616] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55461,7 +55505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1253), 1, sym_doc, - [40606] = 4, + [40629] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55470,7 +55514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, STATE(1254), 1, sym_doc, - [40619] = 4, + [40642] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55479,7 +55523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1255), 1, sym_doc, - [40632] = 4, + [40655] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55488,7 +55532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, STATE(1256), 1, sym_doc, - [40645] = 4, + [40668] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55497,7 +55541,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1257), 1, sym_doc, - [40658] = 4, + [40681] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55506,7 +55550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1258), 1, sym_doc, - [40671] = 4, + [40694] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55515,7 +55559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1259), 1, sym_doc, - [40684] = 4, + [40707] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55524,7 +55568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1260), 1, sym_doc, - [40697] = 4, + [40720] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55533,7 +55577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, STATE(1261), 1, sym_doc, - [40710] = 4, + [40733] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55542,7 +55586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1262), 1, sym_doc, - [40723] = 4, + [40746] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55551,7 +55595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1263), 1, sym_doc, - [40736] = 4, + [40759] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55560,7 +55604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, STATE(1264), 1, sym_doc, - [40749] = 4, + [40772] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55569,7 +55613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, STATE(1265), 1, sym_doc, - [40762] = 4, + [40785] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55578,7 +55622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1266), 1, sym_doc, - [40775] = 4, + [40798] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55587,7 +55631,7 @@ static const uint16_t ts_small_parse_table[] = { ts_builtin_sym_end, STATE(1267), 1, sym_doc, - [40788] = 4, + [40811] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55596,7 +55640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, STATE(1268), 1, sym_doc, - [40801] = 4, + [40824] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55605,7 +55649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1269), 1, sym_doc, - [40814] = 4, + [40837] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55614,7 +55658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1270), 1, sym_doc, - [40827] = 4, + [40850] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55623,7 +55667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, STATE(1271), 1, sym_doc, - [40840] = 4, + [40863] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55632,7 +55676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(1272), 1, sym_doc, - [40853] = 4, + [40876] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55641,7 +55685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, STATE(1273), 1, sym_doc, - [40866] = 4, + [40889] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55650,7 +55694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1274), 1, sym_doc, - [40879] = 4, + [40902] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55659,7 +55703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1275), 1, sym_doc, - [40892] = 4, + [40915] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55668,7 +55712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(1276), 1, sym_doc, - [40905] = 4, + [40928] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55677,7 +55721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, STATE(1277), 1, sym_doc, - [40918] = 4, + [40941] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55686,7 +55730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, STATE(1278), 1, sym_doc, - [40931] = 4, + [40954] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55695,7 +55739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1279), 1, sym_doc, - [40944] = 4, + [40967] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55704,7 +55748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(1280), 1, sym_doc, - [40957] = 4, + [40980] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55713,7 +55757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1281), 1, sym_doc, - [40970] = 4, + [40993] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55722,7 +55766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1282), 1, sym_doc, - [40983] = 4, + [41006] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55731,7 +55775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(1283), 1, sym_doc, - [40996] = 4, + [41019] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55740,7 +55784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(1284), 1, sym_doc, - [41009] = 4, + [41032] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55749,7 +55793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1285), 1, sym_doc, - [41022] = 4, + [41045] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55758,7 +55802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1286), 1, sym_doc, - [41035] = 4, + [41058] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55767,7 +55811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, STATE(1287), 1, sym_doc, - [41048] = 4, + [41071] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55776,7 +55820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, STATE(1288), 1, sym_doc, - [41061] = 4, + [41084] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55785,7 +55829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, STATE(1289), 1, sym_doc, - [41074] = 4, + [41097] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55794,7 +55838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1290), 1, sym_doc, - [41087] = 4, + [41110] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55803,7 +55847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(1291), 1, sym_doc, - [41100] = 4, + [41123] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55812,7 +55856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1292), 1, sym_doc, - [41113] = 4, + [41136] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55821,7 +55865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, STATE(1293), 1, sym_doc, - [41126] = 4, + [41149] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55830,7 +55874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1294), 1, sym_doc, - [41139] = 4, + [41162] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55839,7 +55883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(1295), 1, sym_doc, - [41152] = 4, + [41175] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55848,7 +55892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, STATE(1296), 1, sym_doc, - [41165] = 4, + [41188] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55857,7 +55901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(1297), 1, sym_doc, - [41178] = 4, + [41201] = 4, ACTIONS(1946), 1, sym_comment, ACTIONS(1948), 1, @@ -55866,7 +55910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_doc_content, STATE(1298), 1, sym_doc, - [41191] = 4, + [41214] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55875,7 +55919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, STATE(1299), 1, sym_doc, - [41204] = 4, + [41227] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55884,7 +55928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, STATE(1300), 1, sym_doc, - [41217] = 4, + [41240] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55893,7 +55937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1301), 1, sym_doc, - [41230] = 4, + [41253] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55902,7 +55946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(1302), 1, sym_doc, - [41243] = 4, + [41266] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55911,7 +55955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, STATE(1303), 1, sym_doc, - [41256] = 4, + [41279] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55920,7 +55964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, STATE(1304), 1, sym_doc, - [41269] = 4, + [41292] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55929,7 +55973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, STATE(1305), 1, sym_doc, - [41282] = 4, + [41305] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55938,7 +55982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, STATE(1306), 1, sym_doc, - [41295] = 4, + [41318] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55947,7 +55991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, STATE(1307), 1, sym_doc, - [41308] = 4, + [41331] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55956,7 +56000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, STATE(1308), 1, sym_doc, - [41321] = 4, + [41344] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55965,7 +56009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, STATE(1309), 1, sym_doc, - [41334] = 4, + [41357] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, @@ -55974,7 +56018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, STATE(1310), 1, sym_doc, - [41347] = 1, + [41370] = 1, ACTIONS(2874), 1, ts_builtin_sym_end, }; @@ -56098,1014 +56142,1014 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(301)] = 7600, [SMALL_STATE(302)] = 7652, [SMALL_STATE(303)] = 7704, - [SMALL_STATE(304)] = 7780, - [SMALL_STATE(305)] = 7856, - [SMALL_STATE(306)] = 7932, - [SMALL_STATE(307)] = 8008, - [SMALL_STATE(308)] = 8084, - [SMALL_STATE(309)] = 8160, - [SMALL_STATE(310)] = 8233, - [SMALL_STATE(311)] = 8306, - [SMALL_STATE(312)] = 8379, - [SMALL_STATE(313)] = 8452, - [SMALL_STATE(314)] = 8525, - [SMALL_STATE(315)] = 8598, - [SMALL_STATE(316)] = 8671, - [SMALL_STATE(317)] = 8744, - [SMALL_STATE(318)] = 8817, - [SMALL_STATE(319)] = 8866, - [SMALL_STATE(320)] = 8939, - [SMALL_STATE(321)] = 9012, - [SMALL_STATE(322)] = 9085, - [SMALL_STATE(323)] = 9158, - [SMALL_STATE(324)] = 9231, - [SMALL_STATE(325)] = 9304, - [SMALL_STATE(326)] = 9377, - [SMALL_STATE(327)] = 9450, - [SMALL_STATE(328)] = 9513, - [SMALL_STATE(329)] = 9564, - [SMALL_STATE(330)] = 9624, - [SMALL_STATE(331)] = 9672, - [SMALL_STATE(332)] = 9722, - [SMALL_STATE(333)] = 9768, - [SMALL_STATE(334)] = 9818, - [SMALL_STATE(335)] = 9877, - [SMALL_STATE(336)] = 9922, - [SMALL_STATE(337)] = 9967, - [SMALL_STATE(338)] = 10012, - [SMALL_STATE(339)] = 10057, - [SMALL_STATE(340)] = 10116, - [SMALL_STATE(341)] = 10182, - [SMALL_STATE(342)] = 10256, - [SMALL_STATE(343)] = 10318, - [SMALL_STATE(344)] = 10376, - [SMALL_STATE(345)] = 10448, - [SMALL_STATE(346)] = 10522, - [SMALL_STATE(347)] = 10596, - [SMALL_STATE(348)] = 10666, - [SMALL_STATE(349)] = 10718, - [SMALL_STATE(350)] = 10792, - [SMALL_STATE(351)] = 10848, - [SMALL_STATE(352)] = 10892, - [SMALL_STATE(353)] = 10936, - [SMALL_STATE(354)] = 10984, - [SMALL_STATE(355)] = 11028, - [SMALL_STATE(356)] = 11102, - [SMALL_STATE(357)] = 11178, - [SMALL_STATE(358)] = 11246, - [SMALL_STATE(359)] = 11290, - [SMALL_STATE(360)] = 11356, - [SMALL_STATE(361)] = 11414, - [SMALL_STATE(362)] = 11488, - [SMALL_STATE(363)] = 11562, - [SMALL_STATE(364)] = 11638, - [SMALL_STATE(365)] = 11681, - [SMALL_STATE(366)] = 11728, - [SMALL_STATE(367)] = 11775, - [SMALL_STATE(368)] = 11818, - [SMALL_STATE(369)] = 11865, - [SMALL_STATE(370)] = 11908, - [SMALL_STATE(371)] = 11951, - [SMALL_STATE(372)] = 11994, - [SMALL_STATE(373)] = 12041, - [SMALL_STATE(374)] = 12083, - [SMALL_STATE(375)] = 12125, - [SMALL_STATE(376)] = 12171, - [SMALL_STATE(377)] = 12213, - [SMALL_STATE(378)] = 12255, - [SMALL_STATE(379)] = 12297, - [SMALL_STATE(380)] = 12339, - [SMALL_STATE(381)] = 12381, - [SMALL_STATE(382)] = 12423, - [SMALL_STATE(383)] = 12465, - [SMALL_STATE(384)] = 12507, - [SMALL_STATE(385)] = 12549, - [SMALL_STATE(386)] = 12591, - [SMALL_STATE(387)] = 12633, - [SMALL_STATE(388)] = 12675, - [SMALL_STATE(389)] = 12717, - [SMALL_STATE(390)] = 12759, - [SMALL_STATE(391)] = 12801, - [SMALL_STATE(392)] = 12843, - [SMALL_STATE(393)] = 12885, - [SMALL_STATE(394)] = 12927, - [SMALL_STATE(395)] = 12969, - [SMALL_STATE(396)] = 13011, - [SMALL_STATE(397)] = 13053, - [SMALL_STATE(398)] = 13095, - [SMALL_STATE(399)] = 13137, - [SMALL_STATE(400)] = 13179, - [SMALL_STATE(401)] = 13221, - [SMALL_STATE(402)] = 13263, - [SMALL_STATE(403)] = 13305, - [SMALL_STATE(404)] = 13347, - [SMALL_STATE(405)] = 13389, - [SMALL_STATE(406)] = 13431, - [SMALL_STATE(407)] = 13473, - [SMALL_STATE(408)] = 13515, - [SMALL_STATE(409)] = 13557, - [SMALL_STATE(410)] = 13599, - [SMALL_STATE(411)] = 13641, - [SMALL_STATE(412)] = 13683, - [SMALL_STATE(413)] = 13725, - [SMALL_STATE(414)] = 13767, - [SMALL_STATE(415)] = 13809, - [SMALL_STATE(416)] = 13851, - [SMALL_STATE(417)] = 13893, - [SMALL_STATE(418)] = 13935, - [SMALL_STATE(419)] = 13977, - [SMALL_STATE(420)] = 14019, - [SMALL_STATE(421)] = 14061, - [SMALL_STATE(422)] = 14103, - [SMALL_STATE(423)] = 14145, - [SMALL_STATE(424)] = 14187, - [SMALL_STATE(425)] = 14229, - [SMALL_STATE(426)] = 14275, - [SMALL_STATE(427)] = 14317, - [SMALL_STATE(428)] = 14359, - [SMALL_STATE(429)] = 14401, - [SMALL_STATE(430)] = 14443, - [SMALL_STATE(431)] = 14485, - [SMALL_STATE(432)] = 14527, - [SMALL_STATE(433)] = 14569, - [SMALL_STATE(434)] = 14611, - [SMALL_STATE(435)] = 14653, - [SMALL_STATE(436)] = 14695, - [SMALL_STATE(437)] = 14737, - [SMALL_STATE(438)] = 14786, - [SMALL_STATE(439)] = 14833, - [SMALL_STATE(440)] = 14874, - [SMALL_STATE(441)] = 14917, - [SMALL_STATE(442)] = 14962, - [SMALL_STATE(443)] = 15035, - [SMALL_STATE(444)] = 15108, - [SMALL_STATE(445)] = 15149, - [SMALL_STATE(446)] = 15190, - [SMALL_STATE(447)] = 15263, - [SMALL_STATE(448)] = 15338, - [SMALL_STATE(449)] = 15411, - [SMALL_STATE(450)] = 15486, - [SMALL_STATE(451)] = 15551, - [SMALL_STATE(452)] = 15618, - [SMALL_STATE(453)] = 15687, - [SMALL_STATE(454)] = 15732, - [SMALL_STATE(455)] = 15803, - [SMALL_STATE(456)] = 15858, - [SMALL_STATE(457)] = 15915, - [SMALL_STATE(458)] = 15976, - [SMALL_STATE(459)] = 16041, - [SMALL_STATE(460)] = 16114, - [SMALL_STATE(461)] = 16159, - [SMALL_STATE(462)] = 16200, - [SMALL_STATE(463)] = 16257, - [SMALL_STATE(464)] = 16330, - [SMALL_STATE(465)] = 16375, - [SMALL_STATE(466)] = 16420, - [SMALL_STATE(467)] = 16493, - [SMALL_STATE(468)] = 16572, - [SMALL_STATE(469)] = 16644, - [SMALL_STATE(470)] = 16710, - [SMALL_STATE(471)] = 16780, - [SMALL_STATE(472)] = 16852, - [SMALL_STATE(473)] = 16904, - [SMALL_STATE(474)] = 16974, - [SMALL_STATE(475)] = 17044, - [SMALL_STATE(476)] = 17098, - [SMALL_STATE(477)] = 17140, - [SMALL_STATE(478)] = 17188, - [SMALL_STATE(479)] = 17260, - [SMALL_STATE(480)] = 17330, - [SMALL_STATE(481)] = 17374, - [SMALL_STATE(482)] = 17444, - [SMALL_STATE(483)] = 17516, - [SMALL_STATE(484)] = 17564, - [SMALL_STATE(485)] = 17608, - [SMALL_STATE(486)] = 17678, - [SMALL_STATE(487)] = 17752, - [SMALL_STATE(488)] = 17822, - [SMALL_STATE(489)] = 17866, - [SMALL_STATE(490)] = 17940, - [SMALL_STATE(491)] = 18012, - [SMALL_STATE(492)] = 18086, - [SMALL_STATE(493)] = 18126, - [SMALL_STATE(494)] = 18166, - [SMALL_STATE(495)] = 18238, - [SMALL_STATE(496)] = 18282, - [SMALL_STATE(497)] = 18354, - [SMALL_STATE(498)] = 18394, - [SMALL_STATE(499)] = 18438, - [SMALL_STATE(500)] = 18478, - [SMALL_STATE(501)] = 18548, - [SMALL_STATE(502)] = 18620, - [SMALL_STATE(503)] = 18690, - [SMALL_STATE(504)] = 18734, - [SMALL_STATE(505)] = 18806, - [SMALL_STATE(506)] = 18868, - [SMALL_STATE(507)] = 18940, - [SMALL_STATE(508)] = 19004, - [SMALL_STATE(509)] = 19048, - [SMALL_STATE(510)] = 19118, - [SMALL_STATE(511)] = 19192, - [SMALL_STATE(512)] = 19232, - [SMALL_STATE(513)] = 19300, - [SMALL_STATE(514)] = 19352, - [SMALL_STATE(515)] = 19424, - [SMALL_STATE(516)] = 19464, - [SMALL_STATE(517)] = 19504, - [SMALL_STATE(518)] = 19578, - [SMALL_STATE(519)] = 19652, - [SMALL_STATE(520)] = 19692, - [SMALL_STATE(521)] = 19746, - [SMALL_STATE(522)] = 19816, - [SMALL_STATE(523)] = 19878, - [SMALL_STATE(524)] = 19942, - [SMALL_STATE(525)] = 20008, - [SMALL_STATE(526)] = 20076, - [SMALL_STATE(527)] = 20128, - [SMALL_STATE(528)] = 20198, - [SMALL_STATE(529)] = 20252, - [SMALL_STATE(530)] = 20326, - [SMALL_STATE(531)] = 20400, - [SMALL_STATE(532)] = 20458, - [SMALL_STATE(533)] = 20520, - [SMALL_STATE(534)] = 20590, - [SMALL_STATE(535)] = 20644, - [SMALL_STATE(536)] = 20684, - [SMALL_STATE(537)] = 20742, - [SMALL_STATE(538)] = 20812, - [SMALL_STATE(539)] = 20874, - [SMALL_STATE(540)] = 20948, - [SMALL_STATE(541)] = 21020, - [SMALL_STATE(542)] = 21068, - [SMALL_STATE(543)] = 21142, - [SMALL_STATE(544)] = 21216, - [SMALL_STATE(545)] = 21288, - [SMALL_STATE(546)] = 21362, - [SMALL_STATE(547)] = 21434, - [SMALL_STATE(548)] = 21476, - [SMALL_STATE(549)] = 21550, - [SMALL_STATE(550)] = 21624, - [SMALL_STATE(551)] = 21698, - [SMALL_STATE(552)] = 21737, - [SMALL_STATE(553)] = 21776, - [SMALL_STATE(554)] = 21815, - [SMALL_STATE(555)] = 21860, - [SMALL_STATE(556)] = 21899, - [SMALL_STATE(557)] = 21938, - [SMALL_STATE(558)] = 21977, - [SMALL_STATE(559)] = 22046, - [SMALL_STATE(560)] = 22089, - [SMALL_STATE(561)] = 22128, - [SMALL_STATE(562)] = 22197, - [SMALL_STATE(563)] = 22236, - [SMALL_STATE(564)] = 22275, - [SMALL_STATE(565)] = 22314, - [SMALL_STATE(566)] = 22353, - [SMALL_STATE(567)] = 22396, - [SMALL_STATE(568)] = 22435, - [SMALL_STATE(569)] = 22474, - [SMALL_STATE(570)] = 22513, - [SMALL_STATE(571)] = 22552, - [SMALL_STATE(572)] = 22591, - [SMALL_STATE(573)] = 22660, - [SMALL_STATE(574)] = 22699, - [SMALL_STATE(575)] = 22738, - [SMALL_STATE(576)] = 22777, - [SMALL_STATE(577)] = 22816, - [SMALL_STATE(578)] = 22859, - [SMALL_STATE(579)] = 22898, - [SMALL_STATE(580)] = 22937, - [SMALL_STATE(581)] = 22976, - [SMALL_STATE(582)] = 23015, - [SMALL_STATE(583)] = 23054, - [SMALL_STATE(584)] = 23093, - [SMALL_STATE(585)] = 23132, - [SMALL_STATE(586)] = 23171, - [SMALL_STATE(587)] = 23210, - [SMALL_STATE(588)] = 23249, - [SMALL_STATE(589)] = 23288, - [SMALL_STATE(590)] = 23331, - [SMALL_STATE(591)] = 23370, - [SMALL_STATE(592)] = 23439, - [SMALL_STATE(593)] = 23478, - [SMALL_STATE(594)] = 23517, - [SMALL_STATE(595)] = 23586, - [SMALL_STATE(596)] = 23625, - [SMALL_STATE(597)] = 23694, - [SMALL_STATE(598)] = 23733, - [SMALL_STATE(599)] = 23772, - [SMALL_STATE(600)] = 23811, - [SMALL_STATE(601)] = 23850, - [SMALL_STATE(602)] = 23889, - [SMALL_STATE(603)] = 23928, - [SMALL_STATE(604)] = 23967, - [SMALL_STATE(605)] = 24006, - [SMALL_STATE(606)] = 24045, - [SMALL_STATE(607)] = 24084, - [SMALL_STATE(608)] = 24123, - [SMALL_STATE(609)] = 24162, - [SMALL_STATE(610)] = 24231, - [SMALL_STATE(611)] = 24270, - [SMALL_STATE(612)] = 24309, - [SMALL_STATE(613)] = 24352, - [SMALL_STATE(614)] = 24421, - [SMALL_STATE(615)] = 24460, - [SMALL_STATE(616)] = 24499, - [SMALL_STATE(617)] = 24538, - [SMALL_STATE(618)] = 24577, - [SMALL_STATE(619)] = 24616, - [SMALL_STATE(620)] = 24655, - [SMALL_STATE(621)] = 24694, - [SMALL_STATE(622)] = 24733, - [SMALL_STATE(623)] = 24772, - [SMALL_STATE(624)] = 24811, - [SMALL_STATE(625)] = 24850, - [SMALL_STATE(626)] = 24889, - [SMALL_STATE(627)] = 24928, - [SMALL_STATE(628)] = 24967, - [SMALL_STATE(629)] = 25006, - [SMALL_STATE(630)] = 25045, - [SMALL_STATE(631)] = 25084, - [SMALL_STATE(632)] = 25123, - [SMALL_STATE(633)] = 25162, - [SMALL_STATE(634)] = 25201, - [SMALL_STATE(635)] = 25240, - [SMALL_STATE(636)] = 25279, - [SMALL_STATE(637)] = 25318, - [SMALL_STATE(638)] = 25357, - [SMALL_STATE(639)] = 25396, - [SMALL_STATE(640)] = 25435, - [SMALL_STATE(641)] = 25474, - [SMALL_STATE(642)] = 25513, - [SMALL_STATE(643)] = 25552, - [SMALL_STATE(644)] = 25591, - [SMALL_STATE(645)] = 25630, - [SMALL_STATE(646)] = 25668, - [SMALL_STATE(647)] = 25706, - [SMALL_STATE(648)] = 25746, - [SMALL_STATE(649)] = 25814, - [SMALL_STATE(650)] = 25852, - [SMALL_STATE(651)] = 25890, - [SMALL_STATE(652)] = 25928, - [SMALL_STATE(653)] = 25966, - [SMALL_STATE(654)] = 26004, - [SMALL_STATE(655)] = 26042, - [SMALL_STATE(656)] = 26080, - [SMALL_STATE(657)] = 26118, - [SMALL_STATE(658)] = 26156, - [SMALL_STATE(659)] = 26194, - [SMALL_STATE(660)] = 26232, - [SMALL_STATE(661)] = 26270, - [SMALL_STATE(662)] = 26308, - [SMALL_STATE(663)] = 26346, - [SMALL_STATE(664)] = 26384, - [SMALL_STATE(665)] = 26422, - [SMALL_STATE(666)] = 26460, - [SMALL_STATE(667)] = 26498, - [SMALL_STATE(668)] = 26536, - [SMALL_STATE(669)] = 26574, - [SMALL_STATE(670)] = 26612, - [SMALL_STATE(671)] = 26680, - [SMALL_STATE(672)] = 26718, - [SMALL_STATE(673)] = 26756, - [SMALL_STATE(674)] = 26794, - [SMALL_STATE(675)] = 26832, - [SMALL_STATE(676)] = 26870, - [SMALL_STATE(677)] = 26908, - [SMALL_STATE(678)] = 26946, - [SMALL_STATE(679)] = 26984, - [SMALL_STATE(680)] = 27022, - [SMALL_STATE(681)] = 27060, - [SMALL_STATE(682)] = 27098, - [SMALL_STATE(683)] = 27136, - [SMALL_STATE(684)] = 27204, - [SMALL_STATE(685)] = 27242, - [SMALL_STATE(686)] = 27280, - [SMALL_STATE(687)] = 27318, - [SMALL_STATE(688)] = 27356, - [SMALL_STATE(689)] = 27424, - [SMALL_STATE(690)] = 27492, - [SMALL_STATE(691)] = 27560, - [SMALL_STATE(692)] = 27598, - [SMALL_STATE(693)] = 27636, - [SMALL_STATE(694)] = 27674, - [SMALL_STATE(695)] = 27742, - [SMALL_STATE(696)] = 27780, - [SMALL_STATE(697)] = 27818, - [SMALL_STATE(698)] = 27856, - [SMALL_STATE(699)] = 27894, - [SMALL_STATE(700)] = 27932, - [SMALL_STATE(701)] = 27970, - [SMALL_STATE(702)] = 28008, - [SMALL_STATE(703)] = 28046, - [SMALL_STATE(704)] = 28084, - [SMALL_STATE(705)] = 28122, - [SMALL_STATE(706)] = 28160, - [SMALL_STATE(707)] = 28198, - [SMALL_STATE(708)] = 28236, - [SMALL_STATE(709)] = 28274, - [SMALL_STATE(710)] = 28312, - [SMALL_STATE(711)] = 28350, - [SMALL_STATE(712)] = 28388, - [SMALL_STATE(713)] = 28426, - [SMALL_STATE(714)] = 28464, - [SMALL_STATE(715)] = 28502, - [SMALL_STATE(716)] = 28540, - [SMALL_STATE(717)] = 28578, - [SMALL_STATE(718)] = 28616, - [SMALL_STATE(719)] = 28654, - [SMALL_STATE(720)] = 28692, - [SMALL_STATE(721)] = 28730, - [SMALL_STATE(722)] = 28768, - [SMALL_STATE(723)] = 28806, - [SMALL_STATE(724)] = 28844, - [SMALL_STATE(725)] = 28882, - [SMALL_STATE(726)] = 28920, - [SMALL_STATE(727)] = 28958, - [SMALL_STATE(728)] = 28996, - [SMALL_STATE(729)] = 29034, - [SMALL_STATE(730)] = 29102, - [SMALL_STATE(731)] = 29140, - [SMALL_STATE(732)] = 29178, - [SMALL_STATE(733)] = 29216, - [SMALL_STATE(734)] = 29254, - [SMALL_STATE(735)] = 29292, - [SMALL_STATE(736)] = 29330, - [SMALL_STATE(737)] = 29368, - [SMALL_STATE(738)] = 29406, - [SMALL_STATE(739)] = 29444, - [SMALL_STATE(740)] = 29482, - [SMALL_STATE(741)] = 29520, - [SMALL_STATE(742)] = 29558, - [SMALL_STATE(743)] = 29596, - [SMALL_STATE(744)] = 29634, - [SMALL_STATE(745)] = 29672, - [SMALL_STATE(746)] = 29710, - [SMALL_STATE(747)] = 29748, - [SMALL_STATE(748)] = 29786, - [SMALL_STATE(749)] = 29824, - [SMALL_STATE(750)] = 29862, - [SMALL_STATE(751)] = 29930, - [SMALL_STATE(752)] = 29968, - [SMALL_STATE(753)] = 30006, - [SMALL_STATE(754)] = 30044, - [SMALL_STATE(755)] = 30082, - [SMALL_STATE(756)] = 30150, - [SMALL_STATE(757)] = 30218, - [SMALL_STATE(758)] = 30256, - [SMALL_STATE(759)] = 30294, - [SMALL_STATE(760)] = 30332, - [SMALL_STATE(761)] = 30370, - [SMALL_STATE(762)] = 30408, - [SMALL_STATE(763)] = 30446, - [SMALL_STATE(764)] = 30484, - [SMALL_STATE(765)] = 30522, - [SMALL_STATE(766)] = 30560, - [SMALL_STATE(767)] = 30598, - [SMALL_STATE(768)] = 30636, - [SMALL_STATE(769)] = 30674, - [SMALL_STATE(770)] = 30712, - [SMALL_STATE(771)] = 30750, - [SMALL_STATE(772)] = 30788, - [SMALL_STATE(773)] = 30826, - [SMALL_STATE(774)] = 30865, - [SMALL_STATE(775)] = 30929, - [SMALL_STATE(776)] = 30995, - [SMALL_STATE(777)] = 31061, - [SMALL_STATE(778)] = 31121, - [SMALL_STATE(779)] = 31179, - [SMALL_STATE(780)] = 31239, - [SMALL_STATE(781)] = 31266, - [SMALL_STATE(782)] = 31291, - [SMALL_STATE(783)] = 31327, - [SMALL_STATE(784)] = 31361, - [SMALL_STATE(785)] = 31386, - [SMALL_STATE(786)] = 31411, - [SMALL_STATE(787)] = 31444, - [SMALL_STATE(788)] = 31469, - [SMALL_STATE(789)] = 31494, - [SMALL_STATE(790)] = 31519, - [SMALL_STATE(791)] = 31544, - [SMALL_STATE(792)] = 31575, - [SMALL_STATE(793)] = 31600, - [SMALL_STATE(794)] = 31625, - [SMALL_STATE(795)] = 31650, - [SMALL_STATE(796)] = 31675, - [SMALL_STATE(797)] = 31700, - [SMALL_STATE(798)] = 31725, - [SMALL_STATE(799)] = 31750, - [SMALL_STATE(800)] = 31775, - [SMALL_STATE(801)] = 31800, - [SMALL_STATE(802)] = 31828, - [SMALL_STATE(803)] = 31852, - [SMALL_STATE(804)] = 31880, - [SMALL_STATE(805)] = 31912, - [SMALL_STATE(806)] = 31937, - [SMALL_STATE(807)] = 31962, - [SMALL_STATE(808)] = 31997, - [SMALL_STATE(809)] = 32032, - [SMALL_STATE(810)] = 32059, - [SMALL_STATE(811)] = 32079, - [SMALL_STATE(812)] = 32103, - [SMALL_STATE(813)] = 32125, - [SMALL_STATE(814)] = 32147, - [SMALL_STATE(815)] = 32167, - [SMALL_STATE(816)] = 32187, - [SMALL_STATE(817)] = 32213, - [SMALL_STATE(818)] = 32237, - [SMALL_STATE(819)] = 32261, - [SMALL_STATE(820)] = 32281, - [SMALL_STATE(821)] = 32301, - [SMALL_STATE(822)] = 32327, - [SMALL_STATE(823)] = 32348, - [SMALL_STATE(824)] = 32371, - [SMALL_STATE(825)] = 32400, - [SMALL_STATE(826)] = 32421, - [SMALL_STATE(827)] = 32446, - [SMALL_STATE(828)] = 32469, - [SMALL_STATE(829)] = 32492, - [SMALL_STATE(830)] = 32513, - [SMALL_STATE(831)] = 32538, - [SMALL_STATE(832)] = 32557, - [SMALL_STATE(833)] = 32582, - [SMALL_STATE(834)] = 32607, - [SMALL_STATE(835)] = 32630, - [SMALL_STATE(836)] = 32652, - [SMALL_STATE(837)] = 32678, - [SMALL_STATE(838)] = 32698, - [SMALL_STATE(839)] = 32724, - [SMALL_STATE(840)] = 32746, - [SMALL_STATE(841)] = 32770, - [SMALL_STATE(842)] = 32796, - [SMALL_STATE(843)] = 32822, - [SMALL_STATE(844)] = 32848, - [SMALL_STATE(845)] = 32868, - [SMALL_STATE(846)] = 32896, - [SMALL_STATE(847)] = 32922, - [SMALL_STATE(848)] = 32948, - [SMALL_STATE(849)] = 32968, - [SMALL_STATE(850)] = 32986, - [SMALL_STATE(851)] = 33006, - [SMALL_STATE(852)] = 33032, - [SMALL_STATE(853)] = 33054, - [SMALL_STATE(854)] = 33072, - [SMALL_STATE(855)] = 33098, - [SMALL_STATE(856)] = 33118, - [SMALL_STATE(857)] = 33144, - [SMALL_STATE(858)] = 33166, - [SMALL_STATE(859)] = 33192, - [SMALL_STATE(860)] = 33212, - [SMALL_STATE(861)] = 33238, - [SMALL_STATE(862)] = 33258, - [SMALL_STATE(863)] = 33283, - [SMALL_STATE(864)] = 33308, - [SMALL_STATE(865)] = 33333, - [SMALL_STATE(866)] = 33350, - [SMALL_STATE(867)] = 33367, - [SMALL_STATE(868)] = 33392, - [SMALL_STATE(869)] = 33417, - [SMALL_STATE(870)] = 33442, - [SMALL_STATE(871)] = 33467, - [SMALL_STATE(872)] = 33484, - [SMALL_STATE(873)] = 33509, - [SMALL_STATE(874)] = 33534, - [SMALL_STATE(875)] = 33559, - [SMALL_STATE(876)] = 33584, - [SMALL_STATE(877)] = 33609, - [SMALL_STATE(878)] = 33634, - [SMALL_STATE(879)] = 33655, - [SMALL_STATE(880)] = 33680, - [SMALL_STATE(881)] = 33705, - [SMALL_STATE(882)] = 33730, - [SMALL_STATE(883)] = 33755, - [SMALL_STATE(884)] = 33772, - [SMALL_STATE(885)] = 33797, - [SMALL_STATE(886)] = 33816, - [SMALL_STATE(887)] = 33841, - [SMALL_STATE(888)] = 33866, - [SMALL_STATE(889)] = 33889, - [SMALL_STATE(890)] = 33914, - [SMALL_STATE(891)] = 33931, - [SMALL_STATE(892)] = 33948, - [SMALL_STATE(893)] = 33973, - [SMALL_STATE(894)] = 33998, - [SMALL_STATE(895)] = 34023, - [SMALL_STATE(896)] = 34044, - [SMALL_STATE(897)] = 34063, - [SMALL_STATE(898)] = 34082, - [SMALL_STATE(899)] = 34107, - [SMALL_STATE(900)] = 34124, - [SMALL_STATE(901)] = 34141, - [SMALL_STATE(902)] = 34166, - [SMALL_STATE(903)] = 34183, - [SMALL_STATE(904)] = 34200, - [SMALL_STATE(905)] = 34219, - [SMALL_STATE(906)] = 34236, - [SMALL_STATE(907)] = 34261, - [SMALL_STATE(908)] = 34278, - [SMALL_STATE(909)] = 34295, - [SMALL_STATE(910)] = 34312, - [SMALL_STATE(911)] = 34329, - [SMALL_STATE(912)] = 34354, - [SMALL_STATE(913)] = 34379, - [SMALL_STATE(914)] = 34401, - [SMALL_STATE(915)] = 34421, - [SMALL_STATE(916)] = 34437, - [SMALL_STATE(917)] = 34459, - [SMALL_STATE(918)] = 34475, - [SMALL_STATE(919)] = 34495, - [SMALL_STATE(920)] = 34515, - [SMALL_STATE(921)] = 34535, - [SMALL_STATE(922)] = 34557, - [SMALL_STATE(923)] = 34579, - [SMALL_STATE(924)] = 34601, - [SMALL_STATE(925)] = 34617, - [SMALL_STATE(926)] = 34639, - [SMALL_STATE(927)] = 34661, - [SMALL_STATE(928)] = 34683, - [SMALL_STATE(929)] = 34705, - [SMALL_STATE(930)] = 34723, - [SMALL_STATE(931)] = 34743, - [SMALL_STATE(932)] = 34759, - [SMALL_STATE(933)] = 34781, - [SMALL_STATE(934)] = 34803, - [SMALL_STATE(935)] = 34825, - [SMALL_STATE(936)] = 34841, - [SMALL_STATE(937)] = 34863, - [SMALL_STATE(938)] = 34879, - [SMALL_STATE(939)] = 34897, - [SMALL_STATE(940)] = 34915, - [SMALL_STATE(941)] = 34935, - [SMALL_STATE(942)] = 34951, - [SMALL_STATE(943)] = 34973, - [SMALL_STATE(944)] = 34995, - [SMALL_STATE(945)] = 35017, - [SMALL_STATE(946)] = 35039, - [SMALL_STATE(947)] = 35059, - [SMALL_STATE(948)] = 35077, - [SMALL_STATE(949)] = 35099, - [SMALL_STATE(950)] = 35121, - [SMALL_STATE(951)] = 35143, - [SMALL_STATE(952)] = 35165, - [SMALL_STATE(953)] = 35181, - [SMALL_STATE(954)] = 35199, - [SMALL_STATE(955)] = 35221, - [SMALL_STATE(956)] = 35243, - [SMALL_STATE(957)] = 35265, - [SMALL_STATE(958)] = 35281, - [SMALL_STATE(959)] = 35303, - [SMALL_STATE(960)] = 35325, - [SMALL_STATE(961)] = 35347, - [SMALL_STATE(962)] = 35369, - [SMALL_STATE(963)] = 35389, - [SMALL_STATE(964)] = 35411, - [SMALL_STATE(965)] = 35433, - [SMALL_STATE(966)] = 35455, - [SMALL_STATE(967)] = 35477, - [SMALL_STATE(968)] = 35499, - [SMALL_STATE(969)] = 35515, - [SMALL_STATE(970)] = 35535, - [SMALL_STATE(971)] = 35557, - [SMALL_STATE(972)] = 35579, - [SMALL_STATE(973)] = 35601, - [SMALL_STATE(974)] = 35623, - [SMALL_STATE(975)] = 35645, - [SMALL_STATE(976)] = 35667, - [SMALL_STATE(977)] = 35689, - [SMALL_STATE(978)] = 35709, - [SMALL_STATE(979)] = 35729, - [SMALL_STATE(980)] = 35751, - [SMALL_STATE(981)] = 35771, - [SMALL_STATE(982)] = 35793, - [SMALL_STATE(983)] = 35815, - [SMALL_STATE(984)] = 35837, - [SMALL_STATE(985)] = 35859, - [SMALL_STATE(986)] = 35881, - [SMALL_STATE(987)] = 35901, - [SMALL_STATE(988)] = 35923, - [SMALL_STATE(989)] = 35945, - [SMALL_STATE(990)] = 35967, - [SMALL_STATE(991)] = 35987, - [SMALL_STATE(992)] = 36007, - [SMALL_STATE(993)] = 36029, - [SMALL_STATE(994)] = 36051, - [SMALL_STATE(995)] = 36073, - [SMALL_STATE(996)] = 36095, - [SMALL_STATE(997)] = 36117, - [SMALL_STATE(998)] = 36139, - [SMALL_STATE(999)] = 36161, - [SMALL_STATE(1000)] = 36183, - [SMALL_STATE(1001)] = 36205, - [SMALL_STATE(1002)] = 36225, - [SMALL_STATE(1003)] = 36247, - [SMALL_STATE(1004)] = 36269, - [SMALL_STATE(1005)] = 36291, - [SMALL_STATE(1006)] = 36309, - [SMALL_STATE(1007)] = 36331, - [SMALL_STATE(1008)] = 36353, - [SMALL_STATE(1009)] = 36375, - [SMALL_STATE(1010)] = 36397, - [SMALL_STATE(1011)] = 36416, - [SMALL_STATE(1012)] = 36435, - [SMALL_STATE(1013)] = 36452, - [SMALL_STATE(1014)] = 36469, - [SMALL_STATE(1015)] = 36488, - [SMALL_STATE(1016)] = 36507, - [SMALL_STATE(1017)] = 36524, - [SMALL_STATE(1018)] = 36543, - [SMALL_STATE(1019)] = 36562, - [SMALL_STATE(1020)] = 36581, - [SMALL_STATE(1021)] = 36600, - [SMALL_STATE(1022)] = 36619, - [SMALL_STATE(1023)] = 36638, - [SMALL_STATE(1024)] = 36657, - [SMALL_STATE(1025)] = 36674, - [SMALL_STATE(1026)] = 36693, - [SMALL_STATE(1027)] = 36712, - [SMALL_STATE(1028)] = 36731, - [SMALL_STATE(1029)] = 36750, - [SMALL_STATE(1030)] = 36767, - [SMALL_STATE(1031)] = 36784, - [SMALL_STATE(1032)] = 36803, - [SMALL_STATE(1033)] = 36822, - [SMALL_STATE(1034)] = 36841, - [SMALL_STATE(1035)] = 36860, - [SMALL_STATE(1036)] = 36879, - [SMALL_STATE(1037)] = 36896, - [SMALL_STATE(1038)] = 36915, - [SMALL_STATE(1039)] = 36934, - [SMALL_STATE(1040)] = 36951, - [SMALL_STATE(1041)] = 36968, - [SMALL_STATE(1042)] = 36987, - [SMALL_STATE(1043)] = 37006, - [SMALL_STATE(1044)] = 37025, - [SMALL_STATE(1045)] = 37042, - [SMALL_STATE(1046)] = 37061, - [SMALL_STATE(1047)] = 37080, - [SMALL_STATE(1048)] = 37099, - [SMALL_STATE(1049)] = 37116, - [SMALL_STATE(1050)] = 37135, - [SMALL_STATE(1051)] = 37154, - [SMALL_STATE(1052)] = 37173, - [SMALL_STATE(1053)] = 37190, - [SMALL_STATE(1054)] = 37209, - [SMALL_STATE(1055)] = 37228, - [SMALL_STATE(1056)] = 37247, - [SMALL_STATE(1057)] = 37266, - [SMALL_STATE(1058)] = 37285, - [SMALL_STATE(1059)] = 37304, - [SMALL_STATE(1060)] = 37323, - [SMALL_STATE(1061)] = 37342, - [SMALL_STATE(1062)] = 37361, - [SMALL_STATE(1063)] = 37380, - [SMALL_STATE(1064)] = 37399, - [SMALL_STATE(1065)] = 37418, - [SMALL_STATE(1066)] = 37437, - [SMALL_STATE(1067)] = 37456, - [SMALL_STATE(1068)] = 37475, - [SMALL_STATE(1069)] = 37494, - [SMALL_STATE(1070)] = 37513, - [SMALL_STATE(1071)] = 37532, - [SMALL_STATE(1072)] = 37551, - [SMALL_STATE(1073)] = 37570, - [SMALL_STATE(1074)] = 37589, - [SMALL_STATE(1075)] = 37606, - [SMALL_STATE(1076)] = 37625, - [SMALL_STATE(1077)] = 37644, - [SMALL_STATE(1078)] = 37663, - [SMALL_STATE(1079)] = 37682, - [SMALL_STATE(1080)] = 37701, - [SMALL_STATE(1081)] = 37720, - [SMALL_STATE(1082)] = 37739, - [SMALL_STATE(1083)] = 37758, - [SMALL_STATE(1084)] = 37775, - [SMALL_STATE(1085)] = 37794, - [SMALL_STATE(1086)] = 37813, - [SMALL_STATE(1087)] = 37832, - [SMALL_STATE(1088)] = 37851, - [SMALL_STATE(1089)] = 37870, - [SMALL_STATE(1090)] = 37889, - [SMALL_STATE(1091)] = 37908, - [SMALL_STATE(1092)] = 37925, - [SMALL_STATE(1093)] = 37944, - [SMALL_STATE(1094)] = 37963, - [SMALL_STATE(1095)] = 37982, - [SMALL_STATE(1096)] = 38001, - [SMALL_STATE(1097)] = 38018, - [SMALL_STATE(1098)] = 38037, - [SMALL_STATE(1099)] = 38056, - [SMALL_STATE(1100)] = 38075, - [SMALL_STATE(1101)] = 38094, - [SMALL_STATE(1102)] = 38111, - [SMALL_STATE(1103)] = 38130, - [SMALL_STATE(1104)] = 38149, - [SMALL_STATE(1105)] = 38166, - [SMALL_STATE(1106)] = 38185, - [SMALL_STATE(1107)] = 38204, - [SMALL_STATE(1108)] = 38223, - [SMALL_STATE(1109)] = 38242, - [SMALL_STATE(1110)] = 38261, - [SMALL_STATE(1111)] = 38278, - [SMALL_STATE(1112)] = 38297, - [SMALL_STATE(1113)] = 38312, - [SMALL_STATE(1114)] = 38331, - [SMALL_STATE(1115)] = 38350, - [SMALL_STATE(1116)] = 38369, - [SMALL_STATE(1117)] = 38388, - [SMALL_STATE(1118)] = 38407, - [SMALL_STATE(1119)] = 38426, - [SMALL_STATE(1120)] = 38445, - [SMALL_STATE(1121)] = 38464, - [SMALL_STATE(1122)] = 38481, - [SMALL_STATE(1123)] = 38500, - [SMALL_STATE(1124)] = 38519, - [SMALL_STATE(1125)] = 38538, - [SMALL_STATE(1126)] = 38557, - [SMALL_STATE(1127)] = 38576, - [SMALL_STATE(1128)] = 38595, - [SMALL_STATE(1129)] = 38614, - [SMALL_STATE(1130)] = 38633, - [SMALL_STATE(1131)] = 38652, - [SMALL_STATE(1132)] = 38671, - [SMALL_STATE(1133)] = 38690, - [SMALL_STATE(1134)] = 38709, - [SMALL_STATE(1135)] = 38728, - [SMALL_STATE(1136)] = 38747, - [SMALL_STATE(1137)] = 38766, - [SMALL_STATE(1138)] = 38785, - [SMALL_STATE(1139)] = 38804, - [SMALL_STATE(1140)] = 38821, - [SMALL_STATE(1141)] = 38840, - [SMALL_STATE(1142)] = 38859, - [SMALL_STATE(1143)] = 38878, - [SMALL_STATE(1144)] = 38897, - [SMALL_STATE(1145)] = 38914, - [SMALL_STATE(1146)] = 38933, - [SMALL_STATE(1147)] = 38952, - [SMALL_STATE(1148)] = 38971, - [SMALL_STATE(1149)] = 38990, - [SMALL_STATE(1150)] = 39009, - [SMALL_STATE(1151)] = 39028, - [SMALL_STATE(1152)] = 39047, - [SMALL_STATE(1153)] = 39066, - [SMALL_STATE(1154)] = 39085, - [SMALL_STATE(1155)] = 39104, - [SMALL_STATE(1156)] = 39123, - [SMALL_STATE(1157)] = 39142, - [SMALL_STATE(1158)] = 39156, - [SMALL_STATE(1159)] = 39172, - [SMALL_STATE(1160)] = 39188, - [SMALL_STATE(1161)] = 39204, - [SMALL_STATE(1162)] = 39218, - [SMALL_STATE(1163)] = 39234, - [SMALL_STATE(1164)] = 39250, - [SMALL_STATE(1165)] = 39266, - [SMALL_STATE(1166)] = 39282, - [SMALL_STATE(1167)] = 39298, - [SMALL_STATE(1168)] = 39314, - [SMALL_STATE(1169)] = 39330, - [SMALL_STATE(1170)] = 39346, - [SMALL_STATE(1171)] = 39362, - [SMALL_STATE(1172)] = 39378, - [SMALL_STATE(1173)] = 39394, - [SMALL_STATE(1174)] = 39410, - [SMALL_STATE(1175)] = 39426, - [SMALL_STATE(1176)] = 39442, - [SMALL_STATE(1177)] = 39458, - [SMALL_STATE(1178)] = 39474, - [SMALL_STATE(1179)] = 39488, - [SMALL_STATE(1180)] = 39504, - [SMALL_STATE(1181)] = 39520, - [SMALL_STATE(1182)] = 39536, - [SMALL_STATE(1183)] = 39550, - [SMALL_STATE(1184)] = 39566, - [SMALL_STATE(1185)] = 39580, - [SMALL_STATE(1186)] = 39594, - [SMALL_STATE(1187)] = 39610, - [SMALL_STATE(1188)] = 39626, - [SMALL_STATE(1189)] = 39640, - [SMALL_STATE(1190)] = 39656, - [SMALL_STATE(1191)] = 39672, - [SMALL_STATE(1192)] = 39686, - [SMALL_STATE(1193)] = 39702, - [SMALL_STATE(1194)] = 39716, - [SMALL_STATE(1195)] = 39732, - [SMALL_STATE(1196)] = 39746, - [SMALL_STATE(1197)] = 39760, - [SMALL_STATE(1198)] = 39774, - [SMALL_STATE(1199)] = 39788, - [SMALL_STATE(1200)] = 39804, - [SMALL_STATE(1201)] = 39820, - [SMALL_STATE(1202)] = 39836, - [SMALL_STATE(1203)] = 39852, - [SMALL_STATE(1204)] = 39868, - [SMALL_STATE(1205)] = 39882, - [SMALL_STATE(1206)] = 39896, - [SMALL_STATE(1207)] = 39912, - [SMALL_STATE(1208)] = 39926, - [SMALL_STATE(1209)] = 39942, - [SMALL_STATE(1210)] = 39958, - [SMALL_STATE(1211)] = 39974, - [SMALL_STATE(1212)] = 39990, - [SMALL_STATE(1213)] = 40006, - [SMALL_STATE(1214)] = 40022, - [SMALL_STATE(1215)] = 40038, - [SMALL_STATE(1216)] = 40054, - [SMALL_STATE(1217)] = 40068, - [SMALL_STATE(1218)] = 40084, - [SMALL_STATE(1219)] = 40098, - [SMALL_STATE(1220)] = 40114, - [SMALL_STATE(1221)] = 40130, - [SMALL_STATE(1222)] = 40144, - [SMALL_STATE(1223)] = 40158, - [SMALL_STATE(1224)] = 40172, - [SMALL_STATE(1225)] = 40186, - [SMALL_STATE(1226)] = 40202, - [SMALL_STATE(1227)] = 40218, - [SMALL_STATE(1228)] = 40234, - [SMALL_STATE(1229)] = 40250, - [SMALL_STATE(1230)] = 40264, - [SMALL_STATE(1231)] = 40278, - [SMALL_STATE(1232)] = 40292, - [SMALL_STATE(1233)] = 40306, - [SMALL_STATE(1234)] = 40322, - [SMALL_STATE(1235)] = 40336, - [SMALL_STATE(1236)] = 40352, - [SMALL_STATE(1237)] = 40366, - [SMALL_STATE(1238)] = 40380, - [SMALL_STATE(1239)] = 40396, - [SMALL_STATE(1240)] = 40412, - [SMALL_STATE(1241)] = 40428, - [SMALL_STATE(1242)] = 40444, - [SMALL_STATE(1243)] = 40458, - [SMALL_STATE(1244)] = 40474, - [SMALL_STATE(1245)] = 40488, - [SMALL_STATE(1246)] = 40502, - [SMALL_STATE(1247)] = 40515, - [SMALL_STATE(1248)] = 40528, - [SMALL_STATE(1249)] = 40541, - [SMALL_STATE(1250)] = 40554, - [SMALL_STATE(1251)] = 40567, - [SMALL_STATE(1252)] = 40580, - [SMALL_STATE(1253)] = 40593, - [SMALL_STATE(1254)] = 40606, - [SMALL_STATE(1255)] = 40619, - [SMALL_STATE(1256)] = 40632, - [SMALL_STATE(1257)] = 40645, - [SMALL_STATE(1258)] = 40658, - [SMALL_STATE(1259)] = 40671, - [SMALL_STATE(1260)] = 40684, - [SMALL_STATE(1261)] = 40697, - [SMALL_STATE(1262)] = 40710, - [SMALL_STATE(1263)] = 40723, - [SMALL_STATE(1264)] = 40736, - [SMALL_STATE(1265)] = 40749, - [SMALL_STATE(1266)] = 40762, - [SMALL_STATE(1267)] = 40775, - [SMALL_STATE(1268)] = 40788, - [SMALL_STATE(1269)] = 40801, - [SMALL_STATE(1270)] = 40814, - [SMALL_STATE(1271)] = 40827, - [SMALL_STATE(1272)] = 40840, - [SMALL_STATE(1273)] = 40853, - [SMALL_STATE(1274)] = 40866, - [SMALL_STATE(1275)] = 40879, - [SMALL_STATE(1276)] = 40892, - [SMALL_STATE(1277)] = 40905, - [SMALL_STATE(1278)] = 40918, - [SMALL_STATE(1279)] = 40931, - [SMALL_STATE(1280)] = 40944, - [SMALL_STATE(1281)] = 40957, - [SMALL_STATE(1282)] = 40970, - [SMALL_STATE(1283)] = 40983, - [SMALL_STATE(1284)] = 40996, - [SMALL_STATE(1285)] = 41009, - [SMALL_STATE(1286)] = 41022, - [SMALL_STATE(1287)] = 41035, - [SMALL_STATE(1288)] = 41048, - [SMALL_STATE(1289)] = 41061, - [SMALL_STATE(1290)] = 41074, - [SMALL_STATE(1291)] = 41087, - [SMALL_STATE(1292)] = 41100, - [SMALL_STATE(1293)] = 41113, - [SMALL_STATE(1294)] = 41126, - [SMALL_STATE(1295)] = 41139, - [SMALL_STATE(1296)] = 41152, - [SMALL_STATE(1297)] = 41165, - [SMALL_STATE(1298)] = 41178, - [SMALL_STATE(1299)] = 41191, - [SMALL_STATE(1300)] = 41204, - [SMALL_STATE(1301)] = 41217, - [SMALL_STATE(1302)] = 41230, - [SMALL_STATE(1303)] = 41243, - [SMALL_STATE(1304)] = 41256, - [SMALL_STATE(1305)] = 41269, - [SMALL_STATE(1306)] = 41282, - [SMALL_STATE(1307)] = 41295, - [SMALL_STATE(1308)] = 41308, - [SMALL_STATE(1309)] = 41321, - [SMALL_STATE(1310)] = 41334, - [SMALL_STATE(1311)] = 41347, + [SMALL_STATE(304)] = 7781, + [SMALL_STATE(305)] = 7858, + [SMALL_STATE(306)] = 7935, + [SMALL_STATE(307)] = 8012, + [SMALL_STATE(308)] = 8089, + [SMALL_STATE(309)] = 8166, + [SMALL_STATE(310)] = 8240, + [SMALL_STATE(311)] = 8314, + [SMALL_STATE(312)] = 8388, + [SMALL_STATE(313)] = 8462, + [SMALL_STATE(314)] = 8536, + [SMALL_STATE(315)] = 8610, + [SMALL_STATE(316)] = 8684, + [SMALL_STATE(317)] = 8758, + [SMALL_STATE(318)] = 8832, + [SMALL_STATE(319)] = 8906, + [SMALL_STATE(320)] = 8980, + [SMALL_STATE(321)] = 9054, + [SMALL_STATE(322)] = 9128, + [SMALL_STATE(323)] = 9202, + [SMALL_STATE(324)] = 9276, + [SMALL_STATE(325)] = 9350, + [SMALL_STATE(326)] = 9424, + [SMALL_STATE(327)] = 9473, + [SMALL_STATE(328)] = 9536, + [SMALL_STATE(329)] = 9587, + [SMALL_STATE(330)] = 9647, + [SMALL_STATE(331)] = 9695, + [SMALL_STATE(332)] = 9745, + [SMALL_STATE(333)] = 9791, + [SMALL_STATE(334)] = 9841, + [SMALL_STATE(335)] = 9900, + [SMALL_STATE(336)] = 9945, + [SMALL_STATE(337)] = 9990, + [SMALL_STATE(338)] = 10035, + [SMALL_STATE(339)] = 10080, + [SMALL_STATE(340)] = 10139, + [SMALL_STATE(341)] = 10205, + [SMALL_STATE(342)] = 10279, + [SMALL_STATE(343)] = 10341, + [SMALL_STATE(344)] = 10399, + [SMALL_STATE(345)] = 10471, + [SMALL_STATE(346)] = 10545, + [SMALL_STATE(347)] = 10619, + [SMALL_STATE(348)] = 10689, + [SMALL_STATE(349)] = 10741, + [SMALL_STATE(350)] = 10815, + [SMALL_STATE(351)] = 10871, + [SMALL_STATE(352)] = 10915, + [SMALL_STATE(353)] = 10959, + [SMALL_STATE(354)] = 11007, + [SMALL_STATE(355)] = 11051, + [SMALL_STATE(356)] = 11125, + [SMALL_STATE(357)] = 11201, + [SMALL_STATE(358)] = 11269, + [SMALL_STATE(359)] = 11313, + [SMALL_STATE(360)] = 11379, + [SMALL_STATE(361)] = 11437, + [SMALL_STATE(362)] = 11511, + [SMALL_STATE(363)] = 11585, + [SMALL_STATE(364)] = 11661, + [SMALL_STATE(365)] = 11704, + [SMALL_STATE(366)] = 11751, + [SMALL_STATE(367)] = 11798, + [SMALL_STATE(368)] = 11841, + [SMALL_STATE(369)] = 11888, + [SMALL_STATE(370)] = 11931, + [SMALL_STATE(371)] = 11974, + [SMALL_STATE(372)] = 12017, + [SMALL_STATE(373)] = 12064, + [SMALL_STATE(374)] = 12106, + [SMALL_STATE(375)] = 12148, + [SMALL_STATE(376)] = 12194, + [SMALL_STATE(377)] = 12236, + [SMALL_STATE(378)] = 12278, + [SMALL_STATE(379)] = 12320, + [SMALL_STATE(380)] = 12362, + [SMALL_STATE(381)] = 12404, + [SMALL_STATE(382)] = 12446, + [SMALL_STATE(383)] = 12488, + [SMALL_STATE(384)] = 12530, + [SMALL_STATE(385)] = 12572, + [SMALL_STATE(386)] = 12614, + [SMALL_STATE(387)] = 12656, + [SMALL_STATE(388)] = 12698, + [SMALL_STATE(389)] = 12740, + [SMALL_STATE(390)] = 12782, + [SMALL_STATE(391)] = 12824, + [SMALL_STATE(392)] = 12866, + [SMALL_STATE(393)] = 12908, + [SMALL_STATE(394)] = 12950, + [SMALL_STATE(395)] = 12992, + [SMALL_STATE(396)] = 13034, + [SMALL_STATE(397)] = 13076, + [SMALL_STATE(398)] = 13118, + [SMALL_STATE(399)] = 13160, + [SMALL_STATE(400)] = 13202, + [SMALL_STATE(401)] = 13244, + [SMALL_STATE(402)] = 13286, + [SMALL_STATE(403)] = 13328, + [SMALL_STATE(404)] = 13370, + [SMALL_STATE(405)] = 13412, + [SMALL_STATE(406)] = 13454, + [SMALL_STATE(407)] = 13496, + [SMALL_STATE(408)] = 13538, + [SMALL_STATE(409)] = 13580, + [SMALL_STATE(410)] = 13622, + [SMALL_STATE(411)] = 13664, + [SMALL_STATE(412)] = 13706, + [SMALL_STATE(413)] = 13748, + [SMALL_STATE(414)] = 13790, + [SMALL_STATE(415)] = 13832, + [SMALL_STATE(416)] = 13874, + [SMALL_STATE(417)] = 13916, + [SMALL_STATE(418)] = 13958, + [SMALL_STATE(419)] = 14000, + [SMALL_STATE(420)] = 14042, + [SMALL_STATE(421)] = 14084, + [SMALL_STATE(422)] = 14126, + [SMALL_STATE(423)] = 14168, + [SMALL_STATE(424)] = 14210, + [SMALL_STATE(425)] = 14252, + [SMALL_STATE(426)] = 14298, + [SMALL_STATE(427)] = 14340, + [SMALL_STATE(428)] = 14382, + [SMALL_STATE(429)] = 14424, + [SMALL_STATE(430)] = 14466, + [SMALL_STATE(431)] = 14508, + [SMALL_STATE(432)] = 14550, + [SMALL_STATE(433)] = 14592, + [SMALL_STATE(434)] = 14634, + [SMALL_STATE(435)] = 14676, + [SMALL_STATE(436)] = 14718, + [SMALL_STATE(437)] = 14760, + [SMALL_STATE(438)] = 14809, + [SMALL_STATE(439)] = 14856, + [SMALL_STATE(440)] = 14897, + [SMALL_STATE(441)] = 14940, + [SMALL_STATE(442)] = 14985, + [SMALL_STATE(443)] = 15058, + [SMALL_STATE(444)] = 15131, + [SMALL_STATE(445)] = 15172, + [SMALL_STATE(446)] = 15213, + [SMALL_STATE(447)] = 15286, + [SMALL_STATE(448)] = 15361, + [SMALL_STATE(449)] = 15434, + [SMALL_STATE(450)] = 15509, + [SMALL_STATE(451)] = 15574, + [SMALL_STATE(452)] = 15641, + [SMALL_STATE(453)] = 15710, + [SMALL_STATE(454)] = 15755, + [SMALL_STATE(455)] = 15826, + [SMALL_STATE(456)] = 15881, + [SMALL_STATE(457)] = 15938, + [SMALL_STATE(458)] = 15999, + [SMALL_STATE(459)] = 16064, + [SMALL_STATE(460)] = 16137, + [SMALL_STATE(461)] = 16182, + [SMALL_STATE(462)] = 16223, + [SMALL_STATE(463)] = 16280, + [SMALL_STATE(464)] = 16353, + [SMALL_STATE(465)] = 16398, + [SMALL_STATE(466)] = 16443, + [SMALL_STATE(467)] = 16516, + [SMALL_STATE(468)] = 16595, + [SMALL_STATE(469)] = 16667, + [SMALL_STATE(470)] = 16733, + [SMALL_STATE(471)] = 16803, + [SMALL_STATE(472)] = 16875, + [SMALL_STATE(473)] = 16927, + [SMALL_STATE(474)] = 16997, + [SMALL_STATE(475)] = 17067, + [SMALL_STATE(476)] = 17121, + [SMALL_STATE(477)] = 17163, + [SMALL_STATE(478)] = 17211, + [SMALL_STATE(479)] = 17283, + [SMALL_STATE(480)] = 17353, + [SMALL_STATE(481)] = 17397, + [SMALL_STATE(482)] = 17467, + [SMALL_STATE(483)] = 17539, + [SMALL_STATE(484)] = 17587, + [SMALL_STATE(485)] = 17631, + [SMALL_STATE(486)] = 17701, + [SMALL_STATE(487)] = 17775, + [SMALL_STATE(488)] = 17845, + [SMALL_STATE(489)] = 17889, + [SMALL_STATE(490)] = 17963, + [SMALL_STATE(491)] = 18035, + [SMALL_STATE(492)] = 18109, + [SMALL_STATE(493)] = 18149, + [SMALL_STATE(494)] = 18189, + [SMALL_STATE(495)] = 18261, + [SMALL_STATE(496)] = 18305, + [SMALL_STATE(497)] = 18377, + [SMALL_STATE(498)] = 18417, + [SMALL_STATE(499)] = 18461, + [SMALL_STATE(500)] = 18501, + [SMALL_STATE(501)] = 18571, + [SMALL_STATE(502)] = 18643, + [SMALL_STATE(503)] = 18713, + [SMALL_STATE(504)] = 18757, + [SMALL_STATE(505)] = 18829, + [SMALL_STATE(506)] = 18891, + [SMALL_STATE(507)] = 18963, + [SMALL_STATE(508)] = 19027, + [SMALL_STATE(509)] = 19071, + [SMALL_STATE(510)] = 19141, + [SMALL_STATE(511)] = 19215, + [SMALL_STATE(512)] = 19255, + [SMALL_STATE(513)] = 19323, + [SMALL_STATE(514)] = 19375, + [SMALL_STATE(515)] = 19447, + [SMALL_STATE(516)] = 19487, + [SMALL_STATE(517)] = 19527, + [SMALL_STATE(518)] = 19601, + [SMALL_STATE(519)] = 19675, + [SMALL_STATE(520)] = 19715, + [SMALL_STATE(521)] = 19769, + [SMALL_STATE(522)] = 19839, + [SMALL_STATE(523)] = 19901, + [SMALL_STATE(524)] = 19965, + [SMALL_STATE(525)] = 20031, + [SMALL_STATE(526)] = 20099, + [SMALL_STATE(527)] = 20151, + [SMALL_STATE(528)] = 20221, + [SMALL_STATE(529)] = 20275, + [SMALL_STATE(530)] = 20349, + [SMALL_STATE(531)] = 20423, + [SMALL_STATE(532)] = 20481, + [SMALL_STATE(533)] = 20543, + [SMALL_STATE(534)] = 20613, + [SMALL_STATE(535)] = 20667, + [SMALL_STATE(536)] = 20707, + [SMALL_STATE(537)] = 20765, + [SMALL_STATE(538)] = 20835, + [SMALL_STATE(539)] = 20897, + [SMALL_STATE(540)] = 20971, + [SMALL_STATE(541)] = 21043, + [SMALL_STATE(542)] = 21091, + [SMALL_STATE(543)] = 21165, + [SMALL_STATE(544)] = 21239, + [SMALL_STATE(545)] = 21311, + [SMALL_STATE(546)] = 21385, + [SMALL_STATE(547)] = 21457, + [SMALL_STATE(548)] = 21499, + [SMALL_STATE(549)] = 21573, + [SMALL_STATE(550)] = 21647, + [SMALL_STATE(551)] = 21721, + [SMALL_STATE(552)] = 21760, + [SMALL_STATE(553)] = 21799, + [SMALL_STATE(554)] = 21838, + [SMALL_STATE(555)] = 21883, + [SMALL_STATE(556)] = 21922, + [SMALL_STATE(557)] = 21961, + [SMALL_STATE(558)] = 22000, + [SMALL_STATE(559)] = 22069, + [SMALL_STATE(560)] = 22112, + [SMALL_STATE(561)] = 22151, + [SMALL_STATE(562)] = 22220, + [SMALL_STATE(563)] = 22259, + [SMALL_STATE(564)] = 22298, + [SMALL_STATE(565)] = 22337, + [SMALL_STATE(566)] = 22376, + [SMALL_STATE(567)] = 22419, + [SMALL_STATE(568)] = 22458, + [SMALL_STATE(569)] = 22497, + [SMALL_STATE(570)] = 22536, + [SMALL_STATE(571)] = 22575, + [SMALL_STATE(572)] = 22614, + [SMALL_STATE(573)] = 22683, + [SMALL_STATE(574)] = 22722, + [SMALL_STATE(575)] = 22761, + [SMALL_STATE(576)] = 22800, + [SMALL_STATE(577)] = 22839, + [SMALL_STATE(578)] = 22882, + [SMALL_STATE(579)] = 22921, + [SMALL_STATE(580)] = 22960, + [SMALL_STATE(581)] = 22999, + [SMALL_STATE(582)] = 23038, + [SMALL_STATE(583)] = 23077, + [SMALL_STATE(584)] = 23116, + [SMALL_STATE(585)] = 23155, + [SMALL_STATE(586)] = 23194, + [SMALL_STATE(587)] = 23233, + [SMALL_STATE(588)] = 23272, + [SMALL_STATE(589)] = 23311, + [SMALL_STATE(590)] = 23354, + [SMALL_STATE(591)] = 23393, + [SMALL_STATE(592)] = 23462, + [SMALL_STATE(593)] = 23501, + [SMALL_STATE(594)] = 23540, + [SMALL_STATE(595)] = 23609, + [SMALL_STATE(596)] = 23648, + [SMALL_STATE(597)] = 23717, + [SMALL_STATE(598)] = 23756, + [SMALL_STATE(599)] = 23795, + [SMALL_STATE(600)] = 23834, + [SMALL_STATE(601)] = 23873, + [SMALL_STATE(602)] = 23912, + [SMALL_STATE(603)] = 23951, + [SMALL_STATE(604)] = 23990, + [SMALL_STATE(605)] = 24029, + [SMALL_STATE(606)] = 24068, + [SMALL_STATE(607)] = 24107, + [SMALL_STATE(608)] = 24146, + [SMALL_STATE(609)] = 24185, + [SMALL_STATE(610)] = 24254, + [SMALL_STATE(611)] = 24293, + [SMALL_STATE(612)] = 24332, + [SMALL_STATE(613)] = 24375, + [SMALL_STATE(614)] = 24444, + [SMALL_STATE(615)] = 24483, + [SMALL_STATE(616)] = 24522, + [SMALL_STATE(617)] = 24561, + [SMALL_STATE(618)] = 24600, + [SMALL_STATE(619)] = 24639, + [SMALL_STATE(620)] = 24678, + [SMALL_STATE(621)] = 24717, + [SMALL_STATE(622)] = 24756, + [SMALL_STATE(623)] = 24795, + [SMALL_STATE(624)] = 24834, + [SMALL_STATE(625)] = 24873, + [SMALL_STATE(626)] = 24912, + [SMALL_STATE(627)] = 24951, + [SMALL_STATE(628)] = 24990, + [SMALL_STATE(629)] = 25029, + [SMALL_STATE(630)] = 25068, + [SMALL_STATE(631)] = 25107, + [SMALL_STATE(632)] = 25146, + [SMALL_STATE(633)] = 25185, + [SMALL_STATE(634)] = 25224, + [SMALL_STATE(635)] = 25263, + [SMALL_STATE(636)] = 25302, + [SMALL_STATE(637)] = 25341, + [SMALL_STATE(638)] = 25380, + [SMALL_STATE(639)] = 25419, + [SMALL_STATE(640)] = 25458, + [SMALL_STATE(641)] = 25497, + [SMALL_STATE(642)] = 25536, + [SMALL_STATE(643)] = 25575, + [SMALL_STATE(644)] = 25614, + [SMALL_STATE(645)] = 25653, + [SMALL_STATE(646)] = 25691, + [SMALL_STATE(647)] = 25729, + [SMALL_STATE(648)] = 25769, + [SMALL_STATE(649)] = 25837, + [SMALL_STATE(650)] = 25875, + [SMALL_STATE(651)] = 25913, + [SMALL_STATE(652)] = 25951, + [SMALL_STATE(653)] = 25989, + [SMALL_STATE(654)] = 26027, + [SMALL_STATE(655)] = 26065, + [SMALL_STATE(656)] = 26103, + [SMALL_STATE(657)] = 26141, + [SMALL_STATE(658)] = 26179, + [SMALL_STATE(659)] = 26217, + [SMALL_STATE(660)] = 26255, + [SMALL_STATE(661)] = 26293, + [SMALL_STATE(662)] = 26331, + [SMALL_STATE(663)] = 26369, + [SMALL_STATE(664)] = 26407, + [SMALL_STATE(665)] = 26445, + [SMALL_STATE(666)] = 26483, + [SMALL_STATE(667)] = 26521, + [SMALL_STATE(668)] = 26559, + [SMALL_STATE(669)] = 26597, + [SMALL_STATE(670)] = 26635, + [SMALL_STATE(671)] = 26703, + [SMALL_STATE(672)] = 26741, + [SMALL_STATE(673)] = 26779, + [SMALL_STATE(674)] = 26817, + [SMALL_STATE(675)] = 26855, + [SMALL_STATE(676)] = 26893, + [SMALL_STATE(677)] = 26931, + [SMALL_STATE(678)] = 26969, + [SMALL_STATE(679)] = 27007, + [SMALL_STATE(680)] = 27045, + [SMALL_STATE(681)] = 27083, + [SMALL_STATE(682)] = 27121, + [SMALL_STATE(683)] = 27159, + [SMALL_STATE(684)] = 27227, + [SMALL_STATE(685)] = 27265, + [SMALL_STATE(686)] = 27303, + [SMALL_STATE(687)] = 27341, + [SMALL_STATE(688)] = 27379, + [SMALL_STATE(689)] = 27447, + [SMALL_STATE(690)] = 27515, + [SMALL_STATE(691)] = 27583, + [SMALL_STATE(692)] = 27621, + [SMALL_STATE(693)] = 27659, + [SMALL_STATE(694)] = 27697, + [SMALL_STATE(695)] = 27765, + [SMALL_STATE(696)] = 27803, + [SMALL_STATE(697)] = 27841, + [SMALL_STATE(698)] = 27879, + [SMALL_STATE(699)] = 27917, + [SMALL_STATE(700)] = 27955, + [SMALL_STATE(701)] = 27993, + [SMALL_STATE(702)] = 28031, + [SMALL_STATE(703)] = 28069, + [SMALL_STATE(704)] = 28107, + [SMALL_STATE(705)] = 28145, + [SMALL_STATE(706)] = 28183, + [SMALL_STATE(707)] = 28221, + [SMALL_STATE(708)] = 28259, + [SMALL_STATE(709)] = 28297, + [SMALL_STATE(710)] = 28335, + [SMALL_STATE(711)] = 28373, + [SMALL_STATE(712)] = 28411, + [SMALL_STATE(713)] = 28449, + [SMALL_STATE(714)] = 28487, + [SMALL_STATE(715)] = 28525, + [SMALL_STATE(716)] = 28563, + [SMALL_STATE(717)] = 28601, + [SMALL_STATE(718)] = 28639, + [SMALL_STATE(719)] = 28677, + [SMALL_STATE(720)] = 28715, + [SMALL_STATE(721)] = 28753, + [SMALL_STATE(722)] = 28791, + [SMALL_STATE(723)] = 28829, + [SMALL_STATE(724)] = 28867, + [SMALL_STATE(725)] = 28905, + [SMALL_STATE(726)] = 28943, + [SMALL_STATE(727)] = 28981, + [SMALL_STATE(728)] = 29019, + [SMALL_STATE(729)] = 29057, + [SMALL_STATE(730)] = 29125, + [SMALL_STATE(731)] = 29163, + [SMALL_STATE(732)] = 29201, + [SMALL_STATE(733)] = 29239, + [SMALL_STATE(734)] = 29277, + [SMALL_STATE(735)] = 29315, + [SMALL_STATE(736)] = 29353, + [SMALL_STATE(737)] = 29391, + [SMALL_STATE(738)] = 29429, + [SMALL_STATE(739)] = 29467, + [SMALL_STATE(740)] = 29505, + [SMALL_STATE(741)] = 29543, + [SMALL_STATE(742)] = 29581, + [SMALL_STATE(743)] = 29619, + [SMALL_STATE(744)] = 29657, + [SMALL_STATE(745)] = 29695, + [SMALL_STATE(746)] = 29733, + [SMALL_STATE(747)] = 29771, + [SMALL_STATE(748)] = 29809, + [SMALL_STATE(749)] = 29847, + [SMALL_STATE(750)] = 29885, + [SMALL_STATE(751)] = 29953, + [SMALL_STATE(752)] = 29991, + [SMALL_STATE(753)] = 30029, + [SMALL_STATE(754)] = 30067, + [SMALL_STATE(755)] = 30105, + [SMALL_STATE(756)] = 30173, + [SMALL_STATE(757)] = 30241, + [SMALL_STATE(758)] = 30279, + [SMALL_STATE(759)] = 30317, + [SMALL_STATE(760)] = 30355, + [SMALL_STATE(761)] = 30393, + [SMALL_STATE(762)] = 30431, + [SMALL_STATE(763)] = 30469, + [SMALL_STATE(764)] = 30507, + [SMALL_STATE(765)] = 30545, + [SMALL_STATE(766)] = 30583, + [SMALL_STATE(767)] = 30621, + [SMALL_STATE(768)] = 30659, + [SMALL_STATE(769)] = 30697, + [SMALL_STATE(770)] = 30735, + [SMALL_STATE(771)] = 30773, + [SMALL_STATE(772)] = 30811, + [SMALL_STATE(773)] = 30849, + [SMALL_STATE(774)] = 30888, + [SMALL_STATE(775)] = 30952, + [SMALL_STATE(776)] = 31018, + [SMALL_STATE(777)] = 31084, + [SMALL_STATE(778)] = 31144, + [SMALL_STATE(779)] = 31202, + [SMALL_STATE(780)] = 31262, + [SMALL_STATE(781)] = 31289, + [SMALL_STATE(782)] = 31314, + [SMALL_STATE(783)] = 31350, + [SMALL_STATE(784)] = 31384, + [SMALL_STATE(785)] = 31409, + [SMALL_STATE(786)] = 31434, + [SMALL_STATE(787)] = 31467, + [SMALL_STATE(788)] = 31492, + [SMALL_STATE(789)] = 31517, + [SMALL_STATE(790)] = 31542, + [SMALL_STATE(791)] = 31567, + [SMALL_STATE(792)] = 31598, + [SMALL_STATE(793)] = 31623, + [SMALL_STATE(794)] = 31648, + [SMALL_STATE(795)] = 31673, + [SMALL_STATE(796)] = 31698, + [SMALL_STATE(797)] = 31723, + [SMALL_STATE(798)] = 31748, + [SMALL_STATE(799)] = 31773, + [SMALL_STATE(800)] = 31798, + [SMALL_STATE(801)] = 31823, + [SMALL_STATE(802)] = 31851, + [SMALL_STATE(803)] = 31875, + [SMALL_STATE(804)] = 31903, + [SMALL_STATE(805)] = 31935, + [SMALL_STATE(806)] = 31960, + [SMALL_STATE(807)] = 31985, + [SMALL_STATE(808)] = 32020, + [SMALL_STATE(809)] = 32055, + [SMALL_STATE(810)] = 32082, + [SMALL_STATE(811)] = 32102, + [SMALL_STATE(812)] = 32126, + [SMALL_STATE(813)] = 32148, + [SMALL_STATE(814)] = 32170, + [SMALL_STATE(815)] = 32190, + [SMALL_STATE(816)] = 32210, + [SMALL_STATE(817)] = 32236, + [SMALL_STATE(818)] = 32260, + [SMALL_STATE(819)] = 32284, + [SMALL_STATE(820)] = 32304, + [SMALL_STATE(821)] = 32324, + [SMALL_STATE(822)] = 32350, + [SMALL_STATE(823)] = 32371, + [SMALL_STATE(824)] = 32394, + [SMALL_STATE(825)] = 32423, + [SMALL_STATE(826)] = 32444, + [SMALL_STATE(827)] = 32469, + [SMALL_STATE(828)] = 32492, + [SMALL_STATE(829)] = 32515, + [SMALL_STATE(830)] = 32536, + [SMALL_STATE(831)] = 32561, + [SMALL_STATE(832)] = 32580, + [SMALL_STATE(833)] = 32605, + [SMALL_STATE(834)] = 32630, + [SMALL_STATE(835)] = 32653, + [SMALL_STATE(836)] = 32675, + [SMALL_STATE(837)] = 32701, + [SMALL_STATE(838)] = 32721, + [SMALL_STATE(839)] = 32747, + [SMALL_STATE(840)] = 32769, + [SMALL_STATE(841)] = 32793, + [SMALL_STATE(842)] = 32819, + [SMALL_STATE(843)] = 32845, + [SMALL_STATE(844)] = 32871, + [SMALL_STATE(845)] = 32891, + [SMALL_STATE(846)] = 32919, + [SMALL_STATE(847)] = 32945, + [SMALL_STATE(848)] = 32971, + [SMALL_STATE(849)] = 32991, + [SMALL_STATE(850)] = 33009, + [SMALL_STATE(851)] = 33029, + [SMALL_STATE(852)] = 33055, + [SMALL_STATE(853)] = 33077, + [SMALL_STATE(854)] = 33095, + [SMALL_STATE(855)] = 33121, + [SMALL_STATE(856)] = 33141, + [SMALL_STATE(857)] = 33167, + [SMALL_STATE(858)] = 33189, + [SMALL_STATE(859)] = 33215, + [SMALL_STATE(860)] = 33235, + [SMALL_STATE(861)] = 33261, + [SMALL_STATE(862)] = 33281, + [SMALL_STATE(863)] = 33306, + [SMALL_STATE(864)] = 33331, + [SMALL_STATE(865)] = 33356, + [SMALL_STATE(866)] = 33373, + [SMALL_STATE(867)] = 33390, + [SMALL_STATE(868)] = 33415, + [SMALL_STATE(869)] = 33440, + [SMALL_STATE(870)] = 33465, + [SMALL_STATE(871)] = 33490, + [SMALL_STATE(872)] = 33507, + [SMALL_STATE(873)] = 33532, + [SMALL_STATE(874)] = 33557, + [SMALL_STATE(875)] = 33582, + [SMALL_STATE(876)] = 33607, + [SMALL_STATE(877)] = 33632, + [SMALL_STATE(878)] = 33657, + [SMALL_STATE(879)] = 33678, + [SMALL_STATE(880)] = 33703, + [SMALL_STATE(881)] = 33728, + [SMALL_STATE(882)] = 33753, + [SMALL_STATE(883)] = 33778, + [SMALL_STATE(884)] = 33795, + [SMALL_STATE(885)] = 33820, + [SMALL_STATE(886)] = 33839, + [SMALL_STATE(887)] = 33864, + [SMALL_STATE(888)] = 33889, + [SMALL_STATE(889)] = 33912, + [SMALL_STATE(890)] = 33937, + [SMALL_STATE(891)] = 33954, + [SMALL_STATE(892)] = 33971, + [SMALL_STATE(893)] = 33996, + [SMALL_STATE(894)] = 34021, + [SMALL_STATE(895)] = 34046, + [SMALL_STATE(896)] = 34067, + [SMALL_STATE(897)] = 34086, + [SMALL_STATE(898)] = 34105, + [SMALL_STATE(899)] = 34130, + [SMALL_STATE(900)] = 34147, + [SMALL_STATE(901)] = 34164, + [SMALL_STATE(902)] = 34189, + [SMALL_STATE(903)] = 34206, + [SMALL_STATE(904)] = 34223, + [SMALL_STATE(905)] = 34242, + [SMALL_STATE(906)] = 34259, + [SMALL_STATE(907)] = 34284, + [SMALL_STATE(908)] = 34301, + [SMALL_STATE(909)] = 34318, + [SMALL_STATE(910)] = 34335, + [SMALL_STATE(911)] = 34352, + [SMALL_STATE(912)] = 34377, + [SMALL_STATE(913)] = 34402, + [SMALL_STATE(914)] = 34424, + [SMALL_STATE(915)] = 34444, + [SMALL_STATE(916)] = 34460, + [SMALL_STATE(917)] = 34482, + [SMALL_STATE(918)] = 34498, + [SMALL_STATE(919)] = 34518, + [SMALL_STATE(920)] = 34538, + [SMALL_STATE(921)] = 34558, + [SMALL_STATE(922)] = 34580, + [SMALL_STATE(923)] = 34602, + [SMALL_STATE(924)] = 34624, + [SMALL_STATE(925)] = 34640, + [SMALL_STATE(926)] = 34662, + [SMALL_STATE(927)] = 34684, + [SMALL_STATE(928)] = 34706, + [SMALL_STATE(929)] = 34728, + [SMALL_STATE(930)] = 34746, + [SMALL_STATE(931)] = 34766, + [SMALL_STATE(932)] = 34782, + [SMALL_STATE(933)] = 34804, + [SMALL_STATE(934)] = 34826, + [SMALL_STATE(935)] = 34848, + [SMALL_STATE(936)] = 34864, + [SMALL_STATE(937)] = 34886, + [SMALL_STATE(938)] = 34902, + [SMALL_STATE(939)] = 34920, + [SMALL_STATE(940)] = 34938, + [SMALL_STATE(941)] = 34958, + [SMALL_STATE(942)] = 34974, + [SMALL_STATE(943)] = 34996, + [SMALL_STATE(944)] = 35018, + [SMALL_STATE(945)] = 35040, + [SMALL_STATE(946)] = 35062, + [SMALL_STATE(947)] = 35082, + [SMALL_STATE(948)] = 35100, + [SMALL_STATE(949)] = 35122, + [SMALL_STATE(950)] = 35144, + [SMALL_STATE(951)] = 35166, + [SMALL_STATE(952)] = 35188, + [SMALL_STATE(953)] = 35204, + [SMALL_STATE(954)] = 35222, + [SMALL_STATE(955)] = 35244, + [SMALL_STATE(956)] = 35266, + [SMALL_STATE(957)] = 35288, + [SMALL_STATE(958)] = 35304, + [SMALL_STATE(959)] = 35326, + [SMALL_STATE(960)] = 35348, + [SMALL_STATE(961)] = 35370, + [SMALL_STATE(962)] = 35392, + [SMALL_STATE(963)] = 35412, + [SMALL_STATE(964)] = 35434, + [SMALL_STATE(965)] = 35456, + [SMALL_STATE(966)] = 35478, + [SMALL_STATE(967)] = 35500, + [SMALL_STATE(968)] = 35522, + [SMALL_STATE(969)] = 35538, + [SMALL_STATE(970)] = 35558, + [SMALL_STATE(971)] = 35580, + [SMALL_STATE(972)] = 35602, + [SMALL_STATE(973)] = 35624, + [SMALL_STATE(974)] = 35646, + [SMALL_STATE(975)] = 35668, + [SMALL_STATE(976)] = 35690, + [SMALL_STATE(977)] = 35712, + [SMALL_STATE(978)] = 35732, + [SMALL_STATE(979)] = 35752, + [SMALL_STATE(980)] = 35774, + [SMALL_STATE(981)] = 35794, + [SMALL_STATE(982)] = 35816, + [SMALL_STATE(983)] = 35838, + [SMALL_STATE(984)] = 35860, + [SMALL_STATE(985)] = 35882, + [SMALL_STATE(986)] = 35904, + [SMALL_STATE(987)] = 35924, + [SMALL_STATE(988)] = 35946, + [SMALL_STATE(989)] = 35968, + [SMALL_STATE(990)] = 35990, + [SMALL_STATE(991)] = 36010, + [SMALL_STATE(992)] = 36030, + [SMALL_STATE(993)] = 36052, + [SMALL_STATE(994)] = 36074, + [SMALL_STATE(995)] = 36096, + [SMALL_STATE(996)] = 36118, + [SMALL_STATE(997)] = 36140, + [SMALL_STATE(998)] = 36162, + [SMALL_STATE(999)] = 36184, + [SMALL_STATE(1000)] = 36206, + [SMALL_STATE(1001)] = 36228, + [SMALL_STATE(1002)] = 36248, + [SMALL_STATE(1003)] = 36270, + [SMALL_STATE(1004)] = 36292, + [SMALL_STATE(1005)] = 36314, + [SMALL_STATE(1006)] = 36332, + [SMALL_STATE(1007)] = 36354, + [SMALL_STATE(1008)] = 36376, + [SMALL_STATE(1009)] = 36398, + [SMALL_STATE(1010)] = 36420, + [SMALL_STATE(1011)] = 36439, + [SMALL_STATE(1012)] = 36458, + [SMALL_STATE(1013)] = 36475, + [SMALL_STATE(1014)] = 36492, + [SMALL_STATE(1015)] = 36511, + [SMALL_STATE(1016)] = 36530, + [SMALL_STATE(1017)] = 36547, + [SMALL_STATE(1018)] = 36566, + [SMALL_STATE(1019)] = 36585, + [SMALL_STATE(1020)] = 36604, + [SMALL_STATE(1021)] = 36623, + [SMALL_STATE(1022)] = 36642, + [SMALL_STATE(1023)] = 36661, + [SMALL_STATE(1024)] = 36680, + [SMALL_STATE(1025)] = 36697, + [SMALL_STATE(1026)] = 36716, + [SMALL_STATE(1027)] = 36735, + [SMALL_STATE(1028)] = 36754, + [SMALL_STATE(1029)] = 36773, + [SMALL_STATE(1030)] = 36790, + [SMALL_STATE(1031)] = 36807, + [SMALL_STATE(1032)] = 36826, + [SMALL_STATE(1033)] = 36845, + [SMALL_STATE(1034)] = 36864, + [SMALL_STATE(1035)] = 36883, + [SMALL_STATE(1036)] = 36902, + [SMALL_STATE(1037)] = 36919, + [SMALL_STATE(1038)] = 36938, + [SMALL_STATE(1039)] = 36957, + [SMALL_STATE(1040)] = 36974, + [SMALL_STATE(1041)] = 36991, + [SMALL_STATE(1042)] = 37010, + [SMALL_STATE(1043)] = 37029, + [SMALL_STATE(1044)] = 37048, + [SMALL_STATE(1045)] = 37065, + [SMALL_STATE(1046)] = 37084, + [SMALL_STATE(1047)] = 37103, + [SMALL_STATE(1048)] = 37122, + [SMALL_STATE(1049)] = 37139, + [SMALL_STATE(1050)] = 37158, + [SMALL_STATE(1051)] = 37177, + [SMALL_STATE(1052)] = 37196, + [SMALL_STATE(1053)] = 37213, + [SMALL_STATE(1054)] = 37232, + [SMALL_STATE(1055)] = 37251, + [SMALL_STATE(1056)] = 37270, + [SMALL_STATE(1057)] = 37289, + [SMALL_STATE(1058)] = 37308, + [SMALL_STATE(1059)] = 37327, + [SMALL_STATE(1060)] = 37346, + [SMALL_STATE(1061)] = 37365, + [SMALL_STATE(1062)] = 37384, + [SMALL_STATE(1063)] = 37403, + [SMALL_STATE(1064)] = 37422, + [SMALL_STATE(1065)] = 37441, + [SMALL_STATE(1066)] = 37460, + [SMALL_STATE(1067)] = 37479, + [SMALL_STATE(1068)] = 37498, + [SMALL_STATE(1069)] = 37517, + [SMALL_STATE(1070)] = 37536, + [SMALL_STATE(1071)] = 37555, + [SMALL_STATE(1072)] = 37574, + [SMALL_STATE(1073)] = 37593, + [SMALL_STATE(1074)] = 37612, + [SMALL_STATE(1075)] = 37629, + [SMALL_STATE(1076)] = 37648, + [SMALL_STATE(1077)] = 37667, + [SMALL_STATE(1078)] = 37686, + [SMALL_STATE(1079)] = 37705, + [SMALL_STATE(1080)] = 37724, + [SMALL_STATE(1081)] = 37743, + [SMALL_STATE(1082)] = 37762, + [SMALL_STATE(1083)] = 37781, + [SMALL_STATE(1084)] = 37798, + [SMALL_STATE(1085)] = 37817, + [SMALL_STATE(1086)] = 37836, + [SMALL_STATE(1087)] = 37855, + [SMALL_STATE(1088)] = 37874, + [SMALL_STATE(1089)] = 37893, + [SMALL_STATE(1090)] = 37912, + [SMALL_STATE(1091)] = 37931, + [SMALL_STATE(1092)] = 37948, + [SMALL_STATE(1093)] = 37967, + [SMALL_STATE(1094)] = 37986, + [SMALL_STATE(1095)] = 38005, + [SMALL_STATE(1096)] = 38024, + [SMALL_STATE(1097)] = 38041, + [SMALL_STATE(1098)] = 38060, + [SMALL_STATE(1099)] = 38079, + [SMALL_STATE(1100)] = 38098, + [SMALL_STATE(1101)] = 38117, + [SMALL_STATE(1102)] = 38134, + [SMALL_STATE(1103)] = 38153, + [SMALL_STATE(1104)] = 38172, + [SMALL_STATE(1105)] = 38189, + [SMALL_STATE(1106)] = 38208, + [SMALL_STATE(1107)] = 38227, + [SMALL_STATE(1108)] = 38246, + [SMALL_STATE(1109)] = 38265, + [SMALL_STATE(1110)] = 38284, + [SMALL_STATE(1111)] = 38301, + [SMALL_STATE(1112)] = 38320, + [SMALL_STATE(1113)] = 38335, + [SMALL_STATE(1114)] = 38354, + [SMALL_STATE(1115)] = 38373, + [SMALL_STATE(1116)] = 38392, + [SMALL_STATE(1117)] = 38411, + [SMALL_STATE(1118)] = 38430, + [SMALL_STATE(1119)] = 38449, + [SMALL_STATE(1120)] = 38468, + [SMALL_STATE(1121)] = 38487, + [SMALL_STATE(1122)] = 38504, + [SMALL_STATE(1123)] = 38523, + [SMALL_STATE(1124)] = 38542, + [SMALL_STATE(1125)] = 38561, + [SMALL_STATE(1126)] = 38580, + [SMALL_STATE(1127)] = 38599, + [SMALL_STATE(1128)] = 38618, + [SMALL_STATE(1129)] = 38637, + [SMALL_STATE(1130)] = 38656, + [SMALL_STATE(1131)] = 38675, + [SMALL_STATE(1132)] = 38694, + [SMALL_STATE(1133)] = 38713, + [SMALL_STATE(1134)] = 38732, + [SMALL_STATE(1135)] = 38751, + [SMALL_STATE(1136)] = 38770, + [SMALL_STATE(1137)] = 38789, + [SMALL_STATE(1138)] = 38808, + [SMALL_STATE(1139)] = 38827, + [SMALL_STATE(1140)] = 38844, + [SMALL_STATE(1141)] = 38863, + [SMALL_STATE(1142)] = 38882, + [SMALL_STATE(1143)] = 38901, + [SMALL_STATE(1144)] = 38920, + [SMALL_STATE(1145)] = 38937, + [SMALL_STATE(1146)] = 38956, + [SMALL_STATE(1147)] = 38975, + [SMALL_STATE(1148)] = 38994, + [SMALL_STATE(1149)] = 39013, + [SMALL_STATE(1150)] = 39032, + [SMALL_STATE(1151)] = 39051, + [SMALL_STATE(1152)] = 39070, + [SMALL_STATE(1153)] = 39089, + [SMALL_STATE(1154)] = 39108, + [SMALL_STATE(1155)] = 39127, + [SMALL_STATE(1156)] = 39146, + [SMALL_STATE(1157)] = 39165, + [SMALL_STATE(1158)] = 39179, + [SMALL_STATE(1159)] = 39195, + [SMALL_STATE(1160)] = 39211, + [SMALL_STATE(1161)] = 39227, + [SMALL_STATE(1162)] = 39241, + [SMALL_STATE(1163)] = 39257, + [SMALL_STATE(1164)] = 39273, + [SMALL_STATE(1165)] = 39289, + [SMALL_STATE(1166)] = 39305, + [SMALL_STATE(1167)] = 39321, + [SMALL_STATE(1168)] = 39337, + [SMALL_STATE(1169)] = 39353, + [SMALL_STATE(1170)] = 39369, + [SMALL_STATE(1171)] = 39385, + [SMALL_STATE(1172)] = 39401, + [SMALL_STATE(1173)] = 39417, + [SMALL_STATE(1174)] = 39433, + [SMALL_STATE(1175)] = 39449, + [SMALL_STATE(1176)] = 39465, + [SMALL_STATE(1177)] = 39481, + [SMALL_STATE(1178)] = 39497, + [SMALL_STATE(1179)] = 39511, + [SMALL_STATE(1180)] = 39527, + [SMALL_STATE(1181)] = 39543, + [SMALL_STATE(1182)] = 39559, + [SMALL_STATE(1183)] = 39573, + [SMALL_STATE(1184)] = 39589, + [SMALL_STATE(1185)] = 39603, + [SMALL_STATE(1186)] = 39617, + [SMALL_STATE(1187)] = 39633, + [SMALL_STATE(1188)] = 39649, + [SMALL_STATE(1189)] = 39663, + [SMALL_STATE(1190)] = 39679, + [SMALL_STATE(1191)] = 39695, + [SMALL_STATE(1192)] = 39709, + [SMALL_STATE(1193)] = 39725, + [SMALL_STATE(1194)] = 39739, + [SMALL_STATE(1195)] = 39755, + [SMALL_STATE(1196)] = 39769, + [SMALL_STATE(1197)] = 39783, + [SMALL_STATE(1198)] = 39797, + [SMALL_STATE(1199)] = 39811, + [SMALL_STATE(1200)] = 39827, + [SMALL_STATE(1201)] = 39843, + [SMALL_STATE(1202)] = 39859, + [SMALL_STATE(1203)] = 39875, + [SMALL_STATE(1204)] = 39891, + [SMALL_STATE(1205)] = 39905, + [SMALL_STATE(1206)] = 39919, + [SMALL_STATE(1207)] = 39935, + [SMALL_STATE(1208)] = 39949, + [SMALL_STATE(1209)] = 39965, + [SMALL_STATE(1210)] = 39981, + [SMALL_STATE(1211)] = 39997, + [SMALL_STATE(1212)] = 40013, + [SMALL_STATE(1213)] = 40029, + [SMALL_STATE(1214)] = 40045, + [SMALL_STATE(1215)] = 40061, + [SMALL_STATE(1216)] = 40077, + [SMALL_STATE(1217)] = 40091, + [SMALL_STATE(1218)] = 40107, + [SMALL_STATE(1219)] = 40121, + [SMALL_STATE(1220)] = 40137, + [SMALL_STATE(1221)] = 40153, + [SMALL_STATE(1222)] = 40167, + [SMALL_STATE(1223)] = 40181, + [SMALL_STATE(1224)] = 40195, + [SMALL_STATE(1225)] = 40209, + [SMALL_STATE(1226)] = 40225, + [SMALL_STATE(1227)] = 40241, + [SMALL_STATE(1228)] = 40257, + [SMALL_STATE(1229)] = 40273, + [SMALL_STATE(1230)] = 40287, + [SMALL_STATE(1231)] = 40301, + [SMALL_STATE(1232)] = 40315, + [SMALL_STATE(1233)] = 40329, + [SMALL_STATE(1234)] = 40345, + [SMALL_STATE(1235)] = 40359, + [SMALL_STATE(1236)] = 40375, + [SMALL_STATE(1237)] = 40389, + [SMALL_STATE(1238)] = 40403, + [SMALL_STATE(1239)] = 40419, + [SMALL_STATE(1240)] = 40435, + [SMALL_STATE(1241)] = 40451, + [SMALL_STATE(1242)] = 40467, + [SMALL_STATE(1243)] = 40481, + [SMALL_STATE(1244)] = 40497, + [SMALL_STATE(1245)] = 40511, + [SMALL_STATE(1246)] = 40525, + [SMALL_STATE(1247)] = 40538, + [SMALL_STATE(1248)] = 40551, + [SMALL_STATE(1249)] = 40564, + [SMALL_STATE(1250)] = 40577, + [SMALL_STATE(1251)] = 40590, + [SMALL_STATE(1252)] = 40603, + [SMALL_STATE(1253)] = 40616, + [SMALL_STATE(1254)] = 40629, + [SMALL_STATE(1255)] = 40642, + [SMALL_STATE(1256)] = 40655, + [SMALL_STATE(1257)] = 40668, + [SMALL_STATE(1258)] = 40681, + [SMALL_STATE(1259)] = 40694, + [SMALL_STATE(1260)] = 40707, + [SMALL_STATE(1261)] = 40720, + [SMALL_STATE(1262)] = 40733, + [SMALL_STATE(1263)] = 40746, + [SMALL_STATE(1264)] = 40759, + [SMALL_STATE(1265)] = 40772, + [SMALL_STATE(1266)] = 40785, + [SMALL_STATE(1267)] = 40798, + [SMALL_STATE(1268)] = 40811, + [SMALL_STATE(1269)] = 40824, + [SMALL_STATE(1270)] = 40837, + [SMALL_STATE(1271)] = 40850, + [SMALL_STATE(1272)] = 40863, + [SMALL_STATE(1273)] = 40876, + [SMALL_STATE(1274)] = 40889, + [SMALL_STATE(1275)] = 40902, + [SMALL_STATE(1276)] = 40915, + [SMALL_STATE(1277)] = 40928, + [SMALL_STATE(1278)] = 40941, + [SMALL_STATE(1279)] = 40954, + [SMALL_STATE(1280)] = 40967, + [SMALL_STATE(1281)] = 40980, + [SMALL_STATE(1282)] = 40993, + [SMALL_STATE(1283)] = 41006, + [SMALL_STATE(1284)] = 41019, + [SMALL_STATE(1285)] = 41032, + [SMALL_STATE(1286)] = 41045, + [SMALL_STATE(1287)] = 41058, + [SMALL_STATE(1288)] = 41071, + [SMALL_STATE(1289)] = 41084, + [SMALL_STATE(1290)] = 41097, + [SMALL_STATE(1291)] = 41110, + [SMALL_STATE(1292)] = 41123, + [SMALL_STATE(1293)] = 41136, + [SMALL_STATE(1294)] = 41149, + [SMALL_STATE(1295)] = 41162, + [SMALL_STATE(1296)] = 41175, + [SMALL_STATE(1297)] = 41188, + [SMALL_STATE(1298)] = 41201, + [SMALL_STATE(1299)] = 41214, + [SMALL_STATE(1300)] = 41227, + [SMALL_STATE(1301)] = 41240, + [SMALL_STATE(1302)] = 41253, + [SMALL_STATE(1303)] = 41266, + [SMALL_STATE(1304)] = 41279, + [SMALL_STATE(1305)] = 41292, + [SMALL_STATE(1306)] = 41305, + [SMALL_STATE(1307)] = 41318, + [SMALL_STATE(1308)] = 41331, + [SMALL_STATE(1309)] = 41344, + [SMALL_STATE(1310)] = 41357, + [SMALL_STATE(1311)] = 41370, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -57210,8 +57254,8 @@ static const TSParseActionEntry ts_parse_actions[] = { [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), @@ -58019,7 +58063,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_modifiers_repeat1, 1, 0, 0), [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_modifier, 2, 0, 0), [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), @@ -58110,7 +58154,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [2072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_definition_repeat2, 2, 0, 69), SHIFT_REPEAT(1235), [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_definition_repeat2, 2, 0, 69), [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_definition, 2, 0, 21), [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), @@ -58236,7 +58280,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_type_list_repeat1, 2, 0, 0), - [2337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_type_list_repeat1, 2, 0, 0), SHIFT_REPEAT(323), + [2337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_type_list_repeat1, 2, 0, 0), SHIFT_REPEAT(322), [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), [2342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(974), [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), @@ -58376,7 +58420,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_identifier, 3, 0, 0), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lift_qualification, 5, 0, 118), [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), @@ -58414,7 +58458,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_literal_repeat1, 2, 0, 18), [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lift_qualifications, 5, 0, 97), [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), @@ -58425,7 +58469,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_definition_repeat1, 2, 0, 96), [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lift_qualifications, 4, 0, 71), @@ -58495,11 +58539,11 @@ static const TSParseActionEntry ts_parse_actions[] = { [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_type_list, 4, 0, 0), [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_type_list, 2, 0, 0), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_doc, 2, 0, 6), };